/* ═══════════ NEW HOMEPAGE STYLES ═══════════ */
/* Bootstrap-based responsive design with custom event platform theme */

/* ═══════════ TOKENS & VARIABLES ═══════════ */
:root {
    --navy: #1A3C6E;
    --gold: #C8952A;
    --gl: #FBBF24;
    --bg: #FFFFFF;
    --bg2: #F7F8FA;
    --bg3: #F0F3F9;
    --txt: #0F172A;
    --mid: #475569;
    --soft: #94A3B8;
    --faint: #CBD5E1;
    --bd: #E2E8F0;
    --gr: #10B981;
    --rd: #EF4444;
    --or: #F97316;
    --r-s: 6px;
    --r: 10px;
    --r-l: 14px;
    --r-xl: 20px;
    --t: .18s cubic-bezier(.4, 0, .2, 1);
    --fh: 'Outfit', sans-serif;
    --fb: 'DM Sans', sans-serif;
}

/* ═══════════ GLOBAL RESETS ═══════════ */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--fb);
    background: var(--bg);
    color: var(--txt);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.6);
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ═══════════ TOPBAR ═══════════ */
.topbar {
    background: var(--navy);
    padding: 6px 16px;
}

.tb-txt {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
}

.tb-pill {
    font-size: 10px;
    font-weight: 800;
    background: var(--gold);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

/* ═══════════ NAVBAR ═══════════ */
.nav-custom {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid var(--bd);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    height: 54px;
}

.logo-custom {
    font-family: var(--fh);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -.5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-custom img {
    height: 22px;
    width: auto;
}

.le {
    color: var(--navy);
}

.la {
    color: var(--gold);
}

.nav-search {
    flex: 1;
    max-width: 400px;
}

.search-pill {
    height: 36px;
    background: var(--bg2);
    border: 1.5px solid var(--bd);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    transition: all var(--t);
    cursor: text;
}

.search-pill:focus-within {
    border-color: var(--navy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 60, 110, .08);
}

.search-pill svg {
    width: 14px;
    height: 14px;
    color: var(--soft);
    flex-shrink: 0;
}

.search-pill input {
    background: none;
    border: none;
    outline: none;
    color: var(--txt);
    font-size: 13px;
    width: 100%;
    font-family: var(--fb);
}

.search-pill input::placeholder {
    color: var(--soft);
}

.nav-city {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border: 1.5px solid var(--bd);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
    flex-shrink: 0;
    background: #fff;
}

.nav-city:hover {
    border-color: var(--navy);
    background: var(--bg3);
}

.nav-city svg {
    width: 11px;
    height: 11px;
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t);
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
}

.nav-icon-btn:hover {
    background: var(--bg2);
}

.nav-icon-btn svg {
    width: 18px;
    height: 18px;
    color: var(--mid);
}

.nav-notif-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rd);
    border: 2px solid #fff;
}

.nav-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-login {
    padding: 7px 16px;
    border: 1.5px solid var(--navy);
    border-radius: 100px;
    font-family: var(--fh);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    transition: all var(--t);
    white-space: nowrap;
    background: #fff;
    cursor: pointer;
}

.btn-login:hover {
    background: var(--navy);
    color: #fff;
}

.btn-host {
    padding: 7px 16px;
    background: var(--gold);
    border-radius: 100px;
    font-family: var(--fh);
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    transition: all var(--t);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(200, 149, 42, .3);
    border: none;
    cursor: pointer;
}

.btn-host:hover {
    background: #b8841e;
    transform: translateY(-1px);
}

/* ── Auth Dropdown ── */
.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: var(--r-l, 14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    z-index: 999;
    padding: 6px;
    animation: ddFade .15s ease;
}

.nav-dropdown.open {
    display: block;
}

@keyframes ddFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--r, 10px);
    text-decoration: none;
    color: var(--txt);
    transition: background .15s;
}

