/**
 * Asobi Night Custom Styles
 * Design System based on MIDNIGHT JAPAN React Reference
 *
 * @package Asobi_Night
 */

/* ================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   Unified Color System - Professional Design
   ================================================ */

:root {
    /* ============================================
       PRIMARY COLORS - SUPREME-inspired Red Theme
       Bold, Vibrant, Sexy & Lustrous
       ============================================ */
    --color-primary-400: #ff3333;  /* Bright vibrant red - SUPREME style */
    --color-primary-500: #ff0000;  /* Pure SUPREME red - Main brand color */
    --color-primary-600: #cc0000;  /* Deep rich red - Active states */
    --color-primary-700: #990000;  /* Dark wine red - Pressed states */
    --color-primary-800: #660000;  /* Deep burgundy - Dark accents */
    
    /* Legacy support - mapped to primary */
    --color-red-400: var(--color-primary-400);
    --color-red-500: var(--color-primary-500);
    --color-red-600: var(--color-primary-600);
    --color-red-700: var(--color-primary-700);
    --color-pink-400: #ff6b9d;  /* Sexy pink accent */
    --color-pink-500: #ff4081;  /* Vibrant pink */
    --color-pink-600: #e91e63;  /* Deep pink */
    --color-crimson: #dc143c;  /* Rich crimson */
    
    /* ============================================
       SECONDARY COLORS - Gold/Luxury Accent
       Metallic & Lustrous
       ============================================ */
    --color-secondary-400: #ffd700;  /* Bright gold */
    --color-secondary-500: #ffb800;  /* Rich gold - Secondary actions */
    --color-secondary-600: #cc8f00;  /* Deep gold - Active states */

    /* Legacy support - mapped to secondary */
    --color-amber-400: var(--color-secondary-400);
    --color-amber-500: var(--color-secondary-500);
    --color-amber-600: var(--color-secondary-600);
    --color-yellow-400: #ffeb3b;  /* Bright yellow */
    --color-yellow-500: #ffc107;  /* Amber yellow */
    
    /* ============================================
       ACCENT COLORS - Electric Purple/Pink
       Sexy & Vibrant
       ============================================ */
    --color-accent-400: #ff6ec7;  /* Bright pink-purple */
    --color-accent-500: #e91e63;  /* Hot pink - Links, navigation */
    --color-accent-600: #c2185b;  /* Deep pink - Active links */
    
    /* Legacy support - mapped to accent */
    --color-cyan-400: #00e5ff;  /* Bright cyan (kept for compatibility) */
    --color-cyan-500: #00bcd4;  /* Main cyan (kept for compatibility) */
    --color-cyan-600: #0097a7;  /* Dark cyan (kept for compatibility) */
    
    /* ============================================
       SEMANTIC COLORS - Status/Info
       ============================================ */
    --color-success-400: #4ade80;  /* Light green */
    --color-success-500: #22c55e;  /* Main green - Success states */
    --color-success-600: #16a34a;  /* Dark green */
    
    --color-warning-400: #facc15;  /* Light yellow */
    --color-warning-500: #eab308;  /* Main yellow - Warnings */
    --color-warning-600: #ca8a04;  /* Dark yellow */
    
    /* Legacy support - mapped to semantic */
    --color-green-400: var(--color-success-400);
    --color-green-500: var(--color-success-500);
    
    /* ============================================
       NEUTRAL COLORS - Grayscale
       ============================================ */
    --color-neutral-50: #fafafa;
    --color-neutral-100: #f4f4f5;
    --color-neutral-200: #e4e4e7;
    --color-neutral-300: #d4d4d8;
    --color-neutral-400: #a1a1aa;
    --color-neutral-500: #71717a;
    --color-neutral-600: #52525b;
    --color-neutral-700: #3f3f46;
    --color-neutral-800: #27272a;
    --color-neutral-900: #18181b;
    --color-neutral-950: #09090b;
    
    /* Legacy support - mapped to neutral */
    --color-zinc-400: var(--color-neutral-400);
    --color-zinc-500: var(--color-neutral-500);
    --color-zinc-600: var(--color-neutral-600);
    --color-zinc-700: var(--color-neutral-700);
    --color-zinc-800: var(--color-neutral-800);
    --color-zinc-900: var(--color-neutral-900);
    --color-zinc-950: var(--color-neutral-950);
    
    /* ============================================
       GLOW EFFECTS - Enhanced Lustrous Glows
       SUPREME-inspired with Sexy Vibes
       ============================================ */
    --glow-primary: 0 0 30px rgba(255, 0, 0, 0.6), 0 0 60px rgba(255, 0, 0, 0.3);
    --glow-primary-soft: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.2);
    --glow-primary-intense: 0 0 40px rgba(255, 0, 0, 0.8), 0 0 80px rgba(255, 0, 0, 0.4);
    --glow-secondary: 0 0 30px rgba(255, 184, 0, 0.6), 0 0 60px rgba(255, 184, 0, 0.3);
    --glow-secondary-soft: 0 0 20px rgba(255, 184, 0, 0.5), 0 0 40px rgba(255, 184, 0, 0.2);
    --glow-accent: 0 0 30px rgba(233, 30, 99, 0.6), 0 0 60px rgba(233, 30, 99, 0.3);
    --glow-accent-soft: 0 0 20px rgba(233, 30, 99, 0.5), 0 0 40px rgba(233, 30, 99, 0.2);
    
    /* Legacy support - mapped to unified glows */
    --glow-red: var(--glow-primary);
    --glow-red-soft: var(--glow-primary-soft);
    --glow-pink: var(--glow-accent);
    --glow-pink-soft: var(--glow-accent-soft);
    --glow-amber: var(--glow-secondary);
    --glow-yellow: var(--glow-secondary-soft);
    --glow-cyan: 0 0 20px rgba(0, 188, 212, 0.4);
    --glow-cyan-soft: 0 0 15px rgba(0, 188, 212, 0.3);
    
    /* ============================================
       GRADIENTS - Lustrous & Sexy SUPREME-style
       Metallic & Vibrant
       ============================================ */
    --gradient-primary: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #990000 100%);
    --gradient-primary-hover: linear-gradient(135deg, #ff3333 0%, #ff0000 50%, #cc0000 100%);
    --gradient-primary-lustrous: linear-gradient(135deg, #ff0000 0%, #ff3333 30%, #ff0000 60%, #cc0000 100%);
    --gradient-hero: linear-gradient(to right, #ff0000, #ff6b9d, #ffb800);
    --gradient-hero-alt: linear-gradient(135deg, #ff0000 0%, #e91e63 50%, #ffb800 100%);
    --gradient-accent: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    --gradient-secondary: linear-gradient(135deg, #ffb800 0%, #ffd700 50%, #ffb800 100%);
    --gradient-secondary-lustrous: linear-gradient(135deg, #ffd700 0%, #ffb800 30%, #ffd700 60%, #cc8f00 100%);
    --gradient-verified: linear-gradient(135deg, #ffb800 0%, #ffd700 50%, #ffb800 100%);
    --gradient-accent-cyan: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    --gradient-sexy: linear-gradient(135deg, #ff0000 0%, #e91e63 50%, #ff6b9d 100%);
    --gradient-metallic: linear-gradient(135deg, #ff0000 0%, #ff3333 25%, #ff0000 50%, #cc0000 75%, #990000 100%);
}

/* ================================================
   1. ANIMATIONS
   ================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1) translateZ(0);
    }
    100% {
        transform: scale(1.08) translateZ(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: var(--glow-yellow);
    }
    50% {
        box-shadow: 0 0 25px rgba(234, 179, 8, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes neon-flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out;
}

.animate-slowZoom {
    animation: slowZoom 40s ease-in-out infinite alternate;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-shimmer {
    animation: shimmer 2s linear infinite;
    background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.1) 50%, transparent 75%);
    background-size: 200% 100%;
}

/* ================================================
   2. UTILITIES
   ================================================ */

/* Remove scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Safe area (for mobile notch) */
.safe-area-bottom {
    padding-bottom: env(safe-area-inset-bottom);
}

/* ================================================
   3. CUSTOM COMPONENTS
   ================================================ */

/* Gradient text effect - SUPREME-inspired lustrous */
.gradient-text {
    background: linear-gradient(to right, #ff0000, #ff6b9d, #ffb800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.gradient-text-hero {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
}

/* Lustrous metallic text effect */
.gradient-text-lustrous {
    background: linear-gradient(135deg, #ff0000 0%, #ff3333 25%, #ff0000 50%, #cc0000 75%, #990000 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.7));
}

/* Glow effects - SUPREME-inspired lustrous glows */
.glow-pink {
    box-shadow: var(--glow-accent);
}

.glow-pink-soft {
    box-shadow: var(--glow-accent-soft);
}

.glow-cyan {
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.glow-cyan-soft {
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

.glow-yellow {
    box-shadow: var(--glow-secondary);
}

.glow-purple {
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.6), 0 0 60px rgba(156, 39, 176, 0.3);
}

/* Logo Glow Effect - SUPREME-style intense */
.logo-glow {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.3), 0 0 75px rgba(255, 0, 0, 0.2);
    animation: logoGlowPulse 2s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.3), 0 0 75px rgba(255, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 0, 0, 0.8), 0 0 70px rgba(255, 0, 0, 0.5), 0 0 100px rgba(255, 0, 0, 0.3);
    }
}

/* Text Shadow Effects - Enhanced */
.text-glow-pink {
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.7), 0 0 30px rgba(255, 107, 157, 0.4), 0 0 45px rgba(233, 30, 99, 0.3);
}

.text-glow-cyan {
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.text-glow-primary {
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.4), 0 0 45px rgba(255, 0, 0, 0.3);
}

/* Scan lines effect overlay - CRT Effect */
.scan-lines {
    background: 
        linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.1) 50%),
        linear-gradient(90deg, rgba(255,0,0,0.03), rgba(0,255,0,0.01), rgba(0,0,255,0.03));
    background-size: 100% 4px, 3px 100%;
}

/* Neon Border Effect - SUPREME-style vibrant */
.neon-border-pink {
    border-color: var(--color-pink-500);
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.6), 0 0 20px rgba(233, 30, 99, 0.4), inset 0 0 10px rgba(255, 107, 157, 0.2);
}

.neon-border-cyan {
    border-color: var(--color-cyan-500);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.6), 0 0 20px rgba(0, 188, 212, 0.4), inset 0 0 10px rgba(0, 188, 212, 0.2);
}

.neon-border-primary {
    border-color: var(--color-primary-500);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4), inset 0 0 10px rgba(255, 0, 0, 0.2);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4), inset 0 0 10px rgba(255, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.6), inset 0 0 15px rgba(255, 0, 0, 0.3);
    }
}

