* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --dark: #1A535C;
            --light: #F7FFF7;
            --text: #333333;
        }
        body {
            background: linear-gradient(135deg, #f9f7fe 0%, #e6f3ff 100%);
            color: var(--text);
            line-height: 1.6;
        }
        header {
            background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--accent), #FF9E6D);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
        }
        .logo span {
            font-style: italic;
            color: white;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .nav-mobile-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .nav-mobile.show {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 20px;
        }
        .hero {
            text-align: center;
            padding: 3rem 0;
            background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23FF6B6B" opacity="0.1"/>');
            border-radius: 15px;
            margin-bottom: 3rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            background: linear-gradient(45deg, var(--primary), var(--dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #555;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 32px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--primary), #FF8E53);
            color: white;
        }
        .btn-login {
            background: linear-gradient(45deg, var(--secondary), #2BB3A8);
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .section {
            margin-bottom: 4rem;
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.8rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        .content-block {
            margin-bottom: 2.5rem;
        }
        .content-block h3 {
            font-size: 1.7rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .content-block p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 214, 102, 0.3), rgba(255, 214, 102, 0.1));
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.8rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 1.8rem;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-8px);
        }
        .stat-card .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .stat-card .label {
            font-size: 1.1rem;
            color: var(--dark);
            font-weight: 600;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
            position: relative;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .image-caption {
            font-style: italic;
            margin-top: 10px;
            color: #666;
            font-size: 0.95rem;
        }
        .review-card {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #eee;
        }
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.4rem;
            margin-right: 15px;
        }
        .review-name {
            font-weight: 600;
            font-size: 1.2rem;
        }
        .review-location {
            color: #777;
            font-size: 0.95rem;
        }
        .review-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin: 0.5rem 0;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 2rem;
        }
        .tip-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .tip-card h4 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tip-card h4 i {
            color: var(--accent);
            font-size: 1.6rem;
        }
        footer {
            background: linear-gradient(90deg, var(--dark) 0%, #143840 100%);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-type {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
        }
        .recommendation {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            font-size: 1.2rem;
        }
        .recommendation strong {
            color: var(--accent);
            font-weight: 700;
        }
        .copyright {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .nav-mobile-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .btn {
                padding: 14px 25px;
                min-width: 160px;
                font-size: 1.1rem;
            }
            .section {
                padding: 1.8rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            .content-block h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
