* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fdf9f1;
            color: #3a2e1f;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        header {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .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: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #cd853f;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b4513;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #cd853f;
        }
        h3 {
            color: #8b4513;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-bottom: 8px;
        }
        h3:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #cd853f;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b0000;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 12px 15px;
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            border: 10px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #cd853f;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f5f0e6;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #5d4037;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.1);
            border-left: 4px solid #cd853f;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: #cd853f;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.4rem;
        }
        .reviewer-name {
            font-weight: bold;
            font-size: 1.1rem;
            color: #8b4513;
        }
        .reviewer-location {
            color: #6d523b;
            font-size: 0.9rem;
        }
        .stars {
            color: #ffd700;
            margin: 12px 0;
            font-size: 1.2rem;
        }
        .tips-list {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .tips-list li {
            margin-bottom: 12px;
            padding-left: 10px;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #f0e6d6;
            color: #8b4513;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #8b4513;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0;
            padding: 20px;
            background-color: #f5f0e6;
            border-radius: 8px;
        }
        .type-link {
            color: #8b4513;
            text-decoration: none;
            margin-right: 25px;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        .type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #8b4513;
            transition: width 0.3s ease;
        }
        .type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #3a2e1f;
            color: #e0d8c8;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
            padding-bottom: 20px;
            border-bottom: 1px solid #5d4a36;
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section p {
            color: #e0d8c8;
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #b0a490;
            border-top: 1px solid #5d4a36;
        }
        .feature-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 3px solid #cd853f;
        }
        .feature-box h4 {
            color: #8b4513;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .regional-variations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .regional-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .regional-card:hover {
            transform: translateY(-5px);
        }
        .regional-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .regional-content {
            padding: 20px;
        }
        .regional-content h4 {
            color: #8b4513;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #8b4513;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .regional-variations {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