/* ================================================
   4. WORDPRESS SPECIFIC
   ================================================ */

/* WordPress Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: #27272a;
    border: 1px solid #3f3f46;
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
    border-radius: 0.25rem;
}

.pagination .page-numbers:hover {
    background-color: #3f3f46;
    color: #ffffff;
}

.pagination .page-numbers.current {
    background: linear-gradient(to right, #dc2626, #991b1b);
    color: #ffffff;
    border-color: transparent;
}

/* WordPress Alignment Classes */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   5. RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 768px) {
    /* Mobile menu adjustments */
    #mobile-menu {
        transition: transform 0.3s ease-in-out;
    }
    
    /* Mobile filter overlay */
    #mobile-filter-overlay {
        transition: opacity 0.3s ease-in-out;
    }
}

/* ================================================
   6. ACCESSIBILITY
   ================================================ */

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* ================================================
   7. PRINT STYLES
   ================================================ */

@media print {
    .no-print,
    nav,
    footer,
    .fixed,
    .sticky {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ================================================
   8. VENUE CARD STYLES - React Design Match
   ================================================ */

.venue-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-neutral-900);
    border: 1px solid var(--color-neutral-800);
}

.venue-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(239, 68, 68, 0.15);
}

/* Card Image Zoom Effect */
.venue-card .card-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-card:hover .card-image {
    transform: scale(1.1);
}

/* Card Title Hover */
.venue-card .card-title {
    transition: color 0.3s ease;
}

.venue-card:hover .card-title {
    color: var(--color-primary-500);
}

/* Card CTA Arrow Animation */
.venue-card .card-arrow {
    transition: transform 0.3s ease;
}

.venue-card:hover .card-arrow {
    transform: translateX(4px);
}

/* ================================================
   9. SELECT STYLES
   ================================================ */

select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* ================================================
   10. REGION CARD HOVER EFFECTS
   ================================================ */

.region-card {
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.region-card:hover::before {
    left: 100%;
}

/* ================================================
   11. FILTER SIDEBAR STYLES
   ================================================ */

.filter-sidebar {
    scrollbar-width: thin;
    scrollbar-color: var(--color-neutral-600) var(--color-neutral-800);
}

.filter-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: var(--color-neutral-800);
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--color-neutral-600);
    border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--color-neutral-500);
}

/* ================================================
   12. BADGE STYLES - React Design Match
   ================================================ */

/* Verified Badge - With Pulse Animation */
.badge-verified {
    background: var(--gradient-verified);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--glow-yellow);
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Verified Ribbon Style (Corner Badge) */
.verified-ribbon {
    background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), var(--glow-yellow);
}

/* English OK Badge - Primary Theme */
.badge-english {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: var(--color-primary-400);
}

/* ================================================
   PREMIUM CERTIFICATION: Foreigner Friendly Badge
   
   Design Concept:
   - Luxury Gold with metallic shine
   - Certificate/Seal aesthetic like official stamps
   - Eye-catching animations
   - Rich, trustworthy appearance
   ================================================ */

/* === DETAIL PAGE BADGE (Refined, Modern Design) === */
.foreigner-friendly-badge {
    position: relative;
    z-index: 30;
    display: inline-block;
}

.ff-badge-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1.5px solid rgba(236, 72, 153, 0.3);
    box-shadow: 
        0 4px 16px rgba(236, 72, 153, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

/* Subtle shimmer effect */
.ff-badge-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transform: skewX(-20deg);
    animation: ffShimmer 4s ease-in-out infinite;
}

.ff-badge-icon {
    width: 18px;
    height: 18px;
    color: #ec4899;
    stroke-width: 2.5;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(236, 72, 153, 0.3));
    transition: transform 0.3s ease;
}

.ff-badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f3f4f6;
    position: relative;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.ff-badge-seal {
    width: 18px;
    height: 18px;
    color: #10b981;
    stroke-width: 2.5;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.3));
    transition: transform 0.3s ease;
}

/* Hover state - subtle and refined */
.ff-badge-inner:hover {
    transform: translateY(-1px);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 
        0 6px 24px rgba(236, 72, 153, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ff-badge-inner:hover .ff-badge-icon {
    transform: scale(1.1);
    color: #f472b6;
}

.ff-badge-inner:hover .ff-badge-seal {
    transform: scale(1.1);
    color: #34d399;
}

/* === CARD BADGE (Corner Ribbon - Refined Modern Style) === */
.ff-badge-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: 0 0 0 12px;
    border-left: 2px solid rgba(236, 72, 153, 0.4);
    border-bottom: 2px solid rgba(236, 72, 153, 0.4);
    box-shadow: 
        -4px 4px 12px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(236, 72, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: visible;
}

/* Subtle shimmer effect */
.ff-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08), 
        transparent
    );
    transform: skewX(-20deg);
    animation: ffCardShimmer 3s ease-in-out infinite;
}

/* Mini check badge */
.ff-badge-card::after {
    content: '';
    position: absolute;
    right: -6px;
    bottom: -6px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ff-badge-card::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 8px 8px;
    background-position: center;
    background-repeat: no-repeat;
}

.ff-card-icon {
    width: 14px;
    height: 14px;
    color: #ec4899;
    stroke-width: 2.5;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(236, 72, 153, 0.4));
    position: relative;
    z-index: 1;
}