.nav-dd-item:hover {
    background: var(--bg3, #f1f5f9);
    color: var(--txt);
    text-decoration: none;
}

.nav-dd-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg3, #f1f5f9);
}

.nav-dd-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

/* Get Early Access CTA */
.btn-early-access {
    padding: 8px 20px;
    background: linear-gradient(135deg, #c8952a, #e8b84a);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-early-access:hover {
    background: linear-gradient(135deg, #e8b84a, #c8952a);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 149, 42, .3);
    color: #fff;
}

.nav-dd-sub {
    display: block;
    font-size: 10.5px;
    color: var(--soft, #94a3b8);
    line-height: 1.3;
}

.burger {
    width: 34px;
    height: 34px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 8px;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--mid);
    border-radius: 2px;
    transition: all .22s;
}

/* ═══════════ CATEGORY STRIP ═══════════ */
.cat-strip {
    background: #fff;
    border-bottom: 1px solid var(--bd);
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-strip::-webkit-scrollbar {
    display: none;
}

.cat-inner {
    display: flex;
    padding: 0 16px;
    min-width: max-content;
}

.ctab {
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--soft);
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    white-space: nowrap;
    transition: all var(--t);
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.ctab-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--bd);
}

.ctab:hover {
    color: var(--txt);
}

.ctab.on {
    color: var(--navy);
    border-bottom-color: var(--navy);
    font-weight: 700;
}

/* ═══════════ MAIN CONTENT ═══════════ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 80px;
}

/* Auth pages: break out of 1200px container */
.main-content:has(.auth-page) {
    max-width: 100%;
    padding: 0;
}

/* ═══════════ FILTER LOADING STATE ═══════════ */
.ef-loading {
    opacity: .45;
    pointer-events: none;
    transition: opacity .2s;
}

/* ═══════════ BANNER SLIDER ═══════════ */
.banner-wrap {
    padding: 14px 0 8px;
    position: relative;
}

.banner-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    scroll-snap-type: x mandatory;
}

.banner-scroll::-webkit-scrollbar {
    display: none;
}

.banner-card {
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stronger bottom-up gradient so text always sits on a dark base */
.banner-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 14, 31, 0) 35%, rgba(6, 14, 31, .55) 65%, rgba(6, 14, 31, .92) 100%);
}

.banner-body {
    position: absolute;
    bottom: 14px;
    left: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.banner-cat {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--gold, #f6c151);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.banner-title {
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
    /* clamp to 2 lines so tall titles don't break the layout */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.banner-meta span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: var(--gold, #f6c151);
    border-radius: 100px;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 12.5px;
    color: #1e293b;
    border: none;
    cursor: pointer;
    margin-left: auto;
    box-shadow: 0 4px 12px rgba(246, 193, 81, .35);
    transition: transform .15s ease;
}

.banner-card:hover .banner-cta {
    transform: scale(1.04);
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--faint);
    cursor: pointer;
    transition: all var(--t);
    border: none;
    padding: 0;
}

.bdot.on {
    background: var(--navy);
    width: 18px;
    border-radius: 3px;
}

/* ═══════════ SECTION HEADER ═══════════ */
.sh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    margin-top: 24px;
}

.sh-title {
    font-family: var(--fh);
    font-size: 17px;
    font-weight: 800;
    color: var(--txt);
    letter-spacing: -.3px;
}

.sh-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    transition: color var(--t);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
}

.sh-link:hover {
    color: var(--gold);
}

.sh-link svg {
    width: 13px;
    height: 13px;
    transition: transform var(--t);
}

.sh-link:hover svg {
    transform: translateX(2px);
}

/* ═══════════ EVENT TYPE PILLS ═══════════ */
.type-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.type-scroll::-webkit-scrollbar {
    display: none;
}

.type-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: var(--r-l);
    border: 1.5px solid var(--bd);
    background: #fff;
    transition: all var(--t);
    min-width: 80px;
    text-align: center;
}

