* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #0984e3, #fdcb6e);
            color: white;
            padding: 15px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.7px;
            font-family: 'Times New Roman', serif;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #0984e3;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.6rem;
            line-height: 1.4;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Times New Roman', serif;
            padding: 0 10px;
        }
        h2 {
            color: #0984e3;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #fdcb6e;
            font-size: 1.9rem;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "⭐";
            position: absolute;
            left: -35px;
            top: 5px;
        }
        h3 {
            color: #2d3436;
            margin: 35px 0 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        h3::after {
            content: "";
            flex-grow: 1;
            height: 1px;
            background-color: #2d3436;
            margin-left: 15px;
            opacity: 0.5;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            font-weight: bold;
            color: #0984e3;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.04);
        }
        .button-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            background-color: #0984e3;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 12px rgba(9, 132, 227, 0.3);
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .btn:hover {
            background-color: #fdcb6e;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(253, 203, 110, 0.4);
            color: #2d3436;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-top: 5px solid #fdcb6e;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 25px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-left: 4px solid #fdcb6e;
            transition: transform 0.4s ease;
        }
        .review-card:hover {
            transform: translateX(8px);
        }
        .reviewer {
            font-weight: bold;
            color: #2d3436;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 10px;
        }
        .rating {
            color: #fdcb6e;
            margin-bottom: 18px;
            font-size: 1.2rem;
        }
        .tips-list {
            margin: 25px 0 35px 30px;
        }
        .tips-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 35px;
            font-size: 1.05rem;
        }
        .tips-list li::before {
            content: "⚽";
            position: absolute;
            left: 0;
            top: 0;
        }
        .tag-container {
            margin: 45px 0;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #2d3436;
            padding: 10px 20px;
            border-radius: 50px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #bbdefb;
        }
        .tag:hover {
            background-color: #2d3436;
            color: white;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 35px 0;
        }
        .game-type {
            display: inline-block;
            color: #2d3436;
            text-decoration: none;
            margin: 0 12px 12px 0;
            font-weight: 600;
            padding: 7px 14px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #e3f2fd;
            text-decoration: none;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #fdcb6e;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .recommendation {
            background-color: #e3f2fd;
            border-left: 4px solid #2d3436;
            padding: 25px;
            margin: 40px 0;
            border-radius: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                padding-bottom: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                padding: 0 15px;
            }
            h2 {
                font-size: 1.7rem;
                padding-left: 0;
                margin-left: 15px;
            }
            h2::before {
                display: none;
            }
            .btn {
                width: 90%;
                text-align: center;
                padding: 15px 20px;
            }
            .stat-item {
                flex-direction: column;
                gap: 8px;
            }
            p {
                text-align: left;
                padding: 0 5px;
            }
            .tips-list {
                margin-left: 15px;
            }
            .tips-list li {
                padding-left: 30px;
            }
        }