.ff-card-text {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #f3f4f6;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* === ANIMATIONS (Refined, Subtle) === */
@keyframes ffShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

@keyframes ffCardShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .ff-badge-inner {
        padding: 8px 16px 8px 12px;
        gap: 8px;
    }
    
    .ff-badge-inner::after {
        width: 26px;
        height: 26px;
        font-size: 12px;
        left: -6px;
    }
    
    .ff-badge-icon {
        font-size: 18px;
        margin-left: 12px;
    }
    
    .ff-badge-text {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .ff-badge-seal {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .ff-badge-card {
        padding: 6px 12px 6px 10px;
    }
    
    .ff-card-icon {
        font-size: 14px;
    }
    
    .ff-card-text {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
}

/* === EXTRA LARGE SCREENS === */
@media (min-width: 1200px) {
    .ff-badge-inner {
        padding: 12px 24px 12px 18px;
    }
    
    .ff-badge-inner::after {
        width: 36px;
        height: 36px;
        font-size: 16px;
        left: -10px;
    }
    
    .ff-badge-text {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

/* Globe/Foreigner Friendly Badge - Success Theme */
.badge-foreigner {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: var(--color-success-400);
}

/* Low Cost Badge - Success Theme */
.badge-lowcost {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: var(--color-success-400);
}

/* Hotel OK Badge - Primary Theme */
.badge-hotel {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: var(--color-primary-400);
}

/* Luxury Badge - Secondary Theme */
.badge-luxury {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: var(--color-secondary-400);
}

/* Generic Badge Default */
.badge-default {
    background: rgba(39, 39, 42, 0.8);
    border: 1px solid var(--color-neutral-700);
    color: var(--color-neutral-400);
}

/* ================================================
   13. LOADING STATES
   ================================================ */

.skeleton {
    background: linear-gradient(90deg, #27272a 25%, #3f3f46 50%, #27272a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ================================================
   14. MOBILE OPTIMIZATIONS
   ================================================ */

@media (max-width: 640px) {
    .venue-card:hover {
        transform: none;
    }
    
    .venue-card:active {
        transform: scale(0.98);
    }
}

/* ================================================
   15. CATEGORY ICON COLORS - Unified Theme
   ================================================ */

.category-fashion-health { color: var(--color-primary-500); }
.category-soapland { color: var(--color-accent-500); }
.category-hotel-health { color: var(--color-secondary-500); }
.category-escort { color: var(--color-secondary-500); }
.category-erotic-massage { color: var(--color-success-500); }
.category-nuru-massage { color: var(--color-accent-500); }
.category-pink-salon { color: var(--color-primary-500); }
.category-rendezvous { color: var(--color-secondary-500); }

/* ================================================
   16. ABOUT PAGE STYLES
   ================================================ */

/* Gradient text for about page */
.about-page .text-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About hero glow effects */
.about-page .glow-pink-soft {
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.15);
}

.about-page .glow-cyan-soft {
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.15);
}

/* Staggered animation delays for value cards */
.about-page .value-card:nth-child(1) { animation-delay: 0.1s; }
.about-page .value-card:nth-child(2) { animation-delay: 0.2s; }
.about-page .value-card:nth-child(3) { animation-delay: 0.3s; }
.about-page .value-card:nth-child(4) { animation-delay: 0.4s; }

/* Process step connector lines */
@media (min-width: 768px) {
    .about-page .process-step::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(236, 72, 153, 0.3), transparent);
    }
    
    .about-page .process-step:last-child::after {
        display: none;
    }
}

/* ================================================
   34. MAGAZINE ARTICLE STYLES - Professional Typography
   SEO-Optimized & UX-Focused (20 Years Industry Experience)
   ================================================ */

/* Base Prose Styles for Magazine Articles */
.prose.prose-invert {
    /* Typography Colors */
    --tw-prose-body: #d4d4d8;
    --tw-prose-headings: #ffffff;
    --tw-prose-lead: #e4e4e7;
    --tw-prose-links: var(--color-primary-500);
    --tw-prose-bold: #ffffff;
    --tw-prose-counters: var(--color-neutral-500);
    --tw-prose-bullets: var(--color-primary-500);
    --tw-prose-hr: var(--color-neutral-700);
    --tw-prose-quotes: #e4e4e7;
    --tw-prose-quote-borders: var(--color-primary-500);
    --tw-prose-captions: var(--color-neutral-500);
    --tw-prose-code: #f4f4f5;
    --tw-prose-pre-code: #f4f4f5;
    --tw-prose-pre-bg: var(--color-neutral-900);
    --tw-prose-th-borders: var(--color-neutral-700);
    --tw-prose-td-borders: var(--color-neutral-800);
    
    /* Line Height - Optimal for Reading */
    line-height: 1.75;
    color: var(--tw-prose-body);
}

/* Paragraphs - Professional Spacing */
.prose.prose-invert p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    line-height: 1.75;
    font-size: 1.0625rem; /* 17px - Optimal reading size */
}

.prose.prose-invert p:first-child {
    margin-top: 0;
}

.prose.prose-invert p:last-child {
    margin-bottom: 0;
}

/* ================================================
   HEADINGS - Professional & Visually Appealing
   ================================================ */

/* H1 - Main Section Title */
.prose.prose-invert h1 {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 1.25em;
    color: var(--tw-prose-headings);
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 0.75em;
}

.prose.prose-invert h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-hero);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

/* H2 - Major Section Headers */
.prose.prose-invert h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2.5em;
    margin-bottom: 1.25em;
    color: var(--tw-prose-headings);
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 1.25em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.prose.prose-invert h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    bottom: 0.65em;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.prose.prose-invert h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25em;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--color-primary-500), transparent);
    opacity: 0.3;
}

/* H3 - Subsection Headers */
.prose.prose-invert h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--tw-prose-headings);
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 0.75em;
}

.prose.prose-invert h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary-500);
    font-size: 0.6em;
    line-height: 1.5;
    opacity: 0.7;
}

/* H4 - Minor Headers */
.prose.prose-invert h4 {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.75em;
    margin-bottom: 0.875em;
    color: var(--tw-prose-headings);
    position: relative;
    border-left: 3px solid var(--color-primary-500);
    padding-left: 0.75em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    background: rgba(239, 68, 68, 0.03);
    border-radius: 0 4px 4px 0;
}

/* H5 - Small Headers */
.prose.prose-invert h5 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: var(--tw-prose-headings);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9375rem;
    color: var(--color-primary-400);
    position: relative;
    padding-left: 1.5em;
}

.prose.prose-invert h5::before {
    content: '▸';
    position: absolute;
    left: 0.5em;
    color: var(--color-primary-500);
    font-size: 0.8em;
}

/* H6 - Smallest Headers */
.prose.prose-invert h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.25em;
    margin-bottom: 0.625em;
    color: var(--color-neutral-300);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neutral-400);
}