.type-pill:hover {
    border-color: var(--navy);
    background: var(--bg3);
    transform: translateY(-1px);
}

.type-pill.on {
    border-color: var(--navy);
    background: #EEF2FA;
}

.type-pill-icon {
    font-size: 24px;
    line-height: 1;
}

.type-pill-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
}

.type-pill-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-pill-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--mid);
    white-space: nowrap;
}

.type-pill.on .type-pill-name {
    color: var(--navy);
}

/* ═══════════ FILTER BAR ═══════════ */
.fbar-wrap {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    margin-top: 6px;
}

.fbar-wrap::-webkit-scrollbar {
    display: none;
}

.fpill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 13px;
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
    flex-shrink: 0;
}

.fpill:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.fpill.on {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.fpill-icon {
    font-size: 13px;
}

/* ═══════════ EVENT CARDS ═══════════ */
.ev-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.ev-scroll::-webkit-scrollbar {
    display: none;
}

/* Regular Event Card */
.ecard {
    flex-shrink: 0;
    width: 160px;
    border-radius: var(--r-l);
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: all var(--t);
    border: 1px solid var(--bd);
}

.ecard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    border-color: var(--faint);
}

.ecard-img {
    height: 110px;
    position: relative;
    overflow: hidden;
    background: var(--bg3);
}

.ecard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.ecard:hover .ecard-img img {
    transform: scale(1.05);
}

.ecard-badge {
    position: absolute;
    top: 7px;
    left: 7px;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: .2px;
}

.b-free {
    background: var(--gr);
    color: #fff;
}

.b-eb {
    background: var(--gold);
    color: #fff;
}

.b-paid {
    background: var(--navy);
    color: #fff;
}

.b-new {
    background: var(--or);
    color: #fff;
}

.ecard-save {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    backdrop-filter: blur(4px);
    transition: all var(--t);
    border: none;
    cursor: pointer;
    padding: 0;
}

.ecard-save:hover {
    background: #fff;
    transform: scale(1.1);
}

.ecard-body {
    padding: 10px;
}

.ecard-cat {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 3px;
}

.ecard-title {
    font-family: var(--fh);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--txt);
    line-height: 1.3;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ecard-meta {
    font-size: 10.5px;
    color: var(--soft);
    margin-bottom: 5px;
}

.ecard-price {
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
}

.ecard-price.free {
    color: var(--gr);
}

/* Wide Event Card */
.ecard-wide {
    flex-shrink: 0;
    width: 260px;
    border-radius: var(--r-l);
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: all var(--t);
    border: 1px solid var(--bd);
    display: flex;
    flex-direction: column;
}

.ecard-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.ew-img {
    height: 140px;
    position: relative;
    overflow: hidden;
}

.ew-img img {
    width: 100%;
    height: 100%;
    transition: transform .35s;
    object-fit: cover;
}

.ecard-wide:hover .ew-img img {
    transform: scale(1.05);
}

.ew-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 14, 31, .6) 0%, transparent 55%);
}

.ew-chips {
    position: absolute;
    top: 9px;
    left: 9px;
    display: flex;
    gap: 5px;
}

.ewchip {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 100px;
}

.ewc-cat {
    background: var(--gold);
    color: #fff;
}

.ewc-live {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    gap: 3px;
    backdrop-filter: blur(4px);
}

.liveDot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.8s infinite;
}

