* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #0a3d91;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffdd00;
            text-decoration: none;
        }
        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: color 0.3s;
        }
        nav ul li a:hover {
            color: #ffdd00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(10, 61, 145, 0.85), rgba(10, 61, 145, 0.9)), url('https://picsum.photos/id/1067/1200/400?alt=FIFA Mobile Cover');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffdd00;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #e63900;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            margin: 0 10px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #cc3300;
        }
        .btn-secondary {
            background-color: #00b359;
        }
        .btn-secondary:hover {
            background-color: #008040;
        }
        h1, h2, h3 {
            color: #0a3d91;
            margin: 30px 0 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #ffdd00;
            padding-bottom: 10px;
            margin-top: 50px;
        }
        h3 {
            font-size: 1.5rem;
            color: #e67e22;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .tips-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .tips-box h3 {
            color: #2e7d32;
            margin-top: 0;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 10px;
        }
        .stats-box {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 40px 0;
        }
        .stat-item {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            width: 250px;
            margin: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #0a3d91;
            margin: 10px 0;
        }
        .stat-label {
            color: #555;
            font-size: 1.1rem;
        }
        .review {
            background-color: #f9f9f9;
            border-left: 4px solid #ffdd00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #0a3d91;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #bbdefb;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            color: #0a3d91;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .footer-section {
            width: 250px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffdd00;
            margin-bottom: 20px;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: #ffdd00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }
            nav {
                margin-top: 20px;
                display: none;
                width: 100%;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 80%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .footer-content {
                justify-content: center;
                text-align: center;
            }
        }