/* Links - Accessible & Interactive */
.prose.prose-invert a {
    color: var(--tw-prose-links);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.prose.prose-invert a:hover {
    color: var(--color-primary-400);
    border-bottom-color: var(--color-primary-400);
}

.prose.prose-invert a:focus {
    outline: 2px solid var(--color-accent-500);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Lists - Beautiful & Readable */
.prose.prose-invert ul,
.prose.prose-invert ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose.prose-invert ul {
    list-style-type: none;
    position: relative;
}

.prose.prose-invert ul > li {
    position: relative;
    padding-left: 1.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.75;
}

.prose.prose-invert ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    background: var(--color-primary-500);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.prose.prose-invert ol {
    list-style-type: decimal;
    counter-reset: list-counter;
}

.prose.prose-invert ol > li {
    position: relative;
    padding-left: 0.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.75;
    counter-increment: list-counter;
}

.prose.prose-invert ol > li::marker {
    color: var(--color-primary-500);
    font-weight: 700;
}

/* Nested Lists */
.prose.prose-invert ul ul,
.prose.prose-invert ol ol,
.prose.prose-invert ul ol,
.prose.prose-invert ol ul {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}

/* List Items */
.prose.prose-invert li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose.prose-invert li > p {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}

.prose.prose-invert li > :first-child {
    margin-top: 0;
}

.prose.prose-invert li > :last-child {
    margin-bottom: 0;
}

/* Tables - Responsive & Professional */
.prose.prose-invert table {
    width: 100%;
    margin-top: 2em;
    margin-bottom: 2em;
    border-collapse: collapse;
    font-size: 0.9375rem;
    overflow-x: auto;
    display: block;
}

@media (min-width: 768px) {
    .prose.prose-invert table {
        display: table;
    }
}

.prose.prose-invert thead {
    border-bottom: 2px solid var(--color-primary-500);
}

.prose.prose-invert thead th {
    background: var(--color-neutral-900);
    color: var(--tw-prose-headings);
    font-weight: 700;
    text-align: left;
    padding: 0.75em 1em;
    border-bottom: 2px solid var(--color-primary-500);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.prose.prose-invert tbody tr {
    border-bottom: 1px solid var(--color-neutral-800);
    transition: background-color 0.2s ease;
}

.prose.prose-invert tbody tr:hover {
    background: rgba(239, 68, 68, 0.05);
}

.prose.prose-invert tbody tr:last-child {
    border-bottom: none;
}

.prose.prose-invert tbody td {
    padding: 0.75em 1em;
    border-right: 1px solid var(--color-neutral-800);
    vertical-align: top;
}

.prose.prose-invert tbody td:last-child {
    border-right: none;
}

.prose.prose-invert tbody th {
    padding: 0.75em 1em;
    font-weight: 600;
    color: var(--tw-prose-headings);
    border-right: 1px solid var(--color-neutral-800);
}

/* Blockquotes - Eye-Catching */
.prose.prose-invert blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    border-left: 4px solid var(--color-primary-500);
    background: rgba(239, 68, 68, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--tw-prose-quotes);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.prose.prose-invert blockquote::before {
    content: '"';
    position: absolute;
    top: -0.25em;
    left: 0.5em;
    font-size: 4em;
    color: var(--color-primary-500);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.prose.prose-invert blockquote p {
    margin-top: 0;
    margin-bottom: 0.75em;
    position: relative;
    z-index: 1;
}

.prose.prose-invert blockquote p:last-child {
    margin-bottom: 0;
}

.prose.prose-invert blockquote cite {
    display: block;
    margin-top: 0.75em;
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    font-style: normal;
    font-weight: 600;
}

.prose.prose-invert blockquote cite::before {
    content: '— ';
}

/* Code Blocks - Readable */
.prose.prose-invert code {
    background: var(--color-neutral-900);
    color: var(--tw-prose-code);
    padding: 0.125em 0.375em;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    border: 1px solid var(--color-neutral-800);
}

.prose.prose-invert pre {
    background: var(--color-neutral-900);
    color: var(--tw-prose-pre-code);
    padding: 1.5em;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2em 0;
    border: 1px solid var(--color-neutral-800);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.prose.prose-invert pre code {
    background: transparent;
    padding: 0;
    border: none;
    font-size: inherit;
    color: inherit;
}

/* Images - Responsive & Beautiful */
.prose.prose-invert img {
    max-width: 100%;
    height: auto;
    margin: 2em auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-neutral-800);
}

.prose.prose-invert figure {
    margin: 2em 0;
}

.prose.prose-invert figcaption {
    margin-top: 0.75em;
    font-size: 0.875rem;
    color: var(--tw-prose-captions);
    text-align: center;
    font-style: italic;
}

/* Horizontal Rules - Subtle Divider */
.prose.prose-invert hr {
    border: none;
    border-top: 2px solid var(--color-neutral-800);
    margin: 3em 0;
    position: relative;
}

.prose.prose-invert hr::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-primary-500);
}

/* Strong & Emphasis */
.prose.prose-invert strong {
    color: var(--tw-prose-bold);
    font-weight: 700;
}

.prose.prose-invert em {
    font-style: italic;
    color: var(--tw-prose-body);
}

.prose.prose-invert mark {
    background: rgba(245, 158, 11, 0.2);
    color: var(--color-secondary-400);
    padding: 0.125em 0.25em;
    border-radius: 3px;
}

/* Definition Lists */
.prose.prose-invert dl {
    margin: 1.5em 0;
}

.prose.prose-invert dt {
    font-weight: 700;
    color: var(--tw-prose-headings);
    margin-top: 1em;
}

.prose.prose-invert dd {
    margin-left: 1.5em;
    margin-top: 0.5em;
    color: var(--tw-prose-body);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .prose.prose-invert {
        font-size: 1rem;
    }
    
    .prose.prose-invert h1 {
        font-size: 2rem;
        padding-bottom: 0.5em;
    }
    
    .prose.prose-invert h1::after {
        width: 60px;
        height: 3px;
    }
    
    .prose.prose-invert h2 {
        font-size: 1.75rem;
        padding-left: 1em;
        margin-top: 2em;
    }
    
    .prose.prose-invert h2::before {
        width: 3px;
    }
    
    .prose.prose-invert h2::after {
        left: 1em;
    }
    
    .prose.prose-invert h3 {
        font-size: 1.375rem;
        padding-left: 0.625em;
    }
    
    .prose.prose-invert h3::before {
        font-size: 0.55em;
    }
    
    .prose.prose-invert h4 {
        font-size: 1.125rem;
        padding-left: 0.625em;
    }
    
    .prose.prose-invert h5 {
        font-size: 0.875rem;
        padding-left: 1.25em;
    }
    
    .prose.prose-invert h6 {
        font-size: 0.8125rem;
    }
    
    .prose.prose-invert blockquote {
        padding: 1em 1.5em;
        margin: 1.5em 0;
    }
    
    .prose.prose-invert pre {
        padding: 1em;
        font-size: 0.8125rem;
    }
}

/* Print Styles */
@media print {
    .prose.prose-invert {
        color: #000;
    }
    
    .prose.prose-invert a {
        color: #000;
        text-decoration: underline;
    }
    
    .prose.prose-invert img {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* About page prose styling - Keep existing */
.about-page .prose {
    --tw-prose-body: #a1a1aa;
    --tw-prose-headings: #ffffff;
    --tw-prose-lead: #d4d4d8;
    --tw-prose-links: #ef4444;
    --tw-prose-bold: #ffffff;
    --tw-prose-counters: #71717a;
    --tw-prose-bullets: #71717a;
    --tw-prose-hr: #3f3f46;
    --tw-prose-quotes: #d4d4d8;
    --tw-prose-quote-borders: #ef4444;
    --tw-prose-captions: #71717a;
    --tw-prose-code: #f4f4f5;
    --tw-prose-pre-code: #f4f4f5;
    --tw-prose-pre-bg: #18181b;
    --tw-prose-th-borders: #3f3f46;
    --tw-prose-td-borders: #27272a;
}

/* Counter number styling */
.about-page .counter {
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* Smooth scroll behavior */
.about-page {
    scroll-behavior: smooth;
}

/* FAQ item focus styles */
.about-page .faq-toggle:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Region cards dynamic colors */
.region-card.border-pink-500\/30:hover { border-color: rgba(239, 68, 68, 0.5); }
.region-card.border-cyan-500\/30:hover { border-color: rgba(6, 182, 212, 0.5); }
.region-card.border-green-500\/30:hover { border-color: rgba(34, 197, 94, 0.5); }
.region-card.border-blue-500\/30:hover { border-color: rgba(59, 130, 246, 0.5); }
.region-card.border-purple-500\/30:hover { border-color: rgba(168, 85, 247, 0.5); }
.region-card.border-orange-500\/30:hover { border-color: rgba(249, 115, 22, 0.5); }
.region-card.border-red-500\/30:hover { border-color: rgba(239, 68, 68, 0.5); }
.region-card.border-yellow-500\/30:hover { border-color: rgba(234, 179, 8, 0.5); }

/* CTA button hover effect */
.about-page a[href*="venue"] {
    position: relative;
    overflow: hidden;
}

.about-page a[href*="venue"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-page a[href*="venue"]:hover::before {
    left: 100%;
}

/* ================================================
   17. CURRENCY SWITCHER STYLES
   ================================================ */

/* Currency dropdown animation */
#currency-dropdown {
    transform-origin: top right;
    animation: dropdownFadeIn 0.15s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-4px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Currency chevron rotation */
.currency-chevron {
    transition: transform 0.2s ease;
}

.currency-chevron.rotate-180 {
    transform: rotate(180deg);
}

/* Currency option hover states */
.currency-option {
    transition: background-color 0.15s ease;
}

.currency-option.bg-cyan-600\/20 {
    background-color: rgba(6, 182, 212, 0.2);
}

/* Currency list scrollbar */
.currency-list {
    scrollbar-width: thin;
    scrollbar-color: #52525b #27272a;
}

.currency-list::-webkit-scrollbar {
    width: 4px;
}

.currency-list::-webkit-scrollbar-track {
    background: #27272a;
}

.currency-list::-webkit-scrollbar-thumb {
    background: #52525b;
    border-radius: 2px;
}

.currency-list::-webkit-scrollbar-thumb:hover {
    background: #71717a;
}

/* Mobile currency option active state */
.mobile-currency-option.border-cyan-500 {
    border-color: #06b6d4;
}

.mobile-currency-option.bg-cyan-500\/10 {
    background-color: rgba(6, 182, 212, 0.1);
}

/* Price display with currency indicator */
.price-converted {
    position: relative;
}

.price-converted::before {
    content: '≈';
    opacity: 0.6;
    margin-right: 1px;
}

/* Approximate price tooltip */
[data-price-jpy]:not([data-currency="JPY"])::after {
    content: attr(data-original-jpy);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: #18181b;
    border: 1px solid #3f3f46;
    border-radius: 4px;
    font-size: 10px;
    color: #a1a1aa;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 10;
}

[data-price-jpy]:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ================================================
   18. BUTTON STYLES - React Design Match
   ================================================ */

/* Primary Gradient Button - SUPREME-style lustrous */
.btn-primary {
    background: var(--gradient-primary-lustrous);
    background-size: 200% 200%;
    color: white;
    font-weight: 900;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: shimmer 3s linear infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary-intense);
    filter: brightness(1.15);
    animation: shimmer 2s linear infinite;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: var(--glow-primary-soft);
}

/* Secondary Button - Gold lustrous */
.btn-secondary {
    background: var(--gradient-secondary-lustrous);
    background-size: 200% 200%;
    border: 1px solid rgba(255, 184, 0, 0.5);
    color: white;
    font-weight: 900;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-secondary);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: shimmer 3s linear infinite;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover {
    background: var(--gradient-secondary);
    border-color: var(--color-secondary-400);
    box-shadow: var(--glow-secondary);
    filter: brightness(1.1);
}

.btn-secondary:hover::before {
    left: 100%;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 1px solid var(--color-neutral-700);
    color: var(--color-neutral-300);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--color-accent-500);
    color: var(--color-accent-400);
    box-shadow: var(--glow-accent-soft);
}

/* ================================================
   19. SECTION HEADER STYLES - React Design Match
   ================================================ */

.section-header {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--color-primary-600);
}

.section-header-cyan {
    border-left-color: var(--color-accent-600);
}

.section-header-yellow {
    border-left-color: var(--color-secondary-500);
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 1.875rem;
    }
}

.section-header .section-subtitle {
    color: var(--color-neutral-500);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

/* ================================================
   20. HERO SECTION STYLES - Professional UIUX
   ================================================ */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--color-primary-400);
    font-family: monospace;
    font-size: 12px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary-500);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.05em;
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

/* Hero Section - Professional Refinements */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Ensure hero content fits properly */
.hero-section > div:last-child {
    max-height: 100%;
    overflow-y: auto;
}

/* Hero content container - Optimized spacing */
@media (max-width: 640px) {
    .hero-section {
        min-height: 85vh;
    }
}

@media (min-width: 641px) {
    .hero-section {
        min-height: 80vh;
    }
}

/* Hero Background Image - Optimized */
.hero-section img {
    object-position: center;
    will-change: transform;
}

/* Hero background brightness adjustment for night scene */
.hero-section img.brightness-110 {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
}

/* Hero Content Container - Better Spacing */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Badge - Enhanced */
.hero-badge {
    transition: all 0.3s ease;
}

.hero-badge:hover {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}

/* Hero Title - Improved Typography */
.hero-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    will-change: transform;
}

