body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #000; color: #fff; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: #fff; text-decoration: none; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { color: #000; margin-top: 30px; }
        h2 { color: #222; margin-top: 25px; border-bottom: 2px solid #eee; padding-bottom: 5px; }
        h3 { color: #444; margin-top: 20px; }
        .btn { display: inline-block; background-color: #007bff; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        footer { background-color: #000; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
        .game-types, .tags { margin: 20px 0; }
        .game-types a, .tags a { color: #007bff; text-decoration: none; margin-right: 10px; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .container { padding: 10px; }
        }