.ew-date {
    position: absolute;
    bottom: 9px;
    left: 9px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    padding: 2px 7px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.ew-save {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ew-body {
    padding: 12px;
}

.ew-cat {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 4px;
}

.ew-title {
    font-family: var(--fh);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--txt);
    line-height: 1.28;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ew-meta {
    font-size: 10.5px;
    color: var(--soft);
    margin-bottom: 7px;
}

.ew-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ew-price {
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}

.ew-price.free {
    color: var(--gr);
}

.ew-btn {
    padding: 5px 13px;
    background: var(--navy);
    color: #fff;
    border-radius: 100px;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 11px;
    transition: all var(--t);
    border: none;
    cursor: pointer;
}

.ew-btn:hover {
    background: #0f2d5e;
}

.ew-seats {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

.seats-hot {
    background: #FEE2E2;
    color: var(--rd);
}

.seats-ok {
    background: #D1FAE5;
    color: var(--gr);
}

.seat-prog {
    height: 3px;
    background: var(--bd);
    border-radius: 2px;
    overflow: hidden;
    margin: 6px 0 8px;
}

.seat-prog-f {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--navy), #2563EB);
}

.seat-prog-f.hot {
    background: linear-gradient(90deg, var(--or), var(--rd));
}

/* ═══════════ INDUSTRY GRID ═══════════ */
.ind-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.ind-grid::-webkit-scrollbar {
    display: none;
}

.ind-card {
    flex-shrink: 0;
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 14px 8px;
    border-radius: var(--r-l);
    border: 1.5px solid var(--bd);
    background: #fff;
    cursor: pointer;
    transition: all var(--t);
    text-align: center;
}

.ind-card:hover {
    border-color: var(--navy);
    background: var(--bg3);
    transform: translateY(-1px);
}

.ind-card.on {
    border-color: var(--navy);
    background: #EEF2FA;
}

.ind-icon {
    font-size: 22px;
    line-height: 1;
}

.ind-name {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--mid);
    line-height: 1.3;
}

.ind-count {
    font-size: 9.5px;
    color: var(--soft);
}

.ind-card.on .ind-name {
    color: var(--navy);
}

/* ═══════════ CITY STRIP ═══════════ */
.city-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.city-scroll::-webkit-scrollbar {
    display: none;
}

.city-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
}

.city-icon-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.city-pill:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.city-pill.on {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.city-pill .city-count {
    font-size: 10px;
    font-weight: 500;
    opacity: .7;
}

/* ═══════════ NEWSLETTER ═══════════ */
.newsletter {
    background: var(--bg3);
    border-radius: var(--r-xl);
    padding: 20px;
    text-align: center;
    margin-top: 24px;
    border: 1px solid var(--bd);
}

.nl-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.nl-title {
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 4px;
}

.nl-sub {
    font-size: 13px;
    color: var(--soft);
    margin-bottom: 14px;
    line-height: 1.6;
}

.nl-row {
    display: flex;
    gap: 8px;
    max-width: 380px;
    margin: 0 auto;
}

.nl-input {
    flex: 1;
    padding: 10px 14px;
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 100px;
    font-size: 13px;
    color: var(--txt);
    transition: all var(--t);
    outline: none;
}

.nl-input:focus {
    border-color: var(--navy);
}

.nl-btn {
    padding: 10px 20px;
    background: var(--navy);
    color: #fff;
    border-radius: 100px;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: all var(--t);
    border: none;
    cursor: pointer;
}

.nl-btn:hover {
    background: #0f2d5e;
}

/* ═══════════ FOOTER ═══════════ */
.footer-custom {
    background: var(--navy);
    padding: 28px 16px 20px;
    margin-top: 32px;
}

.footer-w {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--fh);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -.5px;
    margin-bottom: 8px;
}

.footer-logo .e {
    color: #fff;
}

.footer-logo .a {
    color: var(--gold);
}

.footer-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.fsoc {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--t);
    border: none;
    padding: 0;
}

.fsoc:hover {
    background: rgba(200, 149, 42, .25);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 20px;
    margin-bottom: 20px;
}

.fl {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: color var(--t);
    text-decoration: none;
}

.fl:hover {
    color: rgba(255, 255, 255, .8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.fb-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, .25);
}

.fb-india {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
}

.fb-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.fb-badge {
    font-size: 9.5px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .35);
    border: 1px solid rgba(255, 255, 255, .08);
}