/* Hero Subtitle - Better Readability */
.hero-subtitle {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Search Widget - Professional Card */
.hero-search-widget {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Location Cards - Enhanced Hover States */
.location-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, border-color;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
}

.location-card:active {
    transform: translateY(0);
}

/* Near Me Button - Professional Styling */
.near-me-hero-btn {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.near-me-hero-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.near-me-hero-btn:hover::after {
    transform: translateX(100%);
}

/* Select Dropdown - Enhanced */
#all-prefectures-select {
    transition: all 0.2s ease;
}

#all-prefectures-select:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

#all-prefectures-select:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Responsive Optimizations */
@media (max-width: 640px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-search-widget {
        padding: 1.25rem;
    }
    
    .location-card {
        padding: 0.75rem;
    }
    
    .location-card:hover {
        transform: none;
    }
    
    .location-card:active {
        transform: scale(0.98);
        background: rgba(39, 39, 42, 0.95);
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 65vh;
    }
    
    .hero-search-widget {
        padding: 2rem;
    }
}

/* Smooth Scroll Behavior for Hero */
@media (prefers-reduced-motion: no-preference) {
    .hero-section {
        scroll-behavior: smooth;
    }
}

/* Accessibility - Focus States */
.hero-section button:focus-visible,
.hero-section a:focus-visible,
.hero-section select:focus-visible {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* ================================================
   21. LOCATION CARD STYLES - Professional UIUX
   ================================================ */

.location-card {
    position: relative;
    overflow: hidden;
    background: rgba(39, 39, 42, 0.9);
    border: 1px solid var(--color-neutral-700);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, border-color, box-shadow;
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0) 0%, rgba(245, 158, 11, 0) 100%);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.location-card > * {
    position: relative;
    z-index: 1;
}

.location-card:hover {
    border-color: rgba(239, 68, 68, 0.8);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(239, 68, 68, 0.15);
    background: rgba(39, 39, 42, 0.95);
}

.location-card:hover::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.location-card:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .location-card {
        padding: 12px;
    }
    
    .location-card:hover {
        transform: none;
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
    }
    
    .location-card:active {
        transform: scale(0.98);
        background: rgba(39, 39, 42, 1);
    }
}

/* ================================================
   22. CATEGORY TAB STYLES
   ================================================ */

.category-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-tab:not(.active) {
    background: var(--color-neutral-900);
    border: 1px solid var(--color-neutral-800);
    color: var(--color-neutral-400);
}

.category-tab:not(.active):hover {
    background: var(--color-neutral-800);
    color: white;
}

.category-tab.active {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Tab Underline Effect */
.category-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: width 0.3s ease;
}

.category-tab:hover::after {
    width: 80%;
}

/* ================================================
   23. CONTACT HUB STYLES
   ================================================ */

.contact-btn-line {
    background: #06C755;
    color: white;
}

.contact-btn-line:hover {
    background: #05b34c;
}

.contact-btn-whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn-whatsapp:hover {
    background: #20bd5a;
}

.contact-btn-wechat {
    background: #07C160;
    color: white;
}

.contact-btn-wechat:hover {
    background: #06ad56;
}

/* ================================================
   24. INFO CARD STYLES (Features Section)
   ================================================ */

.info-card {
    position: relative;
    padding: 24px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, var(--color-neutral-900) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.info-card-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, var(--color-neutral-900) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.info-card-yellow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, var(--color-neutral-900) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* ================================================
   25. PRICE DISPLAY STYLES
   ================================================ */

.price-primary {
    color: var(--color-accent-400);
    font-family: monospace;
    font-weight: 700;
    font-size: 1.125rem;
}

.price-large {
    font-size: 1.5rem;
}

/* ================================================
   26. FILTER CHIP STYLES
   ================================================ */

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.filter-chip-active {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: var(--color-primary-400);
}

.filter-chip-remove:hover {
    color: white;
}

/* ================================================
   27. MOBILE OPTIMIZATIONS
   ================================================ */

@media (max-width: 640px) {
    .venue-card:hover {
        transform: none;
    }
    
    .venue-card:active {
        transform: scale(0.98);
    }
    
    .location-card:hover {
        transform: none;
    }
    
    .location-card:active {
        transform: scale(0.98);
    }
}

/* ================================================
   28. SCROLL BEHAVIOR
   ================================================ */

html {
    scroll-behavior: smooth;
}

/* Snap scrolling for horizontal carousels */
.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-center {
    scroll-snap-align: center;
}

/* ================================================
   29. NEAR ME FEATURE STYLES
   ================================================ */

/* Near Me button pulse effect */
#near-me-trigger,
.near-me-hero-btn {
    position: relative;
    overflow: hidden;
}

#near-me-trigger::before,
.near-me-hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: nearMeShimmer 3s ease-in-out infinite;
}

@keyframes nearMeShimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

/* Near Me Modal - Clean Popup Style */
#near-me-modal {
    display: none;
}

#near-me-modal.modal-open {
    display: block !important;
}

/* Backdrop animation - Smooth */
#near-me-modal .near-me-backdrop {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#near-me-modal.modal-open .near-me-backdrop {
    opacity: 1;
}

/* Modal box animation - Ultra Smooth */
#near-me-modal .near-me-modal-box {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

#near-me-modal.modal-open .near-me-modal-box {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Closing animation - Smooth */
#near-me-modal.modal-closing .near-me-backdrop {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#near-me-modal.modal-closing .near-me-modal-box {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Distance buttons hover effect - Enhanced for visitor-friendly design */
.near-me-distance-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 70px;
}

.near-me-distance-btn:hover:not([class*="bg-cyan-500"]) {
    transform: translateY(-2px);
    border-color: #06b6d4;
    background: #18181b;
}

.near-me-distance-btn:active {
    transform: scale(0.97);
}

/* Active state */
.near-me-distance-btn[class*="bg-cyan-500"] {
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Results list animation */
#near-me-results-list > a {
    animation: slideInFromBottom 0.3s ease-out;
    animation-fill-mode: both;
}

#near-me-results-list > a:nth-child(1) { animation-delay: 0.05s; }
#near-me-results-list > a:nth-child(2) { animation-delay: 0.1s; }
#near-me-results-list > a:nth-child(3) { animation-delay: 0.15s; }
#near-me-results-list > a:nth-child(4) { animation-delay: 0.2s; }
#near-me-results-list > a:nth-child(5) { animation-delay: 0.25s; }

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab switching animation */
.near-me-tab {
    transition: all 0.2s ease;
}

.near-me-tab:active {
    transform: scale(0.95);
}

/* Scrollbar for results list */
#near-me-results-list::-webkit-scrollbar {
    width: 4px;
}

#near-me-results-list::-webkit-scrollbar-track {
    background: #27272a;
    border-radius: 2px;
}

#near-me-results-list::-webkit-scrollbar-thumb {
    background: #52525b;
    border-radius: 2px;
}

