/* ==========================================================================
           1. VARIABLES, RESET & ACCESSIBILITY RESETS
           ========================================================================== */
        :root {
            --pink: #ff2d7a;
            --pink-text: #c2185b;
            --pink-light: #fff0f3;
            --focus-ring: #0b5fff;
            --pink-gradient: linear-gradient(135deg, #ff4d8d, #ff176b);
            --dark: #0e121d;
            --gray: #64748b;
            --light-bg: #f8fafc;
            --border-soft: rgba(15, 23, 42, 0.05);
            
            /* High-End Elevation Shadows */
            --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.02);
            --shadow-card: 0 12px 34px rgba(15, 23, 42, 0.03);
            --shadow-hover: 0 24px 48px rgba(15, 23, 42, 0.08);
            --shadow-button: 0 6px 20px rgba(255, 45, 122, 0.25);

            /* Dynamic System Status Tokens */
            --color-active: #ef4444;
            --color-ending: #f97316;
            --color-soon: #eab308;
            --color-later: #3b82f6;
            --color-tomorrow: #8b5cf6;
            --color-passed: #94a3b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #ffffff;
            color: var(--dark);
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            padding-bottom: 0;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible,
        [tabindex]:focus-visible {
            outline: 3px solid var(--focus-ring);
            outline-offset: 3px;
            box-shadow: 0 0 0 2px #ffffff;
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }

        .container {
            max-width: 1240px;
            margin: auto;
            padding: 0 24px;
        }

        /* ==========================================================================
           2. HEADER & NAVIGATION ARCHITECTURE
           ========================================================================== */
        header {
            padding: 24px 0;
            background: #ffffff;
            position: relative;
            z-index: 30;
        }

        .header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .logo-wrapper {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            position: relative;
            flex-shrink: 0;
        }

        .logo-sparkle {
            position: absolute;
            top: -14px;
            left: 26px;
            color: var(--pink);
            width: 16px;
            height: 16px;
        }

        .logo {
            font-family: 'Fredoka', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
        }

        .logo-subtext {
            font-family: 'Fredoka', sans-serif;
            font-size: 11px;
            color: var(--pink-text);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 2px;
            font-weight: 800;
            align-self: flex-end;
        }

        .nav {
            display: flex;
            gap: 24px;
        }

        .nav button {
            background: none;
            border: none;
            color: #475569;
            font-weight: 600;
            font-size: 14px;
            font-family: inherit;
            position: relative;
            padding: 6px 0;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .nav button:hover { color: var(--dark); }
        .nav button.active { color: var(--pink-text); font-weight: 700; }

        .nav button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--pink);
            border-radius: 2px;
        }

        .actions {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-shrink: 0;
        }

        .header-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            transition: all 0.2s ease;
            background: none;
            border: none;
            font-family: inherit;
            cursor: pointer;
        }

        .header-btn:hover { color: var(--pink-text); }

        /* ==========================================================================
           3. HERO INTERFACE COMPONENT
           ========================================================================== */
        .hero {
            position: relative;
            padding: 60px 0 100px;
            background: #ffffff;
        }

        .hero-bg-blur {
            position: absolute;
            top: -60px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: var(--pink-light);
            border-radius: 50%;
            filter: blur(90px);
            z-index: 1;
            opacity: 0.8;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
            gap: 48px;
        }

        .hero-left { max-width: 52%; }

        .hero-left h1 {
            font-family: 'Fredoka', sans-serif;
            font-size: 68px;
            font-weight: 700;
            line-height: 1.05;
            color: var(--dark);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero-left h1 span {
            font-family: 'Caveat', cursive;
            color: var(--pink);
            position: relative;
            display: inline-block;
            font-size: 72px;
            font-weight: 700;
            padding-right: 10px;
        }

        .hero-left h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: -6px;
            width: 108%;
            height: 12px;
            background: #fde047;
            z-index: -1;
            border-radius: 40% 10% 70% 20%;
            transform: rotate(-1.2deg);
        }

        .hero-left h1 span .heading-doodle {
            position: absolute;
            top: -6px;
            right: -24px;
            width: 26px;
            height: 26px;
            color: var(--pink);
        }

        .hero-left p {
            font-size: 18px;
            color: #475569;
            line-height: 1.6;
            max-width: 480px;
            position: relative;
            margin-top: 0;
        }

        .hero-left p span {
            color: var(--pink-text);
            font-weight: 700;
            background: linear-gradient(180deg, transparent 75%, #ffe4e8 75%);
        }

        .hero-left p .text-squiggle {
            position: absolute;
            bottom: -36px;
            left: 0;
            width: 42px;
            height: 14px;
            color: var(--pink);
            opacity: 0.8;
        }

        .hero-right {
            position: relative;
            width: 45%;
            display: flex;
            justify-content: flex-end;
        }

        .hero-img {
            width: 100%;
            max-width: 490px;
            height: auto;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-radius: 43% 57% 39% 61% / 47% 38% 62% 53%;
            box-shadow: 0 24px 50px rgba(15, 23, 42, 0.06);
            position: relative;
            z-index: 3;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .hero-right:hover .hero-img {
            transform: scale(1.02) rotate(1deg);
        }

        .green-splash-doodle {
            position: absolute;
            bottom: -25px;
            left: -30px;
            width: 100px;
            height: 100px;
            color: #10b981;
            opacity: 0.18;
            z-index: 1;
        }

        .badge {
            position: absolute;
            top: 20px;
            left: -20px;
            background: #ffcc00;
            width: 102px;
            height: 102px;
            border-radius: 58% 42% 55% 45% / 43% 56% 44% 57%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: rotate(-12deg);
            box-shadow: 0 8px 24px rgba(255, 204, 0, 0.25);
            z-index: 5;
            padding: 6px;
            border: 1px dashed rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        .hero-right:hover .badge {
            transform: rotate(-18deg) scale(1.08);
        }

        .badge svg {
            color: #0e121d;
            margin-bottom: 2px;
        }

        .badge-text {
            font-family: 'Fredoka', sans-serif;
            font-size: 11px;
            font-weight: 800;
            color: var(--dark);
            text-align: center;
            line-height: 1.15;
            letter-spacing: 0.2px;
        }

        .annotation {
            position: absolute;
            right: -10px;
            bottom: -45px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: rotate(8deg);
            z-index: 5;
            transition: transform 0.3s ease;
        }
        .hero-right:hover .annotation {
            transform: rotate(4deg) translateY(-5px);
        }

        .annotation-arrow {
            width: 42px;
            height: 42px;
            color: var(--pink);
            margin-bottom: -2px;
        }

        .annotation-text {
            font-family: 'Caveat', cursive;
            font-size: 22px;
            color: var(--pink-text);
            font-weight: 700;
            line-height: 1.05;
            text-align: center;
            letter-spacing: 0.5px;
        }

        /* ==========================================================================
           4. SYSTEM SEARCH COMPONENT & CUSTOM FILTERING DROPDOWNS
           ========================================================================== */
        .search {
            margin-top: -38px;
            position: sticky;
            top: 20px;
            z-index: 40;
            transition: transform 0.3s ease;
        }

        .search-box {
            background: #ffffff;
            padding: 10px 12px 10px 28px;
            border-radius: 100px;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
            display: flex;
            align-items: center;
            border: 1px solid rgba(15, 23, 42, 0.04);
            width: 100%;
            backdrop-filter: blur(20px);
        }

        .field {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 6px 20px;
            border-right: 1px solid rgba(15, 23, 42, 0.08);
            transition: background-color 0.2s ease;
        }

        .field:last-of-type { border-right: none; }

        .field:focus-within {
            background-color: rgba(255, 45, 122, 0.02);
            border-radius: 50px;
        }

        .field-icon {
            color: var(--pink);
            margin-right: 14px;
            display: flex;
            align-items: center;
        }

        .field-input-wrapper { flex: 1; position: relative; }

        .field label {
            display: block;
            font-size: 11px;
            color: var(--gray);
            margin-bottom: 3px;
            font-weight: 700;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }

        .field select {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            cursor: pointer;
            appearance: none;
            padding: 2px 24px 2px 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff2d7a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right center;
            transition: color 0.2s ease;
        }

        .field select:hover {
            color: var(--pink-text);
        }

        /* Active Filter Badge Strip Layout */
        .active-filters-bar {
            max-width: 1240px;
            margin: 32px auto 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            min-height: 36px;
        }


        .active-filters-bar:empty {
            display: none;
        }

        #dynamicGridPresentationWrapper .section {
            padding-top: 32px;
        }

        .filter-pill {
            background: var(--pink-light);
            color: var(--pink-text);
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 100px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(255, 45, 122, 0.1);
            cursor: pointer;
            animation: scaleInPill 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
            transition: all 0.2s ease;
        }

        .filter-pill:hover {
            background: var(--pink);
            color: #ffffff;
            transform: translateY(-1px);
        }

        .filter-pill .clear-icon {
            font-size: 14px;
            font-weight: 800;
            line-height: 1;
        }

        @keyframes scaleInPill {
            0% { transform: scale(0.85); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .search-box button {
            background: var(--pink-gradient);
            color: #ffffff;
            border: none;
            padding: 16px 32px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-button);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        .search-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 45, 122, 0.35);
        }
        .search-box button:active {
            transform: translateY(0);
        }

        /* ==========================================================================
           5. DEALS PRODUCT GRID & CARD LAYER
           ========================================================================== */
        .section { padding: 80px 0 40px; }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 36px;
        }

        .section-header h2 {
            font-family: 'Fredoka', sans-serif;
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .section-header h2::before {
            content: '✦';
            color: var(--pink);
            font-size: 26px;
            display: inline-block;
            transform: rotate(-10deg);
            line-height: 1;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
            gap: 32px;
        }

        .card {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(15, 23, 42, 0.03);
            box-shadow: var(--shadow-card);
            position: relative;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 100%;
            transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.35, 1), box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .card-image-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            background-color: var(--light-bg);
            overflow: hidden;
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .card:hover img {
            transform: scale(1.04);
        }

        .tag-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
            z-index: 2;
        }

        /* Fluid Premium Real-Time Badge Animation */
        .status-active_now { background-color: var(--color-active); }
        .status-ending_soon { 
            background-color: var(--color-ending); 
            animation: pulseUrgency 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; 
        }
        .status-starting_soon { background-color: var(--color-soon); color: #451a03; }
        .status-later_today { background-color: var(--color-later); }
        .status-tomorrow { background-color: var(--color-tomorrow); }
        .status-passed { background-color: var(--color-passed); }

        @keyframes pulseUrgency {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
            70% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
        }

        .favorite-toggle {
            position: absolute;
            top: 14px;
            right: 14px;
            background: #ffffff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            color: #cbd5e1;
            box-shadow: 0 6px 16px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
            z-index: 5;
            cursor: pointer;
        }

        .favorite-toggle:hover { 
            transform: scale(1.1); 
            color: var(--pink); 
        }
        .favorite-toggle.active {
            color: var(--pink);
        }
        .favorite-toggle.active svg { fill: var(--pink); stroke: var(--pink); }

        .card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .deal-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
            gap: 12px;
        }

        .card h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.3;
            letter-spacing: -0.2px;
        }

        .time-pill {
            background: #ecfdf5;
            color: #059669;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .meta {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 16px;
            font-weight: 500;
            line-height: 1.4;
        }

        .deal-perks {
            font-size: 14px;
            color: #92400e;
            background-color: #fffbeb;
            border: 1px dashed #fcd34d;
            padding: 12px 14px;
            border-radius: 12px;
            margin-bottom: 18px;
            font-weight: 500;
            line-height: 1.5;
            flex-grow: 1;
        }

        .schedule-footer-timeline {
            font-size: 12px;
            color: var(--gray);
            font-weight: 600;
            border-top: 1px solid #f1f5f9;
            padding-top: 12px;
            margin-top: auto;
        }

        /* ==========================================================================
           6. GOOGLE ADSENSE INTEGRATION STYLES
           ========================================================================== */
        .ad-card-wrapper {
            position: relative;
            min-width: 0;
            min-height: 360px;
            width: 100%;
            padding: 42px 12px 16px;
            overflow: hidden;
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 24px;
            background: #ffffff;
            box-shadow: var(--shadow-card);
        }

        .ad-badge {
            position: absolute;
            top: 14px;
            left: 16px;
            z-index: 2;
            padding: 4px 9px;
            border-radius: 999px;
            background: #f1f5f9;
            color: #64748b;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.12em;
            line-height: 1;
            text-transform: uppercase;
        }

        .ad-content-render {
            display: block;
            width: 100%;
            min-height: 290px;
        }

        /* ==========================================================================
           7. PREMIUM TRANSITION & PAGINATION WIDGET LAYER
           ========================================================================== */
        .view-all-container {
            text-align: center;
            max-width: 1240px;
            margin: 32px auto 80px auto;
            padding: 0 24px;
        }

        .pagination-card {
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.06);
            border-radius: 24px;
            padding: 32px 24px;
            box-shadow: var(--shadow-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .pagination-counter {
            font-size: 13px;
            color: var(--gray);
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .btn-view-all {
            background-color: var(--dark);
            color: #ffffff;
            border: none;
            border-radius: 100px;
            padding: 16px 40px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 14px rgba(14, 18, 29, 0.15);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-view-all svg {
            transition: transform 0.2s ease;
        }

        .btn-view-all:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(14, 18, 29, 0.25);
            background-color: #1e293b;
        }

        .btn-view-all:hover svg {
            transform: translateX(3px);
        }

        /* ==========================================================================
           8. BRAND VIBES LOOKUP LAYOUT (SWIPABLE ON MOBILE)
           ========================================================================== */
        .vibes-section { padding: 40px 0 100px 0; }

        .vibe-title-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .vibes-section h2 {
            font-family: 'Fredoka', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .vibe-title-squiggle {
            color: var(--pink);
            width: 32px;
            height: 12px;
            opacity: 0.6;
        }

        .vibes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 20px;
        }

        .vibe-card {
            text-decoration: none;
            height: 180px;
            border-radius: 24px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
        }

        .vibe-trendy { background-image: url('https://images.unsplash.com/photo-1574096079513-d8259312b785?auto=format&fit=crop&q=80&w=400'); }
        .vibe-rooftop { background-image: url('https://images.unsplash.com/photo-1531058020387-3be344559be6?auto=format&fit=crop&q=80&w=400'); }
        .vibe-livemusic { background-image: url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&q=80&w=400'); }
        .vibe-divebar { background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&q=80&w=400'); }
        .vibe-wine { background-image: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&q=80&w=400'); }
        .vibe-speakeasy { background-image: url('https://images.unsplash.com/photo-1543007630-9710e4a00a20?auto=format&fit=crop&q=80&w=400'); }

        .vibe-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(14, 18, 29, 0) 25%, rgba(14, 18, 29, 0.85) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            transition: background 0.3s ease;
        }

        .vibe-meta {
            transform: translateY(6px);
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            width: 100%;
        }

        .vibe-card h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 2px;
            letter-spacing: -0.2px;
        }

        .vibe-card p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .vibe-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(14, 18, 29, 0.15);
        }

        .vibe-card:hover .vibe-overlay {
            background: linear-gradient(180deg, rgba(14, 18, 29, 0.1) 15%, rgba(14, 18, 29, 0.9) 100%);
        }

        .vibe-card:hover .vibe-meta { transform: translateY(0); }
        .vibe-card:hover p { opacity: 1; transform: translateX(0); }

        /* ==========================================================================
           9. RESPONSIVE COMPONENT LAYER BREAKPOINTS
           ========================================================================== */
        @media (max-width: 1024px) {
            .hero-left h1 { font-size: 52px; }
            .hero-left h1 span { font-size: 56px; }
        }

        @media (max-width: 768px) {
            header { padding: 18px 0; }
            .nav { display: none; } 

            .mobile-utility-bar {
                display: flex !important;
                justify-content: space-around;
                background: rgba(255, 255, 255, 0.92);
                border-top: 1px solid #e2e8f0;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 100;
                padding: 12px 0 16px 0;
                box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
                backdrop-filter: blur(15px);
            }
            
            .hero { padding: 30px 0 60px; }
            .hero .container {
                flex-direction: column-reverse;
                text-align: center;
                gap: 36px;
            }

            .hero-left { max-width: 100%; }
            .hero-left p { margin: auto; font-size: 16px; }
            .hero-left p .text-squiggle { left: 50%; transform: translateX(-50%); }

            .hero-right {
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }
            .badge { left: 15px; width: 90px; height: 90px; }
            .annotation { right: 15px; }

            /* Mobile Stacked Search Block */
            .search { top: 12px; margin-top: -24px; }
            .search-box {
                flex-direction: column;
                border-radius: 24px;
                padding: 12px;
                gap: 8px;
            }

            .field {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid rgba(15, 23, 42, 0.06);
                padding: 10px 14px;
            }
            .field:last-of-type { border-bottom: none; margin-bottom: 4px; }

            .search-box button { width: 100%; justify-content: center; padding: 16px; border-radius: 16px; }
            
            .section { padding: 50px 0 30px; }
            #dynamicGridPresentationWrapper .section { padding-top: 24px; }
            
            .view-all-container { margin-bottom: 60px; }
            .pagination-card { padding: 24px 16px; }
            .btn-view-all { width: 100%; justify-content: center; }

            .vibes-section { padding-bottom: 120px; } 
            
            /* Native Touch Swiping for Vibes List on Mobile */
            .vibes {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                padding: 4px 24px 20px 24px;
                margin-left: -24px;
                margin-right: -24px;
                gap: 16px;
                scrollbar-width: none;
            }
            .vibes::-webkit-scrollbar { display: none; }
            .vibe-card {
                flex: 0 0 160px;
                height: 160px;
                scroll-snap-align: start;
            }
            .vibe-meta { transform: translateY(0); }
            .vibe-card p { opacity: 1; transform: translateX(0); }
        }

        .mobile-utility-bar { display: none; }
        .mobile-util-btn {
            text-decoration: none;
            color: var(--gray);
            font-size: 11px;
            font-weight: 700;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            transition: color 0.2s ease;
        }
        .mobile-util-btn svg { transition: transform 0.2s ease; }
        .mobile-util-btn:active svg { transform: scale(0.9); }
        .mobile-util-btn--active { color: var(--pink-text); }

/* Stabilization additions */
.status-future { background-color: var(--color-later); }
.status-open_today { background-color: #059669; }

.status-schedule_today { background-color: #475569; }
.status-confirm_schedule { background-color: #64748b; }
.vibe-card {
    border: none;
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.city-picker {
    min-width: min(320px, 36vw);
}

.city-select {
    display: block;
    width: 100%;
    max-width: 320px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: var(--dark);
    padding: 9px 30px 9px 12px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}
.results-error-message {
    max-width: 1192px;
    margin: 18px auto 0;
    padding: 12px 16px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 13px;
    font-weight: 700;
}
.results-error-message[hidden] {
    display: none;
}
.deals-loading { opacity: 0.55; pointer-events: none; }
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    color: var(--gray);
}
.card-site-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--pink-text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}
.card-site-link:hover { text-decoration: underline; }
.filter-pill { font-family: inherit; }
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.neighborhood-card {
    position: relative;
    min-height: 140px;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.neighborhood-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(14,18,29,.15); }
.neighborhood-card .vibe-overlay { z-index: 1; }
.neighborhood-card .vibe-meta { position: relative; z-index: 2; transform: none; }
.neighborhood-card h4 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.neighborhood-card p { color: rgba(255,255,255,.85); opacity: 1; transform: none; }
.mobile-utility-bar button,
.mobile-utility-bar a {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}
@media (max-width: 768px) {
    body { padding-bottom: 78px; }
    .actions { gap: 8px; min-width: 0; }
    .city-picker { min-width: 0; flex: 1; }
    .city-select { max-width: 190px; }
    #useMyLocationBtn { font-size: 0; }
    #useMyLocationBtn svg { width: 20px; height: 20px; }
    .search { position: relative; top: auto; }
    .neighborhoods-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 4px 24px 20px;
        margin-left: -24px;
        margin-right: -24px;
        gap: 16px;
        scrollbar-width: none;
    }
    .neighborhoods-grid::-webkit-scrollbar { display: none; }
    .neighborhood-card { flex: 0 0 290px; scroll-snap-align: start; }
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==========================================================================
   13. LAUNCH ESSENTIALS: ADS, FOOTER, SUPPORT PAGES
   ========================================================================== */
img {
    -webkit-user-drag: none;
}

.ad-section {
    padding: 26px 0 8px;
}

.display-ad-shell {
    min-height: 90px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 18px;
    background: #ffffff;
}

.ad-label {
    margin: 0 0 8px;
    text-align: center;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.house-ad {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
    padding: 20px 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
    color: var(--dark);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.house-ad:hover {
    transform: translateY(-2px);
    border-color: var(--pink);
}

.house-ad strong,
.house-ad small {
    display: block;
}

.house-ad small {
    margin-top: 4px;
    color: #64748b;
}

.site-footer {
    margin-top: 72px;
    padding: 48px 0 26px;
    background: #111827;
    color: #f8fafc;
}

.footer-grid,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.footer-grid {
    align-items: flex-start;
}

.footer-brand {
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.footer-grid p,
.footer-bottom p {
    color: #cbd5e1;
}

.footer-grid p {
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: #f8fafc;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    color: #f472b6;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid #334155;
    font-size: 13px;
}

.simple-header {
    padding: 22px 0;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}

.simple-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.simple-nav {
    display: flex;
    gap: 20px;
}

.simple-nav a {
    color: #334155;
    font-weight: 700;
    text-decoration: none;
}

.simple-nav a:hover {
    color: var(--pink-text);
}

.support-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.support-main,
.error-main {
    flex: 1;
    padding: 72px 0;
}

.support-container {
    max-width: 820px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--pink-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-main h1,
.error-main h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.06;
}

.support-intro {
    max-width: 760px;
    margin-top: 20px;
    color: #475569;
    font-size: 19px;
    line-height: 1.7;
}

.support-section {
    margin-top: 42px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
}

.support-section h2,
.contact-card h2 {
    margin-bottom: 14px;
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
}

.support-section p {
    margin: 10px 0;
    color: #475569;
    line-height: 1.7;
}

.primary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 18px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: var(--pink);
    color: #ffffff;
    font-family: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.primary-link-button:hover {
    filter: brightness(0.94);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 54px;
    align-items: start;
}

.contact-copy p:not(.eyebrow):not(.support-intro) {
    margin-top: 20px;
    color: #475569;
}

.contact-copy a {
    color: var(--pink-text);
    font-weight: 700;
}

.contact-card,
.error-card {
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    margin-top: 8px;
    color: #334155;
    font-weight: 800;
}

.contact-form label span {
    color: #94a3b8;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(255, 61, 141, 0.18);
    border-color: var(--pink);
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
}

.form-notice--success {
    background: #dcfce7;
    color: #166534;
}

.form-notice--error {
    background: #fee2e2;
    color: #991b1b;
}

.form-notice ul {
    padding-left: 20px;
}

.error-main {
    display: grid;
    place-items: center;
}

.error-card {
    max-width: 650px;
    text-align: center;
}

.error-code {
    color: var(--pink);
    font-family: 'Fredoka', sans-serif;
    font-size: 54px;
    font-weight: 800;
}

.error-card > p:not(.error-code) {
    margin-top: 14px;
    color: #64748b;
}

@media (max-width: 800px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid,
    .footer-bottom {
        flex-direction: column;
    }

    .simple-header-row {
        align-items: flex-start;
    }

    .simple-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 560px) {
    .house-ad,
    .simple-header-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .simple-nav {
        justify-content: flex-start;
    }

    .support-main,
    .error-main {
        padding: 48px 0;
    }

    .contact-card,
    .support-section,
    .error-card {
        padding: 22px;
    }

    .site-footer {
        padding-bottom: 90px;
    }
}