/* ═══════════ MOBILE NAV ═══════════ */
.mob-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: #fff;
    border-top: 1px solid var(--bd);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, .07);
}

.mob-nav-in {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 54px;
}

.mni {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 8px;
    cursor: pointer;
    opacity: .4;
    transition: opacity var(--t);
    min-width: 46px;
    background: none;
    border: none;
}

.mni.on {
    opacity: 1;
}

.mni-ic {
    font-size: 20px;
    line-height: 1;
}

.mni-l {
    font-size: 9px;
    font-weight: 700;
    color: var(--mid);
    letter-spacing: .15px;
}

.mni.on .mni-l {
    color: var(--navy);
}

/* ═══════════ MOBILE MENU ═══════════ */
.mm-ov {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 599;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.mm-ov.open {
    opacity: 1;
    pointer-events: all;
}

.mmenu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(290px, 82vw);
    background: #fff;
    z-index: 600;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    display: none;
}

.mmenu.open {
    transform: translateX(0);
}

.mm-head {
    padding: 16px;
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mm-logo {
    font-family: var(--fh);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -.5px;
}

.mm-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--mid);
    cursor: pointer;
    border: none;
    padding: 0;
}

.mm-sect {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 16px 5px;
}

.mml {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--mid);
    cursor: pointer;
    transition: all var(--t);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.mml-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--bd);
    flex-shrink: 0;
}

.mml:hover {
    background: var(--bg2);
    color: var(--txt);
}

.mml.on {
    color: var(--navy);
    font-weight: 600;
}

.mm-div {
    height: 1px;
    background: var(--bd);
    margin: 8px 0;
}

.mm-cta-wrap {
    padding: 14px 16px;
}

.mm-cta {
    width: 100%;
    padding: 13px;
    background: var(--navy);
    border-radius: 100px;
    color: #fff;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background var(--t);
}

.mm-cta:hover {
    background: #0f2d5e;
}

/* ═══════════ TOAST ═══════════ */
.toast-wrap {
    position: fixed;
    bottom: 68px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    pointer-events: none;
}

