* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #fff9ea;
            color: #4a3520;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 12px 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: #ffffff;
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.7px;
            font-family: 'Segoe UI Bold', sans-serif;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 32px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.08rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffdd59;
            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.9rem;
            cursor: pointer;
            padding: 5px 12px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #d35400;
            font-size: 2.6rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 3px solid #f39c12;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #d35400;
            font-size: 2.1rem;
            margin: 45px 0 22px;
            padding-left: 14px;
            border-left: 4px solid #f39c12;
        }
        h3 {
            color: #d35400;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            position: relative;
            padding-bottom: 10px;
        }
        h3:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f39c12;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 15px 18px;
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.18);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
            background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            border: 10px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin: 40px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            border-top: 5px solid #f39c12;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 22px 18px;
            background-color: #fff4e0;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: bold;
            color: #d35400;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #6d4c41;
            font-size: 1rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin: 30px 0;
            box-shadow: 0 4px 14px rgba(0,0,0,0.12);
            border-left: 4px solid #f39c12;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
        }
        .reviewer-avatar {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            margin-right: 18px;
            background-color: #f39c12;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
        }
        .reviewer-name {
            font-weight: bold;
            font-size: 1.15rem;
            color: #d35400;
        }
        .reviewer-location {
            color: #795548;
            font-size: 0.95rem;
        }
        .stars {
            color: #ffb74d;
            margin: 15px 0;
            font-size: 1.3rem;
        }
        .tips-list {
            margin-left: 35px;
            margin-bottom: 30px;
        }
        .tips-list li {
            margin-bottom: 15px;
            padding-left: 12px;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            display: inline-block;
            background-color: #fff0e0;
            color: #d35400;
            padding: 9px 20px;
            border-radius: 22px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #d35400;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 45px 0;
            padding: 22px;
            background-color: #fff4e0;
            border-radius: 8px;
        }
        .type-link {
            color: #d35400;
            text-decoration: none;
            margin-right: 28px;
            font-size: 1.1rem;
            position: relative;
            padding: 6px 0;
        }
        .type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #d35400;
            transition: width 0.3s ease;
        }
        .type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #4a3520;
            color: #f0e6d6;
            padding: 55px 20px 35px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 1px solid #6d523b;
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h3 {
            color: #ffdd59;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-section p {
            color: #f0e6d6;
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #ffdd59;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #c0b49e;
            border-top: 1px solid #6d523b;
        }
        .feature-box {
            background-color: white;
            border-radius: 8px;
            padding: 22px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 3px solid #f39c12;
        }
        .feature-box h4 {
            color: #d35400;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        .regional-variations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 35px 0;
        }
        .regional-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .regional-card:hover {
            transform: translateY(-6px);
        }
        .regional-img {
            width: 100%;
            height: 190px;
            object-fit: cover;
        }
        .regional-content {
            padding: 22px;
        }
        .regional-content h4 {
            color: #d35400;
            margin-bottom: 12px;
            font-size: 1.4rem;
        }
        .recipe-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .recipe-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .recipe-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .recipe-info {
            padding: 18px;
        }
        .recipe-info h4 {
            color: #d35400;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .spice-level {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-top: 8px;
        }
        .spice-mild {
            background-color: #e8f5e9;
            color: #2e7d32;
        }
        .spice-medium {
            background-color: #fff8e1;
            color: #ff8f00;
        }
        .spice-hot {
            background-color: #ffebee;
            color: #c62828;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #d35400;
                padding: 25px;
                box-shadow: 0 12px 12px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255,255,255,0.15);
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                margin: 18px auto;
                width: 92%;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .regional-variations {
                grid-template-columns: 1fr;
            }
            .recipe-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.6rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 12px;
            }
            p {
                font-size: 1.05rem;
            }
        }