#near-me-results-list::-webkit-scrollbar-thumb:hover {
    background: #71717a;
}

/* Service type badges in venue cards */
.venue-service-badge-fixed {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.venue-service-badge-delivery {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Floating Near Me button (mobile) */
.near-me-floating-btn {
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
}

.near-me-floating-btn:hover {
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.5);
}

.near-me-floating-btn:active {
    transform: scale(0.9);
}

/* Hide body scroll when modal open */
body.near-me-modal-open {
    overflow: hidden !important;
}

/* ================================================
   30. MOBILE FILTER AUTO-HIDE STYLES
   ================================================ */

/* Filter container transition - Smooth */
#filter-container {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

#filter-container.filter-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Mobile filter summary bar */
#mobile-filter-summary {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Full filter panel animation - Smooth with transform */
#full-filter-panel {
    overflow: visible;
    transform-origin: top;
    will-change: transform, opacity;
}

/* Desktop: always visible and properly displayed */
@media (min-width: 641px) {
    #full-filter-panel {
        transform: scaleY(1) !important;
        opacity: 1 !important;
        max-height: none !important;
        display: block !important;
        overflow: visible !important;
    }
    
    #filter-container {
        position: sticky;
        top: 64px;
        z-index: 40;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Ensure filter sections are properly stacked on desktop */
    #full-filter-panel > div {
        display: block;
        width: 100%;
    }
    
    /* Location header bar - ensure proper background when sticky */
    #filter-container > #full-filter-panel > .bg-zinc-900 {
        background: rgba(24, 24, 27, 0.98) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    /* Category filter section - ensure proper background when sticky */
    #category-filter-section {
        background: rgba(9, 9, 11, 0.98) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    /* Advanced filters section - ensure proper background when sticky */
    #filter-container > #full-filter-panel > .bg-zinc-950 {
        background: rgba(9, 9, 11, 0.98) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

/* Mobile filter states - Smooth animation */
@media (max-width: 640px) {
    /* Expanded state (default/open) */
    #full-filter-panel.filter-expanded {
        transform: scaleY(1);
        opacity: 1;
        max-height: 2000px;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Collapsed state (closed) */
    #full-filter-panel.filter-collapsed {
        transform: scaleY(0);
        opacity: 0;
        max-height: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    /* Transitioning state - prevents layout shift */
    #full-filter-panel.filter-transitioning {
        display: block !important;
    }
    
    /* Initial state - expanded by default */
    #full-filter-panel:not(.filter-collapsed):not(.filter-expanded) {
        transform: scaleY(1);
        opacity: 1;
        max-height: 2000px;
    }
}

/* Filter toggle button */
#mobile-filter-toggle-btn {
    transition: all 0.3s ease;
    z-index: 40;
}

#mobile-filter-toggle-btn:active {
    transform: scale(0.9);
}

/* Filter badge pulse */
#filter-badge {
    animation: filterBadgePulse 2s ease-in-out infinite;
}

@keyframes filterBadgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Summary chevron rotation - Smooth */
#summary-chevron {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

#summary-chevron.rotate-180 {
    transform: rotate(180deg);
}

/* Smooth scroll behavior for filter panel */
@media (max-width: 640px) {
    #filter-container {
        will-change: transform;
    }
    
    /* Ensure filter panel doesn't cause layout shift */
    #full-filter-panel {
        contain: layout style paint;
    }
}

/* ================================================
   32. CATEGORY FILTER AUTO-HIDE (UIUX OPTIMIZED)
   ================================================ */
/* Industry 20-year UX Designer Approach:
   - Location stays visible (primary filter)
   - Category auto-hides on scroll (secondary filter)
   - Smooth, non-intrusive animation
*/

#category-filter-section {
    position: sticky;
    top: 64px; /* Below header */
    z-index: 35;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    transform-origin: top;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Hidden state - slides up smoothly and faster */
#category-filter-section.category-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Visible state - normal position */
#category-filter-section:not(.category-hidden) {
    transform: translateY(0);
    opacity: 1;
}

/* ================================================
   33. AREA SCROLL IMPROVEMENTS (MOBILE UX)
   ================================================ */

/* Enhanced horizontal scroll for area pills */
#area-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
}

/* Snap scrolling for better mobile UX */
#area-scroll.snap-x {
    scroll-snap-type: x mandatory;
}

#area-scroll .snap-start {
    scroll-snap-align: start;
}

/* Scroll indicator - hide when not needed */
#area-scroll-indicator {
    opacity: 1;
    transition: opacity 0.3s ease;
}

#area-scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Desktop scroll indicator */
#area-scroll-indicator-desktop {
    opacity: 1;
    transition: opacity 0.3s ease;
}

#area-scroll-indicator-desktop.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Ensure location bar stays visible above category */
/* No layout shift when category hides - handled by transform */

/* Desktop: More refined behavior */
@media (min-width: 641px) {
    #category-filter-section {
        top: 64px;
    }
    
    /* Slightly faster hide on desktop for better responsiveness */
    #category-filter-section.category-hidden {
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Mobile: Category is in dropdown, so less critical */
@media (max-width: 640px) {
    #category-filter-section {
        position: relative;
        top: auto;
    }
    
    /* On mobile, category is in dropdown so we can be more aggressive */
    #category-filter-section.category-hidden {
        transform: translateY(-100%);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* ================================================
   31. CATEGORY CARDS - STYLISH DESIGN
   ================================================ */

.category-card-stylish {
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, border-color;
}

.category-card-stylish::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0) 0%, rgba(245, 158, 11, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.category-card-stylish:hover::before {
    opacity: 1;
}

.category-card-stylish:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(239, 68, 68, 0.15);
}