.toast {
    background: var(--txt);
    color: #fff;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transform: translateY(16px);
    opacity: 0;
    transition: all .28s cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ═══════════ RESPONSIVE ═══════════ */

/* ── XS: Small phones (<576px) ── */
@media (max-width: 575.98px) {
    .topbar {
        padding: 5px 12px;
    }

    .tb-txt {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 65vw;
    }

    .nav-inner {
        padding: 8px 12px;
        height: 48px;
        gap: 8px;
    }

    .logo-custom {
        font-size: 17px;
    }

    .logo-custom img {
        height: 18px;
    }

    .nav-city {
        padding: 5px 8px;
        font-size: 11px;
    }

    .nav-city svg {
        width: 10px;
        height: 10px;
    }

    .banner-card {
        height: 160px;
    }

    .banner-title {
        font-size: 14px;
    }

    .banner-cat {
        font-size: 8.5px;
    }

    .banner-meta span {
        font-size: 10px;
    }

    .banner-cta {
        font-size: 10px;
        padding: 4px 10px;
    }

    .sh-title {
        font-size: 15px;
    }

    .sh-link {
        font-size: 11.5px;
    }

    .ecard {
        width: 140px;
    }

    .ecard-img {
        height: 95px;
    }

    .ecard-body {
        padding: 8px;
    }

    .ecard-title {
        font-size: 11.5px;
    }

    .ecard-meta {
        font-size: 9.5px;
    }

    .ecard-price {
        font-size: 12px;
    }

    .ecard-wide {
        width: 230px;
    }

    .ew-img {
        height: 120px;
    }

    .ind-card {
        width: 80px;
        padding: 10px 6px;
    }

    .ind-icon {
        font-size: 20px;
    }

    .ind-name {
        font-size: 9.5px;
    }

    .type-pill {
        padding: 10px 12px;
        min-width: 70px;
    }

    .type-pill-name {
        font-size: 10px;
    }

    .type-pill-icon-img {
        width: 34px;
        height: 34px;
    }

    .newsletter {
        padding: 16px;
    }

    .nl-title {
        font-size: 14px;
    }

    .nl-sub {
        font-size: 12px;
    }

    .nl-row {
        flex-direction: column;
    }

    .footer-custom {
        padding: 22px 12px 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .fb-badges {
        justify-content: center;
    }

    /* Speaker/Organiser card scroll sizing */
    .spk-card {
        width: 90px;
        padding: 12px 8px;
    }

    .spk-avatar {
        width: 44px;
        height: 44px;
    }

    .spk-name {
        font-size: 10px;
    }

    .spk-role {
        font-size: 8.5px;
    }

    /* Promo strip */
    .promo-strip {
        padding: 16px !important;
        flex-direction: column !important;
        text-align: center;
    }

    .promo-title {
        font-size: 16px !important;
    }

    .promo-sub {
        font-size: 11px !important;
    }
}

/* ── SM & below: Phones (<768px) — Mobile layout ── */
@media (max-width: 767.98px) {
    .nav-search {
        display: none;
    }

    .btn-login,
    .btn-host,
    .btn-early-access {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mmenu,
    .mm-ov {
        display: block;
    }

    .mob-nav {
        display: block;
    }

    body {
        padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px));
    }

    .banner-card {
        width: 100%;
        min-width: 100%;
        height: 180px;
    }

    .nl-row {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .toast-wrap {
        bottom: 68px;
    }
}

/* ── SM: Large phones / Landscape phones (576px–767px) ── */
@media (min-width: 576px) and (max-width: 767.98px) {
    .main-content {
        padding: 0 20px 80px;
    }

    .nav-inner {
        padding: 10px 20px;
    }

    .ecard {
        width: 155px;
    }

    .ecard-img {
        height: 108px;
    }

    .ecard-wide {
        width: 250px;
    }

    .ew-img {
        height: 135px;
    }

    .banner-card {
        height: 200px;
    }

    .banner-title {
        font-size: 16px;
    }

    .ind-card {
        width: 88px;
    }
}

/* ── MD: Tablets (768px–991px) ── */
@media (min-width: 768px) and (max-width: 991.98px) {
    .main-content {
        padding: 0 24px 80px;
    }

    .nav-inner {
        padding: 10px 24px;
        height: 56px;
    }

    .cat-inner {
        padding: 0 24px;
    }

    .nav-search {
        max-width: 280px;
    }

    .btn-early-access {
        display: none;
    }

    .banner-card {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .ecard {
        width: 165px;
    }

    .ecard-img {
        height: 115px;
    }

    .ecard-wide {
        width: 255px;
    }

    .ind-card {
        width: 90px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .spk-card {
        width: 100px;
    }
}

/* ── LG: Laptops (992px–1199px) ── */
@media (min-width: 992px) {
    .topbar {
        padding: 5px 24px;
    }

    .main-content {
        padding: 0 28px 80px;
    }

    .nav-inner {
        padding: 10px 28px;
    }

    .cat-inner {
        padding: 0 28px;
    }

    .banner-card {
        width: 100%;
        min-width: 100%;
        height: 240px;
    }

    .ecard {
        width: 172px;
    }

    .ecard-img {
        height: 120px;
    }

    .ecard-wide {
        width: 265px;
    }

    .ew-img {
        height: 145px;
    }

    .banner-title {
        font-size: 18px;
    }

    .sh-title {
        font-size: 18px;
    }
}

/* ── XL: Desktops (1200px–1399px) ── */
@media (min-width: 1200px) {
    .main-content {
        padding: 0 32px 80px;
    }

    .nav-inner {
        padding: 10px 32px;
    }

    .cat-inner {
        padding: 0 32px;
    }

    .nav-search {
        max-width: 420px;
    }

    .ecard {
        width: 180px;
    }

    .ecard-img {
        height: 125px;
    }

    .ecard-wide {
        width: 275px;
    }

    .banner-card {
        height: 260px;
    }

    .banner-title {
        font-size: 20px;
    }

    .sh-title {
        font-size: 19px;
    }
}

/* ── XXL: Large desktops (≥1400px) ── */
@media (min-width: 1400px) {
    .main-content {
        max-width: 1320px;
        padding: 0 40px 80px;
    }

    .ecard {
        width: 190px;
    }

    .ecard-img {
        height: 130px;
    }

    .ecard-wide {
        width: 290px;
    }

    .ew-img {
        height: 155px;
    }

    .banner-card {
        height: 280px;
    }

    .banner-title {
        font-size: 22px;
    }

    .sh-title {
        font-size: 20px;
    }

    .ind-card {
        width: 100px;
    }
}

/* ── Landscape orientation tweaks ── */
@media (orientation: landscape) and (max-height: 500px) {
    /* Short landscape phones */
    .banner-card {
        height: 150px !important;
    }

    .banner-body {
        bottom: 10px;
        left: 12px;
    }

    .banner-title {
        font-size: 13px;
    }

    .mob-nav {
        display: none !important;
    }

    body {
        padding-bottom: 0 !important;
    }

    .toast-wrap {
        bottom: 16px;
    }

    .type-pill {
        padding: 8px 12px;
    }

    .topbar {
        display: none !important;
    }
}

@media (orientation: landscape) and (min-width: 568px) and (max-width: 991.98px) {
    /* Landscape tablets / large phones */
    .banner-card {
        height: 200px;
    }

    .nav-inner {
        height: 50px;
    }

    .ecard {
        width: 165px;
    }
}

/* ── Print-friendly ── */
@media print {
    .topbar,
    .mob-nav,
    .mmenu,
    .mm-ov,
    .burger,
    .toast-wrap,
    .banner-dots {
        display: none !important;
    }

    .main-content {
        max-width: 100%;
        padding: 0;
    }

    .nav-custom {
        position: static;
        box-shadow: none;
    }
}

/* ═══════════ SPEAKER CARDS (extracted from inline) ═══════════ */
.spk-card {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 14px 10px;
    border-radius: var(--r-l);
    border: 1.5px solid var(--bd);
    background: #fff;
    cursor: pointer;
    transition: all var(--t);
    text-align: center;
}

.spk-card:hover {
    border-color: var(--navy);
    background: var(--bg3);
    transform: translateY(-1px);
}

.spk-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bd);
    position: relative;
}

.spk-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spk-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--txt);
    line-height: 1.25;
}

.spk-role {
    font-size: 9.5px;
    color: var(--soft);
}

.spk-city {
    font-size: 10px;
    font-weight: 700;
    color: var(--navy);
}

/* ═══════════ PROMO STRIP (extracted from inline) ═══════════ */
.promo-strip {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1e45 100%);
    border-radius: var(--r-xl);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all var(--t);
}

.promo-strip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 60, 110, .2);
}

.promo-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.6s infinite;
    display: inline-block;
}

.promo-title {
    font-family: var(--fh);
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin-bottom: 5px;
}

.promo-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 12px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--gold);
    border-radius: 100px;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 12.5px;
    color: #fff;
    transition: all var(--t);
    border: none;
    cursor: pointer;
}

.promo-btn:hover {
    background: #b8841e;
}

.promo-stats {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.promo-stat {
    text-align: center;
}

.promo-stat-num {
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 900;
    color: var(--gl);
    letter-spacing: -1px;
    line-height: 1;
}

.promo-stat-label {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

/* ═══════════ FOOTER SECTION TITLES (extracted from inline) ═══════════ */
.footer-section-title {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}