* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', 'Tahoma', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #fffbf0;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #ff6b00 0%, #e05000 100%);
            padding: 15px 20px;
            color: white;
            box-shadow: 0 3px 12px rgba(0,0,0,0.18);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffea00;
            border-bottom: 2px solid #ffea00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 100;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 15px;
        }
        h1 {
            color: #e05000;
            font-size: 2.8rem;
            margin: 20px 0 30px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 4px solid #ffd699;
            width: 100%;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #ff6b00;
            font-size: 2rem;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd699;
            position: relative;
        }
        h2::after {
            content: "🔥";
            margin-left: 10px;
        }
        h3 {
            color: #e05000;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 12px;
        }
        h3::before {
            content: "→";
            color: #ff6b00;
            position: absolute;
            left: -8px;
            top: -2px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #3a3a3a;
            line-height: 1.85;
        }
        .highlight {
            font-weight: bold;
            color: #e05000;
            text-decoration: underline dotted #ff6b00;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #ff6b00;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            font-size: 1.05rem;
            text-align: center;
        }
        .btn:hover {
            background-color: #e05000;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #ff6b00;
        }
        .review {
            background-color: #fff;
            border-left: 4px solid #ffd699;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 12px;
            font-size: 1rem;
            display: block;
        }
        .tag {
            display: inline-block;
            background-color: #ff8c00;
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e67e00;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
        }
        .game-type a {
            color: #ff6b00;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border: 2px solid #ff6b00;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .game-type a:hover {
            background-color: #ff6b00;
            color: white;
        }
        footer {
            background: linear-gradient(135deg, #e05000 0%, #ff6b00 100%);
            color: white;
            padding: 50px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffea00;
            margin-bottom: 20px;
            border-bottom: 2px solid #ffea00;
            padding-bottom: 10px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 30px;
            font-size: 1rem;
        }
        .regional-tip {
            background-color: #fff5e6;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-top: 3px solid #ff8c00;
        }
        .regional-tip strong {
            color: #ff6b00;
        }
        .festival-highlight {
            background: linear-gradient(135deg, #ffe8cc 0%, #ffd699 100%);
            border-radius: 8px;
            padding: 22px;
            margin: 25px 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff6b00 0%, #e05000 100%);
                padding: 25px;
                gap: 20px;
                z-index: 99;
                box-shadow: 0 12px 12px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }
            .btn {
                padding: 12px 20px;
                font-size: 1rem;
                display: block;
                width: 100%;
                margin: 12px 0;
            }
            .image-container {
                margin: 30px 0;
            }
            .stats-box, .review {
                padding: 18px;
                margin: 20px 0;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