/* Icon animation on hover */
.category-card-stylish .group-hover\:scale-110 {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card-stylish .group-hover\:rotate-3 {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .category-card-stylish {
        min-height: 140px;
    }
    
    .category-card-stylish:hover {
        transform: none;
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
    }
    
    .category-card-stylish:active {
        transform: scale(0.98);
    }
}

/* Desktop hover effects */
@media (min-width: 768px) {
    .category-card-stylish {
        min-height: 160px;
    }
}

/* Legacy support for category-card-mobile */
.category-card-mobile {
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.category-card-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0) 0%, rgba(239, 68, 68, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card-mobile:hover::before {
    opacity: 1;
}

@media (max-width: 640px) {
    .category-card-mobile {
        min-height: 120px;
        padding: 1rem;
    }
    
    .category-card-mobile h3 {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .category-card-mobile p {
        font-size: 0.625rem;
        line-height: 1.2;
    }
}

@media (min-width: 768px) {
    .category-card-mobile {
        min-height: 160px;
    }
    
    .category-card-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
    }
}

/* ================================================
   FAVORITES / BOOKMARKS STYLES
   ================================================ */

/* Favorite Button Base */
.favorite-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn:active {
    transform: scale(0.95);
}

/* Favorite Button - Feedback Animation (on click) */
.favorite-btn-feedback {
    animation: favoriteClickFeedback 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes favoriteClickFeedback {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.3) rotate(5deg);
    }
    60% {
        transform: scale(0.9) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Favorite Button - Success State Animation */
.favorite-btn-success {
    animation: favoriteSuccess 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes favoriteSuccess {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Favorite Button - Active State */
.favorite-btn.is-favorited {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.favorite-btn.is-favorited:hover {
    background: rgba(239, 68, 68, 0.3) !important;
}

/* Heart Icon Animation - Enhanced */
.favorite-btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.favorite-btn.is-favorited i {
    animation: heartBeat 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heartBeat {
    0% {
        transform: scale(1) rotate(0deg);
    }
    20% {
        transform: scale(1.4) rotate(-10deg);
    }
    40% {
        transform: scale(0.8) rotate(10deg);
    }
    60% {
        transform: scale(1.2) rotate(-5deg);
    }
    80% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Favorites Toast Notification - Mobile Optimized */
.favorite-toast {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop Toast Animation */
@media (min-width: 768px) {
    .favorite-toast {
        animation: slideInRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
}

/* Mobile Toast Animation */
@media (max-width: 767px) {
    .favorite-toast {
        animation: toastBounceIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
    
    .favorite-toast-icon-wrapper {
        position: relative;
    }
    
    .favorite-toast-icon {
        animation: iconPulse 0.6s ease-in-out;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastBounceIn {
    0% {
        transform: translateX(-50%) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Favorites Badge in Navigation - Enhanced Animations */
#favorites-nav-badge,
#favorites-mobile-badge {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Badge Appear Animation (first time) */
.badge-appear {
    animation: badgeAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgeAppear {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Badge Pulse Animation (update) */
.badge-pulse {
    animation: badgePulse 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.4);
    }
    60% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Legacy support */
#favorites-nav-badge:not(.badge-appear):not(.badge-pulse),
#favorites-mobile-badge:not(.badge-appear):not(.badge-pulse) {
    animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Favorites Page Styles */
#favorites-container {
    min-height: 50vh;
}

#favorites-empty {
    padding: 4rem 1rem;
}

#favorites-grid .venue-card {
    animation: fadeInUp 0.4s ease-out;
    animation-fill-mode: both;
}

#favorites-grid .venue-card:nth-child(1) { animation-delay: 0.05s; }
#favorites-grid .venue-card:nth-child(2) { animation-delay: 0.1s; }
#favorites-grid .venue-card:nth-child(3) { animation-delay: 0.15s; }
#favorites-grid .venue-card:nth-child(4) { animation-delay: 0.2s; }
#favorites-grid .venue-card:nth-child(5) { animation-delay: 0.25s; }
#favorites-grid .venue-card:nth-child(6) { animation-delay: 0.3s; }
#favorites-grid .venue-card:nth-child(7) { animation-delay: 0.35s; }
#favorites-grid .venue-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Single Venue Page - Favorite Button */
.single-venue .favorite-btn {
    backdrop-filter: blur(10px);
}

.single-venue .favorite-btn.is-favorited .favorite-text::after {
    content: 'd';
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .favorite-btn:hover {
        transform: none;
    }
    
    .favorite-btn:active {
        transform: scale(0.95);
    }
    
    .favorite-toast {
        right: 1rem;
        left: 1rem;
        top: auto;
        bottom: 6rem;
    }
}

/* ================================================
   VENUE DETAIL PAGE STYLES
   ================================================ */

/* Venue Detail Page Container */
.venue-detail-page {
    scroll-behavior: smooth;
}

/* Hero Image Animation */
.venue-detail-page .animate-slowZoom {
    animation: slowZoom 40s ease-in-out infinite alternate;
}

/* Venue Sections - Staggered Animation */
.venue-section {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.venue-section:nth-child(1) { animation-delay: 0.1s; }
.venue-section:nth-child(2) { animation-delay: 0.15s; }
.venue-section:nth-child(3) { animation-delay: 0.2s; }
.venue-section:nth-child(4) { animation-delay: 0.25s; }
.venue-section:nth-child(5) { animation-delay: 0.3s; }
.venue-section:nth-child(6) { animation-delay: 0.35s; }

/* Contact Hub - Enhanced Styling */
.venue-contact-hub {
    position: relative;
    overflow: hidden;
}

.venue-contact-hub::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Contact Buttons - Interactive States */
.venue-contact-hub .contact-btn {
    position: relative;
    overflow: hidden;
}

.venue-contact-hub .contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.venue-contact-hub .contact-btn:hover::before {
    left: 100%;
}

/* Features Grid - Hover Effect */
.venue-features .grid > div {
    transition: all 0.2s ease;
}

.venue-features .grid > div:hover {
    background-color: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateX(4px);
}

/* Price List - Row Hover */
.venue-prices .divide-y > div {
    transition: all 0.2s ease;
}

.venue-prices .divide-y > div:hover {
    background-color: rgba(6, 182, 212, 0.05);
}

.venue-prices .divide-y > div:hover .font-mono {
    color: #22d3ee;
}

/* Sidebar Card - Sticky Enhancement */
.venue-sidebar-card {
    transition: box-shadow 0.3s ease;
}

.venue-sidebar-card:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

/* Info Items - Interactive */
.venue-info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(63, 63, 70, 0.5);
    transition: all 0.2s ease;
}

.venue-info-item:last-child {
    border-bottom: none;
}

.venue-info-item:hover {
    padding-left: 0.5rem;
}

/* Map Container - Loading State */
.venue-sidebar-card iframe {
    background: linear-gradient(135deg, #27272a 25%, #3f3f46 50%, #27272a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* Mobile Sticky Contact Bar */
@media (max-width: 1023px) {
    .venue-detail-page {
        padding-bottom: 80px;
    }
}

/* Mobile Contact Bar - Glass Effect */
.venue-detail-page + .fixed,
.venue-detail-page .fixed[class*="bottom-0"] {
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* WeChat Toast Animation */
#wechat-toast {
    z-index: 9999;
}

#wechat-toast.opacity-100 {
    animation: slideInRight 0.3s ease-out;
}

/* Trust Badges - Glow Effects */
.venue-detail-page .verified-ribbon {
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

/* Rating Stars - Filled Animation */
.venue-detail-page [data-lucide="star"].fill-yellow-400 {
    animation: starPop 0.3s ease-out;
    animation-fill-mode: both;
}

.venue-detail-page [data-lucide="star"]:nth-child(1) { animation-delay: 0.05s; }
.venue-detail-page [data-lucide="star"]:nth-child(2) { animation-delay: 0.1s; }
.venue-detail-page [data-lucide="star"]:nth-child(3) { animation-delay: 0.15s; }
.venue-detail-page [data-lucide="star"]:nth-child(4) { animation-delay: 0.2s; }
.venue-detail-page [data-lucide="star"]:nth-child(5) { animation-delay: 0.25s; }

@keyframes starPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Price Display - Currency Conversion Highlight */
.venue-detail-page .price-display {
    position: relative;
    transition: color 0.2s ease;
}

.venue-detail-page .price-display:hover {
    color: #67e8f9;
}

/* Google Maps Link - Hover Effect */
.venue-sidebar-card a[href*="google.com/maps"] {
    position: relative;
    overflow: hidden;
}

.venue-sidebar-card a[href*="google.com/maps"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.venue-sidebar-card a[href*="google.com/maps"]:hover::before {
    transform: translateX(100%);
}

/* Tips Section - Icon Animation */
.venue-sidebar-card ul li {
    transition: all 0.2s ease;
}

.venue-sidebar-card ul li:hover {
    padding-left: 0.5rem;
}

.venue-sidebar-card ul li:hover [data-lucide] {
    color: #ef4444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .venue-detail-page .venue-section {
        animation-delay: 0s !important;
    }
    
    .venue-contact-hub .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venue-features .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .venue-detail-page h1 {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .venue-contact-hub .contact-btn {
        padding: 0.75rem;
    }
    
    .venue-contact-hub .contact-btn svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Reduce padding on mobile for more content */
    .venue-sidebar-card {
        padding: 1rem;
    }
    
    .venue-info-item:hover {
        padding-left: 0;
    }
}

/* Smart Sticky Sidebar - Prevents content overlap */
.sticky-sidebar {
    transition: position 0.2s ease, top 0.2s ease;
    will-change: position, top;
}

.sticky-sidebar[style*="position: sticky"] {
    align-self: flex-start;
}

/* Payment Methods - Enhanced Display */
.venue-info-item .flex-wrap {
    gap: 0.5rem;
}

.venue-info-item [class*="bg-"] {
    transition: all 0.2s ease;
    font-weight: 500;
}

.venue-info-item [class*="bg-"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card Brand Badges - Better Visual Hierarchy */
.venue-info-item [class*="bg-blue-600"],
.venue-info-item [class*="bg-red-500"],
.venue-info-item [class*="bg-cyan-600"],
.venue-info-item [class*="bg-amber-600"],
.venue-info-item [class*="bg-orange-500"],
.venue-info-item [class*="bg-blue-700"] {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.025em;
}

/* Currency Badges - Subtle but Clear */
.venue-info-item [class*="bg-green-500/10"] {
    border-width: 1px;
    border-style: solid;
}

/* Improved Spacing for Payment Section */
.venue-info-item > div > div:last-child {
    margin-top: 0.5rem;
}

/* Hero Section Payment Badges - Enhanced Visibility */
.venue-detail-page .bg-green-500\/10,
.venue-detail-page .bg-blue-500\/10 {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Payment Section - Better Mobile Layout */
@media (max-width: 640px) {
    .venue-info-item .flex-wrap {
        gap: 0.375rem;
    }
    
    .venue-info-item [class*="px-2.5"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.625rem;
    }
    
    .venue-info-item .ml-5 {
        margin-left: 1rem;
    }
}

/* Accessibility - Focus States */
.venue-info-item [class*="bg-"]:focus-visible {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Smooth Animations */
.venue-info-item {
    transition: all 0.3s ease;
}

.venue-info-item:hover {
    transform: translateX(2px);
}

/* Tips Section - Better Readability */
.venue-sidebar-card:last-child ul {
    line-height: 1.6;
}

.venue-sidebar-card:last-child ul li {
    padding: 0.5rem 0;
}

/* Mobile: Disable sticky on small screens */
@media (max-width: 1023px) {
    .sticky-sidebar {
        position: relative !important;
        top: auto !important;
    }
}

/* About This Venue - 300 chars max design */
.venue-description {
    transition: all 0.3s ease;
}

.venue-description:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Featured Image Below Content - Enhanced Styling */
.venue-featured-image figure {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-featured-image figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.venue-featured-image img {
    transition: transform 0.5s ease;
}

.venue-featured-image figure:hover img {
    transform: scale(1.02);
}

.venue-featured-image figcaption {
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .venue-featured-image figure {
        border-radius: 1rem;
    }
    
    .venue-featured-image figcaption {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}

/* Print Styles for Venue Detail */
@media print {
    .venue-detail-page .fixed,
    .venue-detail-page .favorite-btn,
    .venue-detail-page [onclick],
    .venue-detail-page iframe {
        display: none !important;
    }
    
    .venue-detail-page {
        background: white !important;
        color: black !important;
    }
    
    .venue-detail-page .venue-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ================================================
   CONTACT PILLS - Modern Compact Design
   ================================================ */

/* Base Contact Pill Style */
.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

.contact-pill:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.contact-pill:active {
    transform: scale(0.97);
}

/* LINE */
.contact-pill-line {
    background: linear-gradient(135deg, #06C755 0%, #05a849 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.25);
}

.contact-pill-line:hover {
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
}

/* WhatsApp */
.contact-pill-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.contact-pill-whatsapp:hover {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* Telegram */
.contact-pill-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.25);
}

.contact-pill-telegram:hover {
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.35);
}

/* WeChat */
.contact-pill-wechat {
    background: linear-gradient(135deg, #07C160 0%, #06a850 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.25);
}

.contact-pill-wechat:hover {
    box-shadow: 0 4px 16px rgba(7, 193, 96, 0.35);
}

/* KakaoTalk */
.contact-pill-kakao {
    background: linear-gradient(135deg, #FEE500 0%, #f5dc00 100%);
    color: #191919;
    box-shadow: 0 2px 8px rgba(254, 229, 0, 0.25);
}

.contact-pill-kakao:hover {
    box-shadow: 0 4px 16px rgba(254, 229, 0, 0.35);
}

/* Email */
.contact-pill-email {
    background: linear-gradient(135deg, #52525b 0%, #3f3f46 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(82, 82, 91, 0.25);
}

.contact-pill-email:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
}

/* Contact Section Compact Style */
.venue-contact-compact {
    padding: 0;
    margin-bottom: 1.5rem;
}

/* ================================================
   MOBILE STICKY BAR - Premium Modern Design
   ================================================ */

.mobile-sticky-bar {
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide when scrolling down, show when scrolling up */
.mobile-sticky-bar.hidden {
    transform: translateY(100%);
}

/* Primary CTA button animation */
.mobile-cta-primary {
    position: relative;
    overflow: hidden;
}

.mobile-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.mobile-cta-primary:hover::before {
    left: 100%;
}

/* Secondary contact icons */
.mobile-contact-icon {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Favorite button on mobile bar */
.mobile-fav-btn {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-fav-btn.is-favorited {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
    color: #ef4444 !important;
}

/* Safe area padding for notch devices */
.safe-area-bottom {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* Mobile sticky bar responsive */
@media (max-width: 640px) {
    .mobile-cta-primary {
        padding: 14px 16px;
    }
    
    .mobile-contact-icon,
    .mobile-fav-btn {
        width: 44px;
        height: 44px;
    }
}

/* Venue detail page bottom padding for mobile bar */
@media (max-width: 1023px) {
    .venue-detail-page {
        padding-bottom: 80px;
    }
}

/* ================================================
   QUICK INFO SIDEBAR - Modern Redesign
   ================================================ */

.venue-sidebar-card {
    border-radius: 16px;
    overflow: hidden;
}

/* Venue info items - cleaner look */
.venue-info-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(63, 63, 70, 0.3);
}

.venue-info-item:last-child {
    border-bottom: none;
}

/* Icon containers */
.venue-info-item .w-9 {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

/* ================================================
   RESPONSIVE CONTACT PILLS
   ================================================ */

@media (max-width: 640px) {
    .contact-pill {
        padding: 7px 12px;
        font-size: 12px;
    }
    
    .contact-pill svg,
    .contact-pill i {
        width: 14px;
        height: 14px;
    }
    
    .venue-contact-compact {
        margin-bottom: 1rem;
    }
}

/* ================================================
   CONTACT ICONS - Stylish Minimal Design
   ================================================ */

.venue-contact-stylish {
    margin-bottom: 1.5rem;
}

/* Contact Icon Button - Base */
.contact-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(39, 39, 42, 0.8);
    border: 1px solid rgba(63, 63, 70, 0.5);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.contact-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon-btn:active {
    transform: scale(0.95);
}

/* Disabled state */
.contact-icon-disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-icon-disabled svg,
.contact-icon-disabled i {
    color: #52525b !important;
}

/* Platform-specific active colors */
.contact-icon-line {
    color: #06C755;
    border-color: rgba(6, 199, 85, 0.3);
}
.contact-icon-line:hover {
    background: rgba(6, 199, 85, 0.15);
    border-color: rgba(6, 199, 85, 0.5);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.2);
}

.contact-icon-whatsapp {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}
.contact-icon-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.contact-icon-telegram {
    color: #0088cc;
    border-color: rgba(0, 136, 204, 0.3);
}
.contact-icon-telegram:hover {
    background: rgba(0, 136, 204, 0.15);
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.2);
}

.contact-icon-wechat {
    color: #07C160;
    border-color: rgba(7, 193, 96, 0.3);
}
.contact-icon-wechat:hover {
    background: rgba(7, 193, 96, 0.15);
    border-color: rgba(7, 193, 96, 0.5);
    box-shadow: 0 8px 25px rgba(7, 193, 96, 0.2);
}

.contact-icon-kakao {
    color: #FEE500;
    border-color: rgba(254, 229, 0, 0.3);
}
.contact-icon-kakao:hover {
    background: rgba(254, 229, 0, 0.15);
    border-color: rgba(254, 229, 0, 0.5);
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.2);
}

.contact-icon-email {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}
.contact-icon-email:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
}

/* Responsive */
@media (max-width: 640px) {
    .contact-icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .contact-icon-btn svg,
    .contact-icon-btn i {
        width: 18px;
        height: 18px;
    }
}

/* ================================================
   MOBILE FLOATING BAR - Icon Style
   ================================================ */

.mobile-sticky-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-sticky-icon svg {
    width: 26px;
    height: 26px;
}

.mobile-sticky-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.1);
}

.mobile-sticky-icon:active {
    transform: scale(0.95);
}

.mobile-sticky-icon.is-favorited {
    color: #ef4444 !important;
}

/* ================================================
   VENUE HERO - Better Image Display
   ================================================ */

.venue-hero-container {
    position: relative;
}

.venue-hero-desktop img,
.venue-hero-mobile img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Mobile Hero - Clean Image Display */
@media (max-width: 767px) {
    .venue-detail-page {
        padding-bottom: 70px;
    }
}

/* ================================================
   FOOTER - Modern Minimal Design
   ================================================ */

.site-footer {
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.2), transparent);
}

/* Footer Links */
.footer-link {
    color: #71717a;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffffff;
}

/* Footer responsive adjustments */
@media (max-width: 640px) {
    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ================================================
   BOOK NOW CTA BUTTON & MODAL
   Premium Night Entertainment Design
   ================================================ */

/* Floating BOOK NOW Button */
.book-now-floating-btn {
    position: relative;
    overflow: hidden;
}

.book-now-floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.book-now-floating-btn:hover::before {
    left: 100%;
}

.book-now-floating-btn:active {
    transform: scale(0.98);
}

/* Floating Bar */
.floating-book-bar {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Booking Modal */
.booking-modal-overlay {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.booking-modal-content {
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Booking Method Items */
.booking-method-item.available a,
.booking-method-item.available button {
    cursor: pointer;
}

.booking-method-item.unavailable {
    cursor: not-allowed;
}

.booking-method-item.available:hover {
    transform: translateY(-2px);
}

/* Smooth scroll for modal body */
.booking-modal-content > div:last-child {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.booking-modal-content > div:last-child::-webkit-scrollbar {
    width: 6px;
}

.booking-modal-content > div:last-child::-webkit-scrollbar-track {
    background: transparent;
}

.booking-modal-content > div:last-child::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.booking-modal-content > div:last-child::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .book-now-button {
        width: 100%;
        min-width: auto;
    }
    
    .booking-modal-content {
        max-width: calc(100% - 2rem);
        margin: 1rem;
    }
    
    .booking-method-item a,
    .booking-method-item button,
    .booking-method-item > div {
        padding: 1rem;
    }
}

