* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #0f172a;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fbbf24;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            color: #0f172a;
            background-color: #fbbf24;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0f172a;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #fbbf24;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        h2 {
            color: #0f172a;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #fbbf24;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 3px;
            background-color: #fbbf24;
        }
        h3 {
            color: #0f172a;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "⚽";
            margin-right: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #0f172a;
            background-color: #fef3c7;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0;
            justify-content: center;
        }
        .btn {
            padding: 18px 35px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn span {
            margin-right: 10px;
        }
        .download-btn {
            background-color: #10b981;
            color: white;
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            border-top: 5px solid #fbbf24;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #f8fafc;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #0f172a;
            margin-bottom: 15px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #475569;
        }
        .tips-list {
            margin: 25px 0 35px 50px;
        }
        .tips-list li {
            margin-bottom: 20px;
            font-size: 1.15rem;
            position: relative;
            padding-left: 15px;
        }
        .tips-list li::before {
            content: "•";
            color: #fbbf24;
            font-weight: bold;
            position: absolute;
            left: -20px;
            font-size: 1.5rem;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            position: relative;
        }
        .review-container::before {
            content: """;
            font-size: 8rem;
            color: #fef3c7;
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: Georgia, serif;
            opacity: 0.5;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
        }
        .reviewer {
            font-weight: bold;
            color: #0f172a;
            font-size: 1.2rem;
        }
        .rating {
            color: #fbbf24;
            font-size: 1.3rem;
        }
        footer {
            background-color: #0f172a;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-types {
            margin-bottom: 50px;
        }
        .game-types h4, .tags h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #fbbf24;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(251, 191, 36, 0.3);
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a, .tag-links a {
            color: white;
            text-decoration: none;
            background-color: #1e293b;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #fbbf24;
            color: #0f172a;
            transform: translateY(-3px);
        }
        .recommendation {
            margin: 50px 0;
            padding: 25px;
            background-color: #1e293b;
            border-radius: 12px;
            text-align: center;
            font-size: 1.15rem;
            border-left: 5px solid #fbbf24;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #1e293b;
            font-size: 1rem;
            color: #94a3b8;
        }
        .pro-tip {
            background-color: #fef3c7;
            border-left: 5px solid #f59e0b;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .pro-tip h4 {
            color: #92400e;
            font-size: 1.3rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .pro-tip h4::before {
            content: "💡";
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #0f172a;
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
                padding: 15px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .tips-list {
                margin-left: 30px;
            }
        }
