.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5.5rem);
    min-height: 480px;
    padding: clamp(1rem, 3vw, 2.4rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.home-hero::before {
    position: absolute;
    top: 8%;
    left: 24%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(211, 173, 98, .04);
    filter: blur(55px);
    content: "";
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 610px;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
    color: var(--site-gold-light);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hero-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ad294;
    box-shadow: 0 0 0 5px rgba(58, 210, 148, .09);
}

.hero-copy h1 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(2.75rem, 4.7vw, 4.9rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .98;
}

.hero-copy h1 span {
    color: transparent;
    background: linear-gradient(110deg, var(--site-gold-light), #c68f3f 72%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy p {
    max-width: 560px;
    margin: 1.3rem 0 0;
    color: var(--site-muted-strong);
    font-size: clamp(1rem, 1.25vw, 1.14rem);
    font-weight: 480;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.65rem;
}

.hero-actions .btn {
    padding: .72rem 1.1rem;
    border-radius: 10px;
    font-size: .88rem;
}

.btn-ghost {
    --bs-btn-color: var(--site-muted-strong);
    --bs-btn-bg: var(--site-surface);
    --bs-btn-border-color: var(--site-border-strong);
    --bs-btn-hover-color: var(--site-text);
    --bs-btn-hover-bg: var(--site-surface-raised);
    --bs-btn-hover-border-color: #5a5561;
    font-weight: 680;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.5rem;
    color: var(--site-muted);
    font-size: .82rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .62rem;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
}

.hero-proof i {
    margin-right: .08rem;
    color: var(--site-gold);
}

.hero-proof strong {
    color: var(--site-muted-strong);
    font-weight: 750;
}

.featured-live {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--site-border-strong);
    border-radius: 19px;
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.featured-live::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    box-shadow: inset 0 1px rgba(255, 255, 255, .07);
    content: "";
    pointer-events: none;
}

.featured-visual,
.live-visual {
    position: relative;
    display: grid;
    overflow: hidden;
    place-items: center;
}

.featured-visual {
    min-height: 300px;
}

.visual-ember {
    background:
        radial-gradient(circle at 72% 20%, rgba(226, 182, 83, .38), transparent 24%),
        radial-gradient(circle at 20% 84%, rgba(114, 35, 49, .46), transparent 30%),
        linear-gradient(145deg, #3a2c1c, #151319 54%, #30171d);
}

.visual-electric {
    background:
        radial-gradient(circle at 24% 23%, rgba(75, 153, 227, .38), transparent 26%),
        linear-gradient(145deg, #172b3d, #131319 57%, #4d3d19);
}

.visual-scarlet {
    background:
        radial-gradient(circle at 72% 19%, rgba(217, 73, 65, .38), transparent 25%),
        linear-gradient(145deg, #3b1c24, #131218 58%, #18344b);
}

.visual-violet {
    background:
        radial-gradient(circle at 48% 19%, rgba(147, 101, 205, .42), transparent 25%),
        linear-gradient(145deg, #251e3c, #121116 60%, #314523);
}

.visual-aqua {
    background:
        radial-gradient(circle at 66% 24%, rgba(82, 189, 200, .35), transparent 25%),
        linear-gradient(145deg, #153139, #111217 62%, #462754);
}

.visual-forest {
    background:
        radial-gradient(circle at 24% 25%, rgba(77, 154, 112, .35), transparent 24%),
        linear-gradient(145deg, #183129, #121317 61%, #4a321c);
}

.live-label {
    position: absolute;
    top: .8rem;
    left: .8rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .32rem .52rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 7px;
    color: #fff;
    background: var(--site-live);
    box-shadow: 0 7px 18px rgba(239, 67, 82, .21);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.live-label i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    animation: live-pulse 1.6s ease-in-out infinite;
}

.favorite-button {
    position: absolute;
    top: .72rem;
    right: .72rem;
    z-index: 4;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 8, 10, .52);
    backdrop-filter: blur(9px);
    transition: color .16s ease, background .16s ease, transform .16s ease;
}

.favorite-button:hover {
    background: rgba(8, 8, 10, .82);
    transform: scale(1.06);
}

.favorite-button[aria-pressed="true"] {
    color: #ff6e79;
}

.viewer-chip {
    position: absolute;
    right: .8rem;
    bottom: .75rem;
    z-index: 3;
    padding: .28rem .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    color: #fff;
    background: rgba(7, 7, 9, .67);
    font-size: .78rem;
    backdrop-filter: blur(8px);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(230, 199, 131, .16);
    border-radius: 50%;
}

.orbit-one {
    width: 260px;
    height: 260px;
}

.orbit-two {
    width: 185px;
    height: 185px;
    border-color: rgba(230, 199, 131, .1);
}

.featured-card-stack {
    position: relative;
    z-index: 1;
    width: 118px;
    height: 158px;
    transform: rotate(-5deg);
    transition: transform .35s ease;
}

.featured-live:hover .featured-card-stack {
    transform: translateY(-4px) rotate(-2deg);
}

.stack-card {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 2px solid rgba(240, 212, 147, .68);
    border-radius: 12px;
}

.stack-back {
    transform: translate(19px, 12px) rotate(9deg);
    background: rgba(12, 11, 14, .72);
}

.stack-front {
    align-content: center;
    gap: .6rem;
    color: var(--site-gold-light);
    background:
        radial-gradient(circle, rgba(211, 173, 98, .14), transparent 52%),
        rgba(20, 18, 20, .93);
    box-shadow: 0 24px 42px rgba(0, 0, 0, .45);
}

.stack-front i {
    font-size: 2.15rem;
}

.stack-front small {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.featured-lot {
    position: absolute;
    bottom: .75rem;
    left: .8rem;
    z-index: 3;
    display: grid;
    gap: .08rem;
    padding: .48rem .62rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: rgba(8, 8, 10, .68);
    backdrop-filter: blur(9px);
}

.featured-lot small {
    color: var(--site-muted);
    font-size: .7rem;
}

.featured-lot strong {
    color: var(--site-gold-light);
    font-size: .88rem;
}

.featured-details {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .8rem 1.4rem;
    padding: 1rem 1.1rem 1.1rem;
}

.featured-details h2 {
    grid-column: 1;
    margin: 0;
    font-size: clamp(1.02rem, 1.45vw, 1.2rem);
    font-weight: 750;
    line-height: 1.35;
}

.featured-details .btn {
    grid-row: 1 / span 2;
    grid-column: 2;
}

.host-line {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
}

.host-avatar {
    width: 31px;
    height: 31px;
    border-radius: 9px;
}

.host-line strong,
.host-line small {
    display: block;
}

.host-line strong {
    overflow: hidden;
    color: var(--site-muted-strong);
    font-size: .86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-line strong i {
    margin-left: .2rem;
    color: var(--site-gold);
}

.host-line small {
    margin-top: .12rem;
    color: var(--site-muted);
    font-size: .78rem;
}

.btn-outline-gold {
    --bs-btn-color: var(--site-gold-light);
    --bs-btn-border-color: rgba(211, 173, 98, .42);
    --bs-btn-hover-color: #19130a;
    --bs-btn-hover-bg: var(--site-gold-light);
    --bs-btn-hover-border-color: var(--site-gold-light);
    font-weight: 700;
}

.discovery-section,
.upcoming-section {
    scroll-margin-top: calc(var(--site-header-height) + 1.2rem);
}

.discovery-section:focus,
.upcoming-section:focus {
    outline: none;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.section-live-count {
    display: inline-flex;
    align-items: center;
    padding: .34rem .58rem;
    border: 1px solid rgba(239, 67, 82, .25);
    border-radius: 999px;
    color: #ffb6bd;
    background: rgba(239, 67, 82, .09);
    font-size: .8rem;
    font-weight: 700;
}

.category-filters {
    display: flex;
    gap: .55rem;
    margin: 0 0 1.2rem;
    padding-bottom: .3rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-filter {
    flex: 0 0 auto;
    padding: .58rem .82rem;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    color: var(--site-muted-strong);
    background: var(--site-surface);
    font-size: .86rem;
    font-weight: 680;
    transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.category-filter i {
    margin-right: .4rem;
    color: var(--site-muted);
}

.category-filter:hover,
.category-filter.is-active {
    border-color: rgba(211, 173, 98, .42);
    color: var(--site-gold-light);
    background: rgba(211, 173, 98, .09);
}

.category-filter.is-active i {
    color: var(--site-gold);
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.live-card {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 15px;
    background: var(--site-surface);
    box-shadow: 0 1px rgba(255, 255, 255, .02);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.live-card:hover {
    border-color: var(--site-border-strong);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .27);
    transform: translateY(-3px);
}

.live-card:hover .mini-card {
    transform: translateY(-3px) rotate(-2deg);
}

.live-card[hidden] {
    display: none;
}

.live-visual {
    aspect-ratio: 16 / 9;
}

.live-visual::after {
    position: absolute;
    inset: 45% 0 0;
    z-index: 1;
    background: linear-gradient(transparent, rgba(7, 7, 9, .77));
    content: "";
}

.mini-card {
    position: relative;
    z-index: 1;
    display: grid;
    width: 62px;
    height: 82px;
    place-items: center;
    border: 2px solid rgba(240, 212, 147, .66);
    border-radius: 8px;
    color: var(--site-gold-light);
    background: rgba(17, 16, 20, .82);
    box-shadow: 10px 8px 0 rgba(9, 8, 11, .82), 12px 9px 0 rgba(185, 147, 74, .42);
    font-size: 1.35rem;
    transform: rotate(-6deg);
    transition: transform .25s ease;
}

.live-card-body {
    padding: .85rem .9rem 1rem;
}

.live-card-body h3 {
    display: -webkit-box;
    min-height: 2.5em;
    margin: .7rem 0 0;
    overflow: hidden;
    color: var(--site-text);
    font-size: .98rem;
    font-weight: 740;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.live-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .72rem;
    padding-top: .65rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: var(--site-muted);
    font-size: .78rem;
    font-weight: 700;
}

.live-card-footer i {
    color: var(--site-gold);
    transition: transform .18s ease;
}

.live-card:hover .live-card-footer {
    color: var(--site-gold-light);
}

.live-card:hover .live-card-footer i {
    transform: translate(2px, -2px);
}

.empty-filter {
    margin: 1rem 0 0;
    padding: 2rem;
    border: 1px dashed var(--site-border-strong);
    border-radius: 14px;
    color: var(--site-muted);
    text-align: center;
}

.upcoming-section {
    margin-top: clamp(2.6rem, 5vw, 4.5rem);
}

.text-link {
    border: 0;
    color: var(--site-muted-strong);
    background: transparent;
    font-size: .86rem;
}

.text-link:hover {
    color: var(--site-gold-light);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}

.upcoming-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .85rem;
    min-height: 88px;
    padding: .85rem;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: var(--site-surface);
}

.show-date {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(211, 173, 98, .35);
    border-radius: 11px;
    color: var(--site-gold-light);
    background: rgba(211, 173, 98, .08);
    font-style: normal;
}

.show-date span {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.show-date strong {
    margin-top: .08rem;
    font-size: .92rem;
}

.date-purple { border-color: rgba(142, 101, 196, .34); color: #c9a8ef; background: rgba(142, 101, 196, .09); }
.date-blue { border-color: rgba(74, 135, 196, .35); color: #9bc8f2; background: rgba(74, 135, 196, .09); }

.upcoming-card h3 {
    margin: 0;
    font-size: .94rem;
    font-weight: 740;
}

.upcoming-card p {
    margin: .25rem 0 0;
    color: var(--site-muted);
    font-size: .8rem;
}

.upcoming-card > button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--site-border);
    border-radius: 9px;
    color: var(--site-muted);
    background: var(--site-surface-raised);
}

.upcoming-card > button:hover {
    border-color: rgba(211, 173, 98, .35);
    color: var(--site-gold-light);
}

@media (max-width: 1399.98px) {
    .home-hero {
        grid-template-columns: minmax(0, .8fr) minmax(390px, 1.2fr);
        gap: 2.4rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 4.7vw, 4.6rem);
    }
}

@media (max-width: 1199.98px) {
    .home-hero {
        grid-template-columns: 1fr 1fr;
    }

    .featured-visual {
        min-height: 250px;
    }

    .live-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .home-hero {
        grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
        min-height: 430px;
    }

    .hero-proof {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        min-height: 0;
        padding: .7rem 0 2.8rem;
    }

    .hero-copy h1 {
        max-width: 430px;
        font-size: clamp(2.45rem, 10vw, 3.45rem);
    }

    .hero-copy p {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .featured-visual {
        min-height: 260px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .live-grid {
        gap: .7rem;
    }
}

@keyframes live-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(.72);
    }
}

@media (max-width: 575.98px) {
    .featured-details {
        grid-template-columns: minmax(0, 1fr);
    }

    .featured-details .btn {
        grid-row: auto;
        grid-column: auto;
        justify-self: start;
    }

    .live-grid {
        grid-template-columns: 1fr 1fr;
    }

    .live-label {
        top: .5rem;
        left: .5rem;
    }

    .favorite-button {
        top: .45rem;
        right: .45rem;
        width: 31px;
        height: 31px;
    }

    .viewer-chip {
        right: .5rem;
        bottom: .48rem;
    }

    .mini-card {
        width: 50px;
        height: 66px;
        font-size: 1rem;
    }

    .live-card-body {
        padding: .7rem;
    }

    .host-avatar {
        width: 28px;
        height: 28px;
    }

    .host-line small {
        display: none;
    }

    .live-card-body h3 {
        font-size: .9rem;
    }

    .section-live-count {
        display: none;
    }
}

.home-show-link { display:block; color:inherit; text-decoration:none; }
.home-show-link:hover { color:inherit; }
.home-real-cover { display:grid; place-items:center; background:linear-gradient(135deg,#292820,#191a1e); }
.home-real-cover img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; }
.home-cover-icon { color:var(--site-gold); font-size:3rem; opacity:.65; }
.home-planned-label { position:absolute; z-index:2; top:14px; left:14px; max-width:calc(100% - 28px); padding:7px 10px; border-radius:7px; color:var(--site-gold-light); background:rgba(20,21,24,.92); font-size:.75rem; font-weight:750; }
.home-planned-label.is-live { display:inline-flex; align-items:center; gap:6px; color:#fff; background:#9f3038; }
.home-empty-feature { min-height:300px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; padding:32px; text-align:center; }
.home-empty-feature > i { color:var(--site-gold); font-size:3rem; }
.home-empty-feature h2 { font-size:1.3rem; }
.home-empty-feature p { color:var(--site-muted); }
.home-search-form { display:flex; flex-wrap:wrap; gap:10px; margin:20px 0; }
.home-search-form input[type=search] { flex:1; min-width:160px; }
.category-filters a { text-decoration:none; }
.home-pagination { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:24px; }
.home-article-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.home-article-card { border:1px solid var(--site-border); border-radius:12px; overflow:hidden; color:inherit; background:var(--site-surface); text-decoration:none; }
.home-article-card:hover { color:inherit; border-color:var(--site-gold-dark); }
.home-article-image { position:relative; display:grid; place-items:center; aspect-ratio:1; background:var(--site-bg-soft); color:var(--site-muted); font-size:2rem; }
.home-article-image img { width:100%; height:100%; object-fit:contain; }
.article-live-badge { position:absolute; z-index:2; top:10px; left:10px; display:inline-flex; align-items:center; gap:6px; padding:6px 9px; border-radius:7px; color:#fff; background:#9f3038; box-shadow:0 5px 16px rgba(0,0,0,.28); font-size:.7rem; font-weight:800; letter-spacing:.02em; text-transform:uppercase; }
.home-article-mode { font-size:.67rem; color:var(--site-gold-light); }
.home-article-card h3 { font-size:.96rem; line-height:1.5; margin:8px 0; overflow-wrap:anywhere; }
.home-seller-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.home-seller-card { display:flex; align-items:center; gap:12px; padding:18px; background:var(--site-surface); border:1px solid var(--site-border); border-radius:12px; text-decoration:none; color:inherit; }
.home-seller-card:hover { color:inherit; border-color:var(--site-gold-dark); }
.home-seller-card strong { display:block; font-size:.86rem; overflow-wrap:anywhere; }
.home-seller-card small { display:block; font-size:.72rem; color:var(--site-muted); margin-top:6px; }
.home-live-notice { display:flex; flex-wrap:wrap; align-items:center; gap:18px; padding:24px; margin-top:32px; border:1px solid var(--site-border); border-radius:14px; }
.home-live-notice > i { color:var(--site-gold); font-size:2rem; }
.home-live-notice h2 { font-size:1.1rem; }.home-live-notice p { color:var(--site-muted); margin:0; font-size:.85rem; }
.home-live-notice > a { margin-left:auto; }
#upcoming-shows, #home-articles, #home-sellers, #live-now { scroll-margin-top:90px; }
@media (max-width:1199.98px) { .home-article-grid { grid-template-columns:repeat(3,minmax(0,1fr)); } .home-seller-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:767.98px) { .home-article-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; } .home-seller-grid { grid-template-columns:1fr; } .home-planned-label { font-size:.65rem; left:8px; top:8px; } }
@media (max-width: 399.98px) {
    .live-grid {
        grid-template-columns: 1fr;
    }
}
