* {
            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: 60px;
        }
        header {
            background-color: #0f172a;
            color: white;
            padding: 12px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #facc15;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #facc15;
            border-bottom: 2px solid #facc15;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1300px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0f172a;
            margin-bottom: 25px;
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #0f172a;
            margin: 40px 0 18px;
            font-size: 2.1rem;
            border-bottom: 3px solid #facc15;
            padding-bottom: 12px;
        }
        h3 {
            color: #1e293b;
            margin: 30px 0 12px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "⚽";
        }
        p {
            margin-bottom: 18px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #dc2626;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 15px 12px;
            background-color: #facc15;
            color: #0f172a;
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #fbbf24;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #facc15;
        }
        .review {
            background-color: #f0fdf4;
            border-left: 5px solid #10b981;
            padding: 18px;
            margin: 20px 0;
            border-radius: 6px;
            position: relative;
        }
        .review::before {
            content: "💬";
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
        }
        .guide-section {
            background-color: #fffbeb;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .community-section {
            background-color: #eff6ff;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        ul {
            margin: 15px 0 25px 30px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.08rem;
        }
        footer {
            background-color: #0f172a;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 25px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #facc15;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .game-types h4::before, .tags h4::before {
            content: "🏷️";
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
            background-color: rgba(255,255,255,0.1);
        }
        .game-types a:hover, .tags a:hover {
            color: #0f172a;
            background-color: #facc15;
        }
        .recommendation {
            margin: 30px 0;
            font-size: 1.1rem;
            line-height: 1.8;
            padding: 15px;
            background-color: rgba(250,204,21,0.1);
            border-radius: 6px;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 0.95rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0f172a;
                padding: 25px;
                gap: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p, li {
                font-size: 1.02rem;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 5px;
                font-size: 1rem;
                width: 80%;
                margin-bottom: 15px;
            }
            .stats-box, .review, .guide-section, .community-section {
                padding: 20px;
            }
        }
