* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1e3799;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            color: #feca57;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 22px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 9px 14px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1e3799;
            text-align: center;
            margin: 35px 0 25px;
            font-size: 2.6rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1e3799;
            margin: 35px 0 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid #feca57;
            font-size: 2.1rem;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #1e3799;
            bottom: -3px;
            left: 0;
        }
        h3 {
            color: #1e3799;
            margin: 28px 0 18px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: '⚽';
            margin-right: 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.15rem;
            color: #2d3436;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 45px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 32px;
            font-size: 1.25rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            min-width: 210px;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        .login-btn {
            background-color: #2980b9;
            color: white;
            box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: bold;
            color: #1e3799;
            text-decoration: underline dotted #feca57;
            text-underline-offset: 4px;
        }
        .tips-box {
            background-color: #e8f4f8;
            border-left: 6px solid #1e3799;
            padding: 22px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .review {
            background-color: white;
            border-radius: 12px;
            padding: 22px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            border-top: 4px solid #feca57;
        }
        .reviewer {
            font-style: italic;
            color: #636e72;
            margin-top: 12px;
            font-weight: 500;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #1e3799;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #636e72;
            font-weight: 500;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin-bottom: 35px;
        }
        .game-types h4, .tags h4 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            color: #feca57;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(254, 202, 87, 0.3);
            display: inline-block;
        }
        .game-types ul, .tags ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            background-color: #4a69bd;
            padding: 9px 18px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #1e3799;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #4a69bd;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 35px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #636e72;
            color: #b2bec3;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                margin: 0 auto 15px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 2.1rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 25px 0 15px;
            }
            .btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 1.15rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .stat-item {
                padding: 15px;
            }
            .stat-number {
                font-size: 1.8rem;
            }
        }
