* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fdf8f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .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: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            font-family: 'Times New Roman', serif;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd700;
        }
        .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: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.5rem;
            margin: 30px 0 40px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            padding-bottom: 15px;
            border-bottom: 3px solid #cd853f;
        }
        h2 {
            color: #8b4513;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #deb887;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: "🌶️";
            position: absolute;
            left: -5px;
        }
        h3 {
            color: #a0522d;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #cd853f;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
            text-decoration: underline dotted #cd853f;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            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, #7a3a10 0%, #8f4725 100%);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 5px solid #fff;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #cd853f;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fef5e7;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 8px;
            font-family: 'Georgia', serif;
        }
        .stat-label {
            color: #5d4037;
            font-weight: 500;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background-color: #f5f0e6;
            color: #8b4513;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #e0c8a0;
        }
        .tag:before {
            content: "🔖";
        }
        .tag:hover {
            background-color: #8b4513;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 30px 0 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #8b4513;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .game-type:before {
            content: "🎮";
        }
        .game-type:hover {
            background-color: #f5f0e6;
            color: #6d3510;
        }
        blockquote {
            border-left: 4px solid #cd853f;
            padding: 15px 20px;
            margin: 25px 0;
            background-color: #fef5e7;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .region-highlight {
            background-color: #fff8e1;
            padding: 2px 5px;
            border-radius: 3px;
            border-bottom: 2px dotted #ffd700;
        }
        footer {
            background-color: #2d2d2d;
            color: #f0f0f0;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-left-color: #ffd700;
            margin-bottom: 20px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #d0d0d0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffd700;
        }
        .recommendation {
            background-color: #fef5e7;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            border-left: 5px solid #cd853f;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
                font-size: 1.5rem;
            }
            nav {
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                display: none;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                width: 100%;
            }
            nav ul li a {
                display: block;
                width: 100%;
                padding: 10px 15px;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
                margin: 20px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
