
    :root { 
        --main-radius: 20px;
        --nav-icon-size: 22px; --nav-gap: .5rem; --nav-color: #666; --nav-hover: #0f75bc; --dropdown-bg: #fff; --ham-size: 30px; --ham-bar-w: 25px; --ham-bar-h: 3.1px; --ham-gap: 5px; --ham-color: #0f74bd; --drawer-w: min(78vw, 360px); --reveal-dur: 600ms; --reveal-ease: cubic-bezier(.2, .65, .2, 1); --reveal-stagger: 80ms; --poster-size: 160px; --hdr-h: 64px; --cat-name-size: 1.05rem; --cat-count-size: 0.9rem; 
    }

    html { overscroll-behavior: none; scroll-behavior: smooth; }
    body { margin: 0 !important; }
    body.nav-open { overflow: hidden; height: 100dvh; touch-action: none; overscroll-behavior: contain; }
    body.nav-open::before { opacity: 1; pointer-events: auto; }

    @keyframes cat-skel { to { transform: translateX(100%); } }
    @keyframes mouse-wheel { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
    @keyframes pulseLoc { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
    @keyframes live-pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes glassSlideUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes alphaEntrance { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes locPulse { from { transform: scale(1); } to { transform: scale(1.15); } }
    @keyframes modalPop { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

    #eb-annc { position: fixed; inset: 12px 12px auto 12px; z-index: 99999; display: none; pointer-events: none; }
    #eb-annc.show { display: block; }
    #eb-annc .eb-annc-card { pointer-events: auto; max-width: min(640px, 92vw); margin: 0 auto; background: #ffffff; border: 1px solid #e6e8ee; border-radius: var(--main-radius); box-shadow: 0 18px 48px rgba(15, 116, 189, .12); padding: 14px 16px; display: grid; grid-template-columns: 1fr auto; gap: 10px; transform: translateY(-8px); opacity: 0; transition: transform 260ms cubic-bezier(.22, 1, .36, 1), opacity 260ms cubic-bezier(.22, 1, .36, 1); }
    #eb-annc.show .eb-annc-card { transform: translateY(0); opacity: 1; }
    #eb-annc .eb-annc-close { appearance: none; border: 0; background: #f3f6fb; color: #1f2a37; width: 34px; height: 34px; border-radius: var(--main-radius); font-size: 20px; line-height: 1; cursor: pointer; }
    #eb-annc .eb-annc-close:hover { background: #eaf0f8; }
    #eb-annc .eb-annc-content { display: grid; gap: 4px; }
    #eb-annc .eb-annc-eyebrow { font: 700 12px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0f74bd; letter-spacing: .4px; text-transform: uppercase; }
    #eb-annc .eb-annc-text { font: 600 16px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0b1020; }
    #eb-annc .eb-annc-date { font: 400 12px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #6b7280; }

    header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 1000; background: transparent !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; transition: background-color .25s ease, box-shadow .25s ease; }
    header nav { display: flex; align-items: center; gap: .1rem !important; margin: 0; }
    .nav-link, .subnav-link { display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .5rem; color: var(--nav-color); text-decoration: none; border-radius: .55rem; line-height: 1; transition: color .2s ease, background-color .2s ease, transform .15s ease; }
    .nav-link:hover, .subnav-link:hover { color: var(--nav-hover); background: none; }
    .nav-icon { width: var(--nav-icon-size); height: var(--nav-icon-size); display: inline-block; flex: 0 0 var(--nav-icon-size); vertical-align: middle; vector-effect: non-scaling-stroke; }
    .nav-link .nav-icon path[fill]:not([fill="none"]), .nav-link svg path[fill]:not([fill="none"]) { stroke: none !important; }
    .nav-link .nav-icon, .nav-link svg { stroke-width: 1.5px !important; }
    .nav-item { position: relative; }
    .has-subnav .subnav { position: absolute; top: 100%; right: 0; min-width: 180px; padding: .4rem; background: var(--dropdown-bg); border: 1px solid rgba(0, 0, 0, .08); border-radius: .6rem; display: none; z-index: 1000; }
    .has-subnav:hover .subnav, .has-subnav:focus-within .subnav { display: block; }
    .main-nav { display: none !important; }
    .hamburger { appearance: none; -webkit-appearance: none; background: transparent !important; border: 0 !important; border-radius: 0 !important; margin: 10px 0 0 0 !important; padding: 0 !important; width: var(--ham-size); height: var(--ham-size); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; position: relative; z-index: 2147483647 !important; -webkit-tap-highlight-color: transparent !important; outline: none !important; box-shadow: none !important; top: -5px !important; }
    .hamburger span { position: absolute; left: 50%; width: var(--ham-bar-w); height: var(--ham-bar-h); background: var(--ham-color); border-radius: 999px; transform: translateX(-50%); transition: transform .22s ease, opacity .18s ease, top .22s ease, background-color .2s; will-change: transform, opacity, top; }
    .hamburger span:nth-child(1) { top: calc(54% - var(--ham-gap) - var(--ham-bar-h)); }
    .hamburger span:nth-child(2) { top: 50%; transform: translate(-50%, 50%); }
    .hamburger span:nth-child(3) { top: calc(-18% + var(--ham-gap)); }
    .hamburger.is-open span:nth-child(1) { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scaleX(.5); }
    .hamburger.is-open span:nth-child(3) { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }
    .hamburger:focus, .hamburger:focus-visible, .hamburger:active, .hamburger:hover { outline: none !important; box-shadow: none !important; background: transparent !important; }

    button, .btn, a.button { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; border: 1px solid transparent; transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease; transform: translateZ(0); will-change: transform, box-shadow; contain: paint; text-decoration: none; cursor: pointer; padding: 0 20px; height: 48px; border-radius: var(--main-radius); font-weight: 600; }
    button:hover, .btn:hover, a.button:hover { background-color: #0f75bc !important; color: #ffffff !important; box-shadow: 0 6px 14px rgba(0, 86, 210, 0.3) !important; transform: translateY(-2px); text-decoration: none !important; }
    .btn.secondary { background: #ffffff !important; color: #0f75bc !important; border: 1px solid #e5e7eb !important; }
    .btn.secondary:hover { background-color: none !important; color: #0f75bc !important; border-color: #0f75bc !important; box-shadow: 0 6px 14px rgba(0, 86, 210, 0.3) !important; transform: translateY(-2px); }
    #btnsecondary { background: #ffffff !important; color: #0b1020; border-color: #e5e7eb !important; }

    .section > .container > .card:has(.btn.primary, .btnsecondary), .section > .container > .card:has(.btn.primary, o.btnsecondary), #pricing aside.card, .event-card:has(.btn:hover, .price-tag:hover, a.button:hover, button:hover), .card:has(.btn:hover, a.button:hover, button:hover) { transform: none !important; box-shadow: 0 1px 2px rgba(0, 0, 0, .04) !important; transition: box-shadow .18s ease !important; will-change: auto !important; }
    .section > .container > .card:has(.btn.primary, .btnsecondary):hover, .section > .container > .card:has(.btn.primary, o.btnsecondary):hover, #pricing aside.card:hover { transform: none !important; box-shadow: 0 3px 10px rgba(0, 0, 0, .06) !important; }

    #pricing .card .chip { margin-top: 10px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 999px; border: 1px solid #e5e7eb; transition: background-color .2s ease, color .2s ease; will-change: auto; }
    #pricing .card .chip:hover { background: #0f75bc; color: #fff; transform: none !important; box-shadow: none !important; }

    .events-grid, .glass-grid { display: flex !important; overflow-x: auto !important; overflow-y: hidden !important; gap: 1rem !important; padding-bottom: 1rem !important; scroll-behavior: smooth !important; scroll-snap-type: x mandatory; scrollbar-width: none !important; -ms-overflow-style: none !important; }
    .events-grid::-webkit-scrollbar, .glass-grid::-webkit-scrollbar { display: none !important; }

    .event-card { 
        flex: 0 0 auto; 
        min-width: 300px; 
        max-width: 350px; 
        scroll-snap-align: start; 
        display: flex; 
        flex-direction: column; 
        background: #fff; 
        border: none !important; 
        padding: 5px !important; 
        border-radius: var(--main-radius); 
        overflow: hidden; 
        height: 100%; 
        box-shadow: 0 1px 2px rgba(0, 0, 0, .04); 
        transition: transform .18s ease, box-shadow .18s ease; 
    }    

    #events-grid .event-card { min-width: 350px !important; max-width: 400px !important; height: 100%; }
    .event-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, .08); }
    
    .event-card .poster { position: relative !important; width: 100% !important; aspect-ratio: 1 / 1 !important; overflow: hidden !important; border-radius: var(--main-radius) var(--main-radius) 0 0; }
    .event-card .poster img, .event-card .poster .event-image, .upcoming-grid .event-card .poster img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
    .event-card .poster::before { content: "" !important; display: block !important; padding-top: 100% !important; }
    .event-card .poster.skeleton { background: #f2f2f2 !important; aspect-ratio: 1 / 1 !important; }
    .event-card .event-content { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
    .event-card h4 { margin: 0; font-size: 1.05rem; line-height: 1.25; }
    .event-card .muted { color: #6b7280; font-size: .95rem; }
    .event-card .description { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .event-card .description.clamp-3.muted { display: none !important; }
    .event-card .price-tag, .upcoming-grid .price-tag { align-self: flex-start; margin-top: auto; text-decoration: none; border: 1px solid #e5e7eb; padding: 6px 10px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: #0b1020; background: #fff; transition: all 0.2s ease; }
    .event-card .price-tag:hover, .upcoming-grid .price-tag:hover { background: #0f75bc !important; color: #fff !important; border-color: #0f75bc; border: none !important; }

    .upcoming-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 1.25rem; width: 100% !important; margin: 30px auto 0 !important; }
    
    .upcoming-grid .event-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e5e7eb; border-radius: var(--main-radius) !important; overflow: hidden; height: 100%; box-shadow: 0 1px 2px rgba(0, 0, 0, .04); transition: transform .18s ease, box-shadow .18s ease; min-width: 0 !important; max-width: none !important; margin: 0 !important; flex: none !important; cursor: pointer; min-height: 0 !important; }
    .upcoming-grid .event-card:hover { transform: translateY(-2px); box-shadow: none; }
    .upcoming-grid .event-card .poster { width: 100% !important; aspect-ratio: 16 / 9 !important; overflow: hidden !important; border-radius: var(--main-radius) var(--main-radius) 0 0; height: auto !important; }
    .upcoming-grid .event-card:hover .poster img { transform: scale(1.05); transition: transform 0.5s ease; }
    .upcoming-grid .event-content { display: flex; flex-direction: column; gap: 60px; }

    .cat-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    #category-grid.cat-grid { display: grid; gap: 16px; justify-content: center; }

    .cat-card { position: relative; display: block; width: 100%; aspect-ratio: 1 / 1; border-radius: var(--main-radius); overflow: hidden; text-decoration: none; color: #fff; background-color: #0f75bc; background-image: var(--cat-bg, linear-gradient(135deg, #4f46e5, #0ea5e9)); background-size: cover; background-position: center; box-shadow: 0 1px 2px rgba(0, 0, 0, .05); transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; }
    .cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .45) 100%); pointer-events: none; }
    .cat-card:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, .18); filter: saturate(1.05); }
    .cat-card .cat-name { position: absolute; left: 12px; right: 12px; bottom: 36px; font: 700 1rem/1.2 "Space Grotesk", system-ui, sans-serif; text-shadow: 0 2px 12px rgba(0, 0, 0, .45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.8rem !important; line-height: 1.2 !important; font-weight: 700 !important; margin-bottom: 5px !important; }
    .cat-card .cat-count { position: absolute; left: 12px; bottom: 12px; font: 600 .9rem/1 "Space Grotesk", system-ui, sans-serif; padding: 6px 10px; background: rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; font-size: var(--cat-count-size) !important; line-height: 1 !important; font-weight: 600 !important; }
    .cat-card.skeleton { background: linear-gradient(90deg, #eef2ff, #f8fafc 40%, #eef2ff 80%); background-size: 200% 100%; animation: cat-skel 1.1s linear infinite; }

    .artist-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

    .artist-card { --avatar-size: 96px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 8px; text-decoration: none; background: #fff; border: 1px solid #e5e7eb; border-radius: var(--main-radius); padding: 14px 10px; box-shadow: 0 1px 2px rgba(0, 0, 0, .04); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; color: #0b1020; }
    .artist-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .08); border-color: #dbe0e6; }
    .artist-card .avatar { width: var(--avatar-size); height: var(--avatar-size); border-radius: 50%; background: linear-gradient(135deg, #eef2ff, #f8fafc); overflow: hidden; display: block; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06); }
    .artist-card .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
    .artist-card .name { font: 700 0.95rem/1.2 "Space Grotesk", system-ui, sans-serif; text-align: center; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .artist-card .count { font: 600 0.85rem/1 "Space Grotesk", system-ui, sans-serif; color: #6b7280; }

    #top-artists-grid { display: flex !important; overflow-x: auto !important; gap: 24px !important; padding: 10px 4px 24px 4px !important; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; justify-content: flex-start; margin-block: 8px 4px; }
    #top-artists-grid::-webkit-scrollbar { display: none; }
    #top-artists-grid .artist-card { flex: 0 0 auto !important; width: 150px !important; scroll-snap-align: start; background: transparent; border: none; box-shadow: none; padding: 0; margin: 0; display: flex; flex-direction: column; align-items: center; text-decoration: none; color: inherit; transition: transform 0.2s ease; }
    #top-artists-grid .artist-card:hover { transform: translateY(-5px); }
    #top-artists-grid .artist-card .avatar { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin-bottom: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); border: 2px solid #fff; transition: border-color 0.2s ease; background: #e5e7eb; }
    #top-artists-grid .artist-card:hover .avatar { border-color: #0f75bc; }
    #top-artists-grid .artist-card .name { font-size: 1rem; font-weight: 700; text-align: center; line-height: 1.2; }
    #top-artists-grid .artist-card .count { font-size: 0.85rem; color: #6b7280; }

    .mobile-app-cta { display: none; }
    .mobile-app-cta .app-buttons { display: flex; gap: 12px; align-items: stretch; }

    .mobile-app-cta .app-button { flex: 1 1 0; display: flex; align-items: center; justify-content: center; gap: 10px; height: 64px; padding: 0 20px; border: 1px solid #e5e7eb; border-radius: var(--main-radius); text-decoration: none; font-weight: 600; line-height: 1; font-size: 18px; }
    .mobile-app-cta .app-button .app-icon { width: 32px; height: 50px; object-fit: contain; flex: 0 0 auto; }
    .mobile-app-cta .app-button span { white-space: nowrap; }

    #app-carousel { display: block; max-width: 1200px !important; margin-inline: auto !important; align-items: center !important; align-self: auto !important; align-content: center !important; margin: auto !important; }
    #app-carousel .phone { margin-inline: auto; }

    .section-brands { padding: 24px 0; background: #fafafa; text-align: center; overflow: hidden; border-radius: var(--main-radius); }
    .brand-heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; margin: 0 0 16px 0; font-weight: 600; }
    .brand-track { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
    .brand-logo { --logo-h: 40px; border-radius: 20px !important; height: var(--logo-h); width: auto; max-width: 120px; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: all 0.3s ease; cursor: pointer; }
    .brand-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }
    .brand-logo-uniform { width: 80px; height: 80px; object-fit: contain; border-radius: 0; padding: 5px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); }
    #brand-logos { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; align-items: center; margin-top: 20px; }

    .promo-strip { background: #0f75bc; color: #fff; border-radius: var(--main-radius); padding: 14px 16px; display: flex; align-items: center; gap: 12px; width: min(1100px, 94vw); margin: 12px auto; }
    .promo-text { flex: 1 1 auto; min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; line-height: 1.3; font-size: 0.95rem; }
    .promo-link { color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
    .promo-link:hover, .promo-link:focus { text-decoration: none; }
    .promo-logo { flex: 0 0 auto; width: 120px; height: auto; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .25)); border-radius: 0 !important; }

    [data-reveal] { opacity: 0; filter: blur(10px); transform: translate3d(0, 30px, 0) scale(0.98); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform, filter; }
    [data-reveal].in { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); pointer-events: auto; }
    [data-stagger] > * { transition-delay: calc(var(--i) * 100ms); }
    [data-reveal="fade-in"] { transform: translate3d(0, 6px, 0) scale(.995); }
    [data-reveal="fade-up"] { transform: translate3d(0, 24px, 0); }
    [data-reveal="slide-up"] { transform: translate3d(0, 28px, 0); }
    [data-reveal="zoom-in"] { transform: scale(.96); transform-origin: 50% 60%; }
    [data-stagger] > *[data-reveal], [data-stagger] > * { --i: 0; transition-delay: calc(var(--reveal-delay, 0ms) + var(--i) * var(--reveal-stagger)); }

    #back-to-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; background: #0f75bc; color: white; border: none; border-radius: 50%; box-shadow: 0 8px 20px rgba(0, 86, 210, 0.3); cursor: pointer; z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1); }
    #back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    #back-to-top:hover { background: #0044a6; transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 24px rgba(0, 86, 210, 0.4); }
    #back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    .progress-wrap { position: fixed; right: 24px; bottom: 24px; height: 46px; width: 46px; cursor: pointer; display: block; border-radius: 50px; box-shadow: inset 0 0 0 2px rgba(0, 86, 210, 0.1); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 200ms linear; }
    .progress-wrap.active-progress { opacity: 1; visibility: visible; transform: translateY(0); }
    .progress-wrap::after { position: absolute; content: '\f062'; font-family: "Font Awesome 6 Free"; font-weight: 900; text-align: center; line-height: 46px; font-size: 16px; color: #0f75bc; left: 0; top: 0; height: 46px; width: 46px; transition: all 200ms linear; }
    .progress-wrap:hover::after { opacity: 0; }
    .progress-wrap:hover::before { opacity: 1; }
    .progress-wrap::before { position: absolute; content: 'Top'; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px; text-align: center; line-height: 46px; color: #0f75bc; left: 0; top: 0; height: 46px; width: 46px; opacity: 0; transition: all 200ms linear; }
    .progress-wrap svg path { fill: none; stroke: #0f75bc; stroke-width: 4; box-sizing: border-box; transition: all 200ms linear; }

    .scroll-down-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; opacity: 0.8; transition: opacity 0.3s ease; }
    body.scrolled .scroll-down-indicator { opacity: 0; pointer-events: none; }
    .mouse { width: 26px; height: 42px; border: 2px solid #fff; border-radius: 15px; position: relative; margin-bottom: 6px; }
    .wheel { width: 4px; height: 4px; background: #fff; border-radius: 50%; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: mouse-wheel 1.5s infinite; }

    .loc-btn { background: transparent; border: none; color: #666; cursor: pointer; padding: 0 8px; font-size: 1.1rem; transition: color 0.2s ease; display: flex; align-items: center; } .loc-btn:hover { background-color: none !important; color: none; } .loc-btn.active { color: #0f75bc; animation: pulseLoc 2s infinite; }
    .eb-r .dist { font-size: 0.75rem; color: #0f75bc; font-weight: 600; margin-left: auto; white-space: nowrap; background: #eff6ff; padding: 2px 6px; border-radius: 4px; }
    .eb-r mark { background: rgba(255, 255, 0, 0.3); color: inherit; padding: 0; border-radius: 2px; }
    .eb-history-header { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; font-size: 0.75rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; border-bottom: 1px solid rgba(0, 0, 0, 0.05); background: rgba(255, 255, 255, 0.2); }
    .eb-clear-history, #ebClearHist { background: #f3f4f6; border: none; color: #ef4444; cursor: pointer; font-size: 0.65rem; padding: 4px 10px; border-radius: 6px; font-weight: 700; height: auto; text-decoration: underline; transition: all 0.2s ease; }
    #ebClearHist { text-decoration: none; }
    #ebClearHist:hover { background: #fee2e2; transform: none !important; box-shadow: none !important; }
    .eb-r.history-item .thumb { color: #9ca3af; background: #f3f4f6; font-size: 0.9rem; display: grid; place-items: center; }

    .hero-countdown { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; gap: 12px; z-index: 20; pointer-events: none; }
    .count-box { flex: 1; background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--main-radius); padding: 12px 8px; text-align: center; color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
    .count-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; line-height: 1; margin-bottom: 2px; font-variant-numeric: tabular-nums; }
    .count-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
    .upcoming-grid .event-card:not(:first-child) .hero-countdown { display: none !important; }

    .tag-events-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; width: 100%; }
    .tag-events-grid .event-card { height: 100%; display: flex; flex-direction: column; min-width: 0 !important; max-width: none !important; width: 100% !important; }
    #dynamic-tag-sections section, #dynamic-tag-sections .section-alt, #dynamic-tag-sections [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; visibility: visible !important; }
    #tag-explorer { background-color: #f9fafb; padding-top: 30px; padding-bottom: 40px; }
    .tag-scroller { display: flex; gap: 24px; overflow-x: auto; padding: 10px 4px 20px 4px; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; } .tag-scroller::-webkit-scrollbar { display: none; }
    .tag-item { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; min-width: 100px; transition: transform 0.2s ease; }
    .tag-item:hover { transform: translateY(-4px); }
    .tag-item.active .tag-circle { background: #0f75bc; color: #fff; box-shadow: 0 10px 20px rgba(0, 86, 210, 0.3); border-color: #0f75bc; } .tag-item.active .tag-label { color: #0f75bc; font-weight: 700; }
    .tag-circle { width: 100px; height: 100px; border-radius: 50%; background: #fff; border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.06); transition: all 0.2s ease; }
    .tag-circle svg { width: 42px; height: 42px; fill: currentColor; }
    .tag-label { font-size: 0.95rem; color: #4b5563; font-weight: 500; text-align: center; white-space: nowrap; }
    .tag-results-container { margin-top: 30px; min-height: 200px; opacity: 0; transform: translateY(10px); transition: all 0.4s ease; } .tag-results-container.visible { opacity: 1; transform: translateY(0); }
    .tag-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding: 0 4px; }
    
    .section-alt { border-radius: var(--main-radius) !important; }

    #ebSearchInput::-webkit-search-decoration, #ebSearchInput::-webkit-search-cancel-button, #ebSearchInput::-webkit-search-results-button, #ebSearchInput::-webkit-search-results-decoration, #ebSearchInput::-ms-clear, #ebSearchInput::-ms-reveal { -webkit-appearance: none !important; appearance: none !important; display: none !important; width: 0; height: 0; }
    .live-pulse-badge { background: #fee2e2; color: #ef4444; font-size: 0.75rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.5px; border: 1px solid #fecaca; }
    .card-live-badge { position: absolute; top: 10px; left: 10px; background: #ef4444; color: white; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; gap: 6px; z-index: 10; box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4); text-transform: uppercase; }
    .live-dot { width: 8px; height: 8px; background: white; border-radius: 50%; animation: live-pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
    .card-soon-badge { position: absolute; top: 10px; left: 10px; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(4px); color: white; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; z-index: 10; display: flex; align-items: center; gap: 6px; } .card-soon-badge i { color: #60a5fa; }

    .section-stats { padding: 40px 0; background: #fff; }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; align-items: center; }
    .stat-item { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 10px; }
    .stat-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(0, 86, 210, 0.1); color: #0f75bc; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
    .stat-info { display: flex; flex-direction: column; }
    .stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; line-height: 1; color: #0b1020; margin: 0; font-variant-numeric: tabular-nums; }
    .stat-label { font-size: 0.95rem; color: #6b7280; margin: 4px 0 0 0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
    .dots-container { display: flex; justify-content: center; gap: 8px; margin-top: 30px; padding-bottom: 5px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background-color: #e5e7eb; cursor: pointer; transition: all 0.3s ease; }
    .dot.active { background-color: #0f75bc; width: 24px; border-radius: 4px; }

    .glass-grid { padding-bottom: 30px; padding-left: 10px; padding-right: 10px; align-items: stretch; }
    
    .glass-card { flex: 0 0 auto; width: 300px; max-width: 85vw; height: 420px; scroll-snap-align: center; position: relative; display: flex; flex-direction: column; padding: 0 !important; background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: var(--main-radius); box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease; cursor: pointer; overflow: hidden; }
    .glass-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.85); box-shadow: 0 20px 40px 0 rgba(31, 38, 135, 0.15); border-color: #ffffff; }
    
    .glass-card .glass-poster { width: 100%; height: 200px; margin: 0; padding: 0; display: block; position: relative; border-bottom: 1px solid rgba(255,255,255,0.6); border-radius: var(--main-radius) var(--main-radius) 0 0 !important; -webkit-border-radius: var(--main-radius) var(--main-radius) 0 0 !important; overflow: hidden; }
    .glass-card .glass-poster img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; border-radius: var(--main-radius) var(--main-radius) 0 0 !important; -webkit-border-radius: var(--main-radius) var(--main-radius) 0 0 !important; transition: transform 0.6s ease; }
    .glass-card:hover .glass-poster img { transform: scale(1.05); }
    .glass-card .glass-content { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 6px; border-radius: 0 0 var(--main-radius) var(--main-radius) !important; -webkit-border-radius: 0 0 var(--main-radius) var(--main-radius) !important; }
    .glass-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: #111827; margin: 0; line-height: 1.2; }
    .glass-card .glass-desc { font-size: 0.9rem; color: #6b7280; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 4px; line-height: 1.5; }
    .glass-card .glass-footer { margin-top: auto; padding-top: 14px; display: flex; justify-content: space-between; align-items: center; }
    .glass-card .lbl { font-size: 0.85rem; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.5px; }
    .glass-card .prc { font-size: 1.1rem; font-weight: 700; color: #0f75bc; } .glass-card .prc.sold-out { color: #ef4444; }

    .hero-content { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
    .hero-content h1, .hero-content p { margin: 0; width: 100%; line-height: 1.8 !important; }
    .hero-content h1 > span, .hero-content p > span { background: rgba(3, 7, 18, 0.1); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); color: #ffffff; display: inline; -webkit-box-decoration-break: clone; box-decoration-break: clone; padding: 8px 18px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 30px rgba(0, 86, 210, 0.1); pointer-events: auto; }
    .hero-content h1 span span { background: none !important; padding: 0 !important; box-shadow: none !important; border: none !important; backdrop-filter: none !important; }
    .hero-content h1 > span { font-weight: 800; font-size: clamp(26px, 5vw, 48px); letter-spacing: -0.5px; line-height: 1 !important; }
    .hero-content p > span { font-weight: 500; font-size: clamp(1rem, 2vw, 1.2rem); background: rgba(3, 7, 18, 0.4); line-height: 2.0; }
    .hero-content .btn { pointer-events: auto; }

    .hero-wrap { position: relative; height: 100vh; width: 100%; overflow: visible; margin-top: 0 !important; }
    .hero { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; z-index: 1; padding-top: 0 !important; }
    .hero-slide { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; background-attachment: scroll; background-repeat: no-repeat !important; will-change: transform; }

    #site-search-bar, .section-alt { position: relative; z-index: 20; background: #ffffff; }
    .subbar { padding: 40px 0 0 0; position: relative; z-index: 900 !important; background: transparent !important; }
    .eb-search-container { max-width: 900px; width: 95%; margin: 0 auto; padding: 0 15px; position: relative; }
    .eb-search-wrapper { display: flex; align-items: center; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: var(--main-radius); padding: 8px 16px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; box-sizing: border-box; }
    .eb-search-wrapper:focus-within { background: rgba(255, 255, 255, 0.9); box-shadow: 0 12px 40px rgba(0, 86, 210, 0.12); border-color: rgba(0, 86, 210, 0.3); }
    .search-icon-svg { width: 22px; height: 22px; color: #6b7280; margin-right: 12px; }
    #ebSearchInput { flex: 1; border: none !important; background: transparent !important; padding: 12px 0; padding-right: 30px; font-size: 1.05rem; font-weight: 500; color: #111827; outline: none !important; }
    #ebSearchInput::placeholder { color: #9ca3af; }
    .loc-btn-glass { background: transparent; border: none; padding: 0; margin: 0 5px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: #6b7280; cursor: pointer; transition: all 0.2s ease; border-radius: 8px; }
    .loc-btn-glass:hover { color: #0f75bc; background: rgba(0, 86, 210, 0.05); }
    .loc-btn-glass svg { width: 18px; height: 18px; }
    .loc-btn-glass.loading { animation: locPulse 1s infinite alternate; opacity: 0.6; }
    .loc-btn-glass.active { color: #0f75bc; }

    .glass-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; width: 100%; z-index: 10000 !important; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(30px) saturate(180%); -webkit-backdrop-filter: blur(30px) saturate(180%); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: var(--main-radius); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); max-height: 450px; overflow-y: auto; overflow-x: hidden; display: none; box-sizing: border-box; transform: translateZ(0); }
    .glass-results.is-visible { display: block !important; animation: alphaEntrance 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
    .glass-results::-webkit-scrollbar { width: 4px; } .glass-results::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.1); border-radius: 10px; }
    .eb-r { display: flex; align-items: center; padding: 12px 16px; cursor: pointer; background: transparent; transition: background 0.2s ease; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
    .eb-r:last-child { border: none; }
    .eb-r:hover { background: rgba(255, 255, 255, 0.4); }
    .eb-r .thumb { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; background: #f3f4f6; margin-right: 15px; display: flex; align-items: center; justify-content: center; }
    .eb-r .thumb img { width: 100%; height: 100%; object-fit: cover; }
    .eb-r .meta .t { font-weight: 700; color: #0b1020; font-size: 1rem; }
    .eb-r .meta .s { font-size: 0.85rem; color: #6b7280; margin-top: 2px; }
    .search-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(4px); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    body.search-active .search-overlay { opacity: 1; pointer-events: auto; }
    #ebSearchResults:not([hidden]) { display: block !important; z-index: 999999 !important; background: rgba(255, 255, 255, 0.98); }
    #ebSearchResults { overflow: hidden !important; word-wrap: break-word !important; }
    #ebSearchResults .search-result-item { max-width: 100% !important; box-sizing: border-box !important; }
    #ebSearchResults .search-result-item .result-title, #ebSearchResults .search-result-item .result-details { white-space: normal !important; overflow-wrap: break-word !important; }
    mark { background: #0f75bc33; color: #0f75bc; font-weight: 700; padding: 0 2px; }
    .clear-glass { background: transparent; border: none; padding: 0; margin: 0 10px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: #6b7280; cursor: pointer; transition: color 0.2s ease, transform 0.2s ease; }
    .clear-glass:hover { color: #ef4444; transform: scale(1.1); }
    .clear-glass[hidden] { display: none !important; }

    .loc-modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px); z-index: 20000; display: none; align-items: center; justify-content: center; padding: 20px; }
    .loc-modal-overlay.show { display: flex; }
    .loc-modal-card { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: var(--main-radius); padding: 32px; max-width: 400px; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,0.2); animation: modalPop 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.27); }
    .loc-modal-icon { width: 60px; height: 60px; background: rgba(0, 86, 210, 0.1); color: #0f75bc; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; } .loc-modal-icon svg { width: 30px; height: 30px; }
    .loc-modal-card h3 { margin: 0 0 12px; font-weight: 800; color: #111827; } .loc-modal-card p { color: #4b5563; line-height: 1.6; margin-bottom: 24px; font-size: 0.95rem; }

    #virtual-wallet-promo { overflow: hidden; }
    .wallet-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .card-stage-wrap { width: 100%; height: 400px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
    .card-stage { position: relative; width: 360px; height: 226px; transform-style: preserve-3d; }
    .eb-3d-card { width: 100%; height: 100%; position: relative; border-radius: 16px; transform-style: preserve-3d; transition: transform 0.1s ease-out; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; background: linear-gradient(135deg, #0f75bc 0%, #002d6e 100%); }
    .card-face { position: absolute; inset: 0; border-radius: 16px; overflow: hidden; padding: 0; display: flex; flex-direction: column; justify-content: space-between; background: #e5e5e5; backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); }
    .card-glare { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 60%); opacity: 0; mix-blend-mode: overlay; pointer-events: none; transform: translateZ(1px); }
    .card-top { display: flex; justify-content: space-between; align-items: flex-start; transform: translateZ(20px); }
    .card-chip { width: 50px; height: 35px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
    .card-contactless { width: 30px; height: 30px; color: rgba(255,255,255,0.7); transform: rotate(90deg); }
    .card-number { font-family: 'Space Grotesk', monospace; font-size: 1.4rem; color: #fff; letter-spacing: 4px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); transform: translateZ(30px); margin-top: 10px; display: flex; gap: 15px; }
    .card-bottom { display: flex; justify-content: space-between; align-items: flex-end; transform: translateZ(20px); }
    .card-holder .label { font-size: 0.6rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; margin-bottom: 4px; }
    .card-holder .value { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
    .card-logo svg { height: 24px; width: auto; opacity: 0.9; }

    .featured-hover-card .poster { position: relative; overflow: hidden; background: #000; }
    .hover-details { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #ffffff !important; opacity: 0; transition: opacity 0.3s ease; z-index: 25; pointer-events: none; }
    .hover-details h4, .hover-details p, .hover-details h6 { color: #5f5f5f !important; margin: 2px 0; }
    .featured-hover-card:hover .hover-details { opacity: 1; }
    .featured-hover-card:nth-child(1) .hover-details { justify-content: center; padding-bottom: 80px; }
    .featured-hover-card .event-content { display: none !important; }
    .hover-details h4 { font-size: 1.5rem; } .hover-details p, .hover-details h6 { font-size: 1rem; }

    .switch-track { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #f3f4f6; border: 2px solid #e5e7eb; border-radius: 100px; padding: 12px 12px 12px 40px; max-width: 900px; margin: 0 auto; overflow: hidden; transition: background-color 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.6s ease; box-shadow: inset 0 2px 6px rgba(0,0,0,0.05); }
    .switch-content h3 { margin: 0; font-size: 1.5rem; font-weight: 700; color: #1f2937; transition: color 0.5s ease; }
    .switch-content .switch-desc { margin: 4px 0 0 0; color: #6b7280; font-size: 1rem; transition: color 0.5s ease; }
    .switch-handle-wrap { position: relative; z-index: 2; transform: translateX(-20px); transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .switch-knob { display: flex; align-items: center; gap: 12px; background: #ffffff; color: #0f75bc; padding: 16px 28px; border-radius: 100px; text-decoration: none; font-weight: 700; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; }
    .switch-knob:hover { transform: scale(1.02); box-shadow: 0 8px 25px rgba(0,0,0,0.15); text-decoration: none; }
    .knob-icon svg { width: 20px; height: 20px; transition: transform 0.4s ease; margin-top: 6px; }
    .switch-track.switched-on { background: #0f75bc; border-color: #0f75bc; box-shadow: 0 15px 40px rgba(0, 86, 210, 0.3); }
    .switch-track.switched-on .switch-content h3, .switch-track.switched-on .switch-content .switch-desc { color: #ffffff; }
    .switch-track.switched-on .switch-handle-wrap { transform: translateX(0); }
    .switch-track.switched-on .knob-icon svg { transform: rotate(45deg); }
    #switch-counter { font-variant-numeric: tabular-nums; display: inline-block; min-width: 0.6em; text-align: center; }

    @media (min-width: 600px) and (max-width: 1023px) { #coming-soon .wrap { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; } }
    @media (min-width: 640px) { .upcoming-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.25rem; } .tag-events-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { :root { --drawer-w: min(78vw, 360px); } header nav { position: fixed !important; inset: 0 0 0 auto !important; width: var(--drawer-w) !important; height: 100dvh !important; min-height: 100svh !important; max-height: 100dvh !important; padding-top: max(12px, env(safe-area-inset-top)); padding-bottom: max(12px, env(safe-area-inset-bottom)); background: #fff; overflow: auto; transform: translateX(100%); visibility: hidden; pointer-events: none; box-shadow: none; z-index: 2147483647 !important; display: flex; flex-direction: column; align-items: stretch; gap: .01rem !important; padding: 14px 14px 18px; } header nav.active { transform: translateX(0) !important; visibility: visible; pointer-events: auto; } header nav::before { content: none !important; } body::before { content: ""; position: fixed; inset: 0 auto 0 0 !important; right: var(--drawer-w) !important; background: rgba(0, 0, 0, .55); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 2147483646 !important; } .has-subnav > .nav-link { display: none !important; } .has-subnav .subnav { position: static !important; display: block !important; padding: 0 !important; border: none !important; box-shadow: none !important; background: transparent !important; min-width: auto !important; } .nav-link, .subnav-link { width: 100%; display: flex !important; align-items: center; justify-content: flex-start; gap: .55rem; padding: 1.2rem .9rem !important; color: #222; text-align: left; border-radius: var(--main-radius) !important; font-size: 1rem; } .nav-icon, .subnav-link svg { width: 22px; height: 22px; flex: 0 0 22px; display: inline-block; vertical-align: middle; } .section { padding-bottom: 16px !important; } .section.alt { padding-top: 16px !important; } .section + .section, .section + .section.alt { margin-top: 4px !important; } .section h2, .section.alt h2 { margin-top: 0 !important; margin-bottom: 8px !important; } 
    #top-artists-grid { display: flex; overflow-x: auto; gap: 22px !important; padding: 0 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }  
    #top-artists-grid .artist-card { flex: 0 0 78%; max-width: 50%; scroll-snap-align: center; } #top-artists-grid .artist-card .avatar { width: 160px; height: 160px; } .event-card { display: flex !important; flex-direction: column !important; height: 100% !important; border-radius: var(--main-radius); overflow: hidden; } .event-card .poster { position: relative !important; width: 100% !important; aspect-ratio: 1 / 1 !important; overflow: hidden !important; } .event-card .poster img, .event-card .event-image { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; } .event-card .poster.skeleton { background: #f2f2f2 !important; aspect-ratio: 1 / 1 !important; } .event-card .event-content { position: relative !important; display: flex !important; flex-direction: column !important; gap: .5rem !important; flex: 1 1 auto !important; padding-bottom: 56px !important; } .event-card .event-content .price-tag, .event-card .price-tag { position: absolute !important; left: 20px !important; right: 0 !important; bottom: 0 !important; display: block !important; width: 90% !important; padding: 12px 16px !important; text-align: center !important; margin: 0 !important; color: #000 !important; font-weight: 600 !important; text-decoration: none !important; } footer.site-footer .footer-container .footer-social { grid-column: 1 / -1 !important; width: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; text-align: center !important; margin: 24px auto 0 !important; } footer.site-footer .footer-container .footer-social .social-icons { display: flex !important; justify-content: center !important; gap: 16px !important; margin-top: 12px !important; width: 100% !important; } .hero-content { gap: 12px; padding: 0 10px; } .hero-content h1 > span, .hero-content p > span { padding: 4px 10px; border-radius: 8px; } .hero-content h1 > span { line-height: 1.6; font-size: 30px; } .hero-content p > span { line-height: 1.8; } .eb-search-container { width: 92%; } .eb-search-wrapper { padding: 4px 12px; } .glass-results { position: absolute !important; top: calc(100% + 5px) !important; left: 0 !important; right: 0 !important; width: 100% !important; max-height: 60vh; } .section-alt { border-radius: 0 !important; } 
    .stats-grid { grid-template-columns: 1fr; gap: 24px; padding: 20px; } .stat-item { justify-content: flex-start; border-bottom: none; padding-bottom: 24px; } .stat-item:last-child { border-bottom: none; padding-bottom: 0; } .upcoming-grid { display: grid !important; gap: 1px !important; grid-template-columns: repeat(2, 1fr) !important; } .upcoming-grid .event-card:nth-child(1) { grid-column: 1 / -1 !important; width: 100% !important; margin-bottom: 4px; } .upcoming-grid .event-card:not(:first-child) { width: 100% !important; min-width: 0 !important; } .upcoming-grid .event-card:not(:first-child) .poster { aspect-ratio: 1 / 1 !important; width: 100% !important; border-radius: 12px !important; } .upcoming-grid .event-card:not(:first-child) h4 { font-size: 0.9rem !important; padding: 4px 2px; } .wallet-promo-grid { grid-template-columns: 1fr; text-align: center; } .card-stage-wrap { order: -1; margin-top: 0; margin-bottom: 30px; height: 280px !important; } .hover-details h4 { font-size: 1rem; } .hover-details p, .hover-details h6 { font-size: 0.8rem; } .switch-track { flex-direction: column; text-align: center; border-radius: 24px; padding: 30px 20px; } .switch-handle-wrap { transform: translateY(10px); width: 100%; } .switch-knob { justify-content: center; width: 100%; } .switch-track.switched-on .switch-handle-wrap { transform: translateY(0); } }

    @media (min-width: 769px) { .hamburger { display: none !important; } .logo2 { display: none !important; } .section.alt .container, #app-carousel.carousel, #app-carousel .carousel-track, #app-carousel .carousel-slide { margin: 0 !important; padding: 0 !important; line-height: 0 !important; } #app-carousel .carousel-track { display: flex !important; gap: 1.5rem !important; } #app-carousel .carousel-slide { display: flex !important; flex-direction: row !important; align-items: stretch !important; gap: 1rem !important; } #app-carousel .phone { width: 100% !important; flex: 1 1 0 !important; max-width: none !important; aspect-ratio: 16 / 9 !important; height: auto !important; padding: 0 !important; margin: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; } #app-carousel .phone img { display: block !important; width: 100% !important; height: 100% !important; object-fit: contain !important; object-position: center !important; margin: 0 !important; padding: 0 !important; border: 0 !important; } :root { --cat-name-size: 1.15rem; --cat-count-size: 0.95rem; } .upcoming-grid { grid-template-columns: 2fr 1fr !important; grid-template-rows: 220px 220px !important; gap: 1.25rem !important; } .upcoming-grid .event-card:nth-child(1) { grid-column: 1 / 2 !important; grid-row: 1 / 3 !important; height: 100% !important; } .upcoming-grid .event-card:nth-child(1) .poster { height: 100% !important; aspect-ratio: auto !important; border-radius: var(--main-radius) !important; } .upcoming-grid .event-card:nth-child(1) .poster img { height: 100% !important; } .upcoming-grid .event-card:not(:first-child) { height: 100% !important; } .upcoming-grid .event-card:not(:first-child) .poster { aspect-ratio: 16/9 !important; height: auto !important; } .upcoming-grid .event-card:not(:first-child) .muted { display: block !important; } }
    @media (max-width: 769px) { #eb-annc { inset: auto 12px 12px 12px; } .events-grid { grid-template-columns: 1fr; gap: 10px !important; } 
    #site-search-bar.subbar { margin-bottom: 0 !important; padding: 30px 0 0 0 !important; }  
    #site-search-bar + section.section-alt { margin-top: 5px !important; padding-top: 8px !important; }  
    #site-search-bar + section.section-alt .container > h2 { margin-top: 0 !important; } .section.alt[data-reveal="fade-up"] { padding-bottom: 12px !important; } .section.alt h2 { margin-bottom: 8px !important; } #app-carousel { margin-top: 6px !important; margin-bottom: 8px !important; } .section.alt + .section { padding-top: 12px !important; margin-top: 0 !important; } .section.alt + .section .card { margin-top: 6px !important; } .section .container > .card:last-child { margin-bottom: 0 !important; } .section { padding-bottom: 12px !important; } .section + #pricing { margin-top: 8px !important; } #pricing { padding-top: 12px !important; } .section, .section-alt { padding-top: 18px !important; padding-bottom: 18px !important; } #browse-categories { margin-bottom: 6px !important; padding-bottom: 6px !important; } #browse-categories .container { margin-bottom: 0 !important; } #browse-categories + .section { margin-top: 6px !important; padding-top: 10px !important; } .section-alt .container > h2 { margin-bottom: 8px !important; } #events-grid { margin-bottom: 8px !important; display: grid; grid-template-columns: 1fr; gap: 12px; } .section-alt { padding-bottom: 12px !important; margin-bottom: 6px !important; } .social-proof { margin-top: 6px !important; padding-top: 12px !important; } .brand-track { justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; flex-wrap: nowrap; padding-inline: 16px; } .hero-countdown { bottom: 12px; left: 12px; right: 12px; gap: 8px; } .count-box { padding: 8px 4px; border-radius: 10px; } .count-val { font-size: 1.1rem; } .count-label { font-size: 0.6rem; } .tag-events-grid { grid-template-columns: 1fr !important; gap: 16px !important; } .tag-events-grid .event-card .poster { width: 100% !important; aspect-ratio: 16/9 !important; } }

    @media (max-width: 520px) { .mobile-app-cta .app-buttons { flex-direction: column; } .mobile-app-cta .app-button { width: 100%; } .section .container > .card > div:has(.btn.primary, o.btnsecondary) { grid-template-columns: 1fr; } }
    @media (max-width: 480px) { .promo-logo { width: 96px; } .event-card { min-width: 260px !important; max-width: 90vw !important; } #events-grid .event-card { min-width: 88vw !important; max-width: 88vw !important; } }
    @media (max-width: 380px) { :root { --poster-size: 128px; } .event-card .poster { width: 128px !important; } }

    @media (max-width: 1024px) { .mobile-app-cta { display: block; } :root { --hdr-h: 64px; } header { height: var(--hdr-h); display: flex; align-items: center; justify-content: space-between; padding: 0 14px; background: transparent !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; } header .logo img { height: 28px; display: block; margin-top: 10px; } header nav { top: var(--hdr-h); left: 0; right: 0; height: auto; box-shadow: 0 10px 30px rgba(0,0,0,.22); display: none; padding: 14px 16px calc(16px + env(safe-area-inset-bottom)); z-index: 999; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; } header nav.active { display: flex; } .hero-wrap, .hero { margin-top: 0 !important; padding-top: 0 !important; } .hero { min-height: 100vh; position: relative; overflow: hidden; } .hero-slide { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; } .subbar, section.section, section.section-alt, [id] { scroll-margin-top: calc(var(--hdr-h) + 8px); } header.is-solid { background: transparent !important; box-shadow: none !important; } #category-grid.cat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); justify-content: center; } }

    @media (min-width: 1024px) { header { --nav-text: #ffffff; --nav-icon: #ffffff; } .nav-link, .nav-link span { color: var(--nav-text) !important; transition: color 0.25s ease; } .nav-icon, .nav-link svg { color: var(--nav-icon) !important; } .nav-icon path, .nav-link svg path { stroke: var(--nav-icon) !important; transition: stroke 0.25s ease; } .nav-icon path[fill]:not([fill="none"]), .nav-link svg path[fill]:not([fill="none"]) { fill: var(--nav-icon) !important; transition: fill 0.25s ease; } .nav-link:hover, .nav-link:hover span { color: var(--nav-text) !important; background: transparent !important; } .nav-link:hover .nav-icon path { stroke: var(--nav-icon) !important; } .nav-link:hover .nav-icon path[fill]:not([fill="none"]) { fill: var(--nav-icon) !important; } header.is-solid { --nav-text: #1f2937 !important; --nav-icon: #666666 !important; background: transparent !important; } header.is-solid .nav-link, header.is-solid .nav-link span { color: #1f2937 !important; } header.is-solid .nav-icon path, header.is-solid .nav-link svg path { stroke: #666666 !important; } header.is-solid .nav-icon path[fill]:not([fill="none"]), header.is-solid .nav-link svg path[fill]:not([fill="none"]) { fill: #666666 !important; } header.is-solid .nav-link:hover { background: transparent !important; } .has-subnav .subnav { background: #ffffff !important; } .subnav-link { color: #1f2937 !important; } .subnav-link svg, .subnav-link svg path { stroke: #666666 !important; } .subnav-link svg path[fill]:not([fill="none"]) { fill: #666666 !important; } .subnav-link:hover { background-color: #f3f4f6 !important; color: #1f2937 !important; } .subnav-link i.fa { color: #666666 !important; } .subnav-link:hover i.fa { color: #1f2937 !important; } .events-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; overflow-x: visible !important; } .events-grid::-webkit-scrollbar { display: none !important; } .events-grid::after { display: none; } .event-card { display: flex !important; flex-direction: column !important; background: #fff; border: 1px solid #e5e7eb; border-radius: var(--main-radius); overflow: hidden; height: 100%; min-width: unset !important; max-width: unset !important; flex: unset !important; scroll-snap-align: none !important; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); transition: transform 0.18s ease, box-shadow 0.18s ease; } .event-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); } .event-card .poster { position: relative !important; width: 100% !important; aspect-ratio: 1 / 1 !important; overflow: hidden !important; border-right: none !important; } .event-card .poster img, .event-card .poster .event-image { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; } .event-card .event-content { padding: 14px 16px 16px !important; display: flex !important; flex-direction: column !important; gap: 6px !important; flex: 1 1 auto !important; min-width: unset !important; } .event-card h4 { margin: 0; font-size: 1.05rem; line-height: 1.25; font-weight: 700; } .event-card .muted { color: #6b7280; font-size: 0.95rem; line-height: 1.4; } .event-card .description { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } .event-card .price-tag { align-self: center !important; margin: 8px auto 0 !important; text-align: center; display: inline-block; text-decoration: none; border: 1px solid #e5e7eb; padding: 6px 10px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: #0b1020; background: #fff; position: relative !important; left: auto !important; right: auto !important; bottom: auto !important; width: auto !important; } header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 1000; background: transparent !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; transition: background-color .25s ease, box-shadow .25s ease; } .hero-wrap, .hero { margin-top: 0 !important; } .hero { position: relative; min-height: 100vh; padding-top: 0 !important; overflow: hidden; } .hero-slide { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; will-change: transform; } .hero-content { position: relative; z-index: 2; } .subbar, section.section, section.section-alt { scroll-margin-top: 84px; } #category-grid.cat-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 1.5rem !important; max-width: 1200px; margin-inline: auto; } .tag-events-grid { grid-template-columns: repeat(3, 1fr); } .promo-strip { padding: 8px 24px !important; max-height: 70px !important; margin: 20px auto !important; } .promo-logo { width: 100px !important; height: auto !important; } .promo-text { font-size: 0.95rem !important; } .eb-search-container { max-width: 1000px; } .eb-search-wrapper { padding: 10px 20px; } }

    @media (min-width: 1025px) { #app-carousel .phone { max-width: 1900px !important; aspect-ratio: 16 / 9 !important; } #app-carousel .carousel-track { gap: 2rem !important; } }
    @media (min-width: 1200px) { .events-grid { grid-template-columns: repeat(2, 1fr) !important; } .cat-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } :root { --cat-name-size: 1.25rem; --cat-count-size: 1rem; } .artist-card { --avatar-size: 112px; } }
    @media (min-width: 1280px) { .promo-strip { width: min(1200px, 88vw); margin: 16px auto; } }
    @media (min-width: 1400px) { .events-grid { grid-template-columns: repeat(4, 1fr) !important; } }

    @media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; pointer-events: auto !important; } }
    @supports not (aspect-ratio: 1 / 1) { .event-card .poster { height: 0 !important; padding-bottom: 100% !important; } .event-card .poster .event-image, .event-card .poster img { position: absolute !important; } } 
    @media (max-width: 769px) {
      .tag-events-grid .event-card .poster::before {
        display: none !important;
        padding-top: 0 !important;
        content: none !important;
      }

      .tag-events-grid .event-card .poster {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: unset !important;
        padding: 0 !important;
        display: block !important;
      }

      .tag-events-grid .event-card .poster img,
      .tag-events-grid .event-card .poster .event-image {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        inset: auto !important;
        object-fit: cover !important;
        margin: 0 !important;
        display: block !important;
      }
    }
    .tag-events-grid .event-card .price-tag {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 12px 16px !important;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #e5e7eb;
        text-decoration: none;
        box-sizing: border-box;
    }

    .tag-events-grid .event-card .price-tag:hover {
        border-color: #0f75bc;
        background: #0f75bc !important;
    }

    .tag-events-grid .event-card .price-tag .price-lbl {
        font-size: 0.7rem !important;
        text-transform: uppercase;
        color: #6b7280;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .tag-events-grid .event-card .price-tag:hover .price-lbl {
        color: rgba(255, 255, 255, 0.8);
    }

    .tag-events-grid .event-card .price-tag .price-val {
        font-size: 1rem !important;
        font-weight: 700;
        color: #0f75bc;
    }

    .tag-events-grid .event-card .price-tag:hover .price-val {
        color: #fff !important;
    }

    .tag-events-grid .event-card .price-info {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
        width: 100% !important;
        margin-top: auto !important;
        padding-top: 15px !important;
    }

    .tag-events-grid .event-card .price-lbl {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        color: #9ca3af !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
    }

    .tag-events-grid .event-card .price-val {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: #0f75bc !important; 
        line-height: 1 !important;
        font-family: 'Space Grotesk', sans-serif !important;
    }

    .tag-events-grid .event-card .price-val.sold-out {
        color: #ef4444 !important; 
    }
    .tag-events-grid .event-card .date-badge {
    position: absolute !important;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    line-height: 1;
    min-width: 44px;
    }

    .tag-events-grid .event-card .date-badge .month {
        font-size: 0.65rem !important;
        font-weight: 700;
        text-transform: uppercase;
        color: #0f75bc ; 
        margin-bottom: 3px;
        letter-spacing: 0.5px;
    }

    .tag-events-grid .event-card .date-badge .day {
        font-size: 1.25rem !important;
        font-weight: 800;
        color: #1f2937;
        font-family: 'Space Grotesk', sans-serif;
    }
    @media (max-width: 769px) {
    .tag-events-grid .event-card .event-content {
        padding-bottom: 16px !important;
    }
    
    .tag-events-grid .event-card .price-info {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    }
    @media (max-width: 769px) {
    .tag-events-grid .event-card .poster,
    .tag-events-grid .event-card .poster img,
    .tag-events-grid .event-card .poster .event-image {
        border-radius: 20px 20px 0 0 !important;
        -webkit-border-radius: 20px 20px 0 0 !important;
    }
    }

    .tag-events-grid .event-card .poster,
    .tag-events-grid .event-card .poster img,
    .tag-events-grid .event-card .poster .event-image {
        border-radius: 20px 20px 0 0 !important;
        -webkit-border-radius: 20px 20px 0 0 !important;
    }

    .tag-events-grid .event-card .date-badge {
        position: absolute !important;
        top: 10px;
        left: 10px;
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        padding: 6px 10px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        line-height: 1;
        min-width: 44px;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .tag-events-grid .event-card .date-badge .month {
        font-size: 0.65rem !important;
        font-weight: 700;
        text-transform: uppercase;
        color: #0f75bc !important;
        margin-bottom: 3px;
        letter-spacing: 0.5px;
    }

    .tag-events-grid .event-card .date-badge .day {
        font-size: 1.25rem !important;
        font-weight: 800;
        color: #0f75bc !important; 
        font-family: 'Space Grotesk', sans-serif;
    }
