/* extracted from page-awards.php on 2026-05-04 */
:root {
    --bg: #0d0d0d;
    --s1: #111113;
    --s2: #1a1a1c;
    --s3: #222224;
    --bd: rgba(255, 255, 255, 0.07);
    --bd2: rgba(255, 255, 255, 0.12);
    --ac: var(--color-accent);
    --gold: var(--color-gold);
    --t1: rgba(255, 255, 255, 0.92);
    --t2: rgba(255, 255, 255, 0.55);
    --t3: rgba(255, 255, 255, 0.28);
    --f: "Satoshi", -apple-system, system-ui, sans-serif;
}
#masthead.site-header {
    background: #0d0d0d !important;
    border-bottom-color: var(--bd) !important;
}
#masthead .site-header__nav a {
    color: var(--t2);
}
#masthead .site-header__nav a:hover {
    color: var(--ac);
    border-bottom-color: var(--ac);
}
* {
    box-sizing: border-box;
}
.xaw {
    background: var(--bg);
    min-height: 100vh;
    color: #fff;
    font-family: var(--f);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 6rem;
}
.xaw a {
    color: inherit;
    text-decoration: none;
}

/* ── HERO — full viewport, blurred artist backdrop ── */
.xaw-hero {
    position: relative;
    height: 100svh;
    max-height: 700px;
    min-height: 420px;
    overflow: hidden;
    background: #0a0708;
    display: flex;
    align-items: flex-end;
}
.xaw-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(1.3);
}
.xaw-hero__grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        #0d0d0d 0%,
        rgba(13, 13, 13, 0.8) 30%,
        rgba(13, 13, 13, 0.3) 70%,
        rgba(13, 13, 13, 0.15) 100%
    );
}
.xaw-hero__grad-side {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.7) 0%, transparent 55%);
}
.xaw-hero__glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: radial-gradient(ellipse at 30% 100%, rgba(201, 162, 39, 0.12) 0%, transparent 65%);
}
.xaw-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 2.5rem;
}
.xaw-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--t3);
    margin-bottom: 1rem;
    transition: color 0.15s;
}
.xaw-hero__back:hover {
    color: #fff;
}
.xaw-hero__eyebrow {
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.xaw-hero__eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}
.xaw-hero__svc {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 0.28rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.7rem;
    background: var(--gold);
    color: #000;
}
.xaw-hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
    max-width: 600px;
}
.xaw-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 1.5rem;
}
.xaw-hero__pill {
    font-size: 0.68rem;
    color: var(--t2);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-weight: 600;
}
.xaw-hero__pill--gold {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
}
.xaw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}
.xaw-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.6rem;
    border-radius: 100px;
    font-size: 0.84rem;
    font-weight: 800;
    transition:
        opacity 0.15s,
        transform 0.15s;
    background: var(--gold);
    color: #000;
}
.xaw-hero__btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}
.xaw-hero__btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.xaw-hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.3;
}
.xaw-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, transparent);
}

/* ── FILTER ── */
.xaw-filter {
    border-bottom: 1px solid var(--bd);
    background: var(--bg);
    position: sticky;
    top: 60px;
    z-index: 90;
    backdrop-filter: blur(12px);
}
.xaw-filter__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 1.5rem;
    gap: 0.15rem;
}
.xaw-filter__inner::-webkit-scrollbar {
    display: none;
}
.xaw-filter__tab {
    flex-shrink: 0;
    padding: 0.8rem 1rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--t3);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    font-family: var(--f);
    transition: color 0.15s;
}
.xaw-filter__tab:hover {
    color: var(--t2);
}
.xaw-filter__tab.active {
    color: #fff;
    border-bottom-color: var(--gold);
}
.xaw-filter__count {
    font-size: 0.55em;
    opacity: 0.5;
    margin-left: 0.25rem;
}

/* ── BODY ── */
.xaw-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.xaw-lbl {
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--t3);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.xaw-lbl::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--bd);
}

/* ── POSTER GRID (like streaming) ── */
.xaw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 1.1rem;
    margin-bottom: 3rem;
}
.xaw-card {
    cursor: pointer;
    display: block;
}
.xaw-card__poster {
    aspect-ratio: 2/3;
    border-radius: 12px;
    background: var(--s2);
    overflow: hidden;
    position: relative;
    margin-bottom: 0.6rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.22s,
        box-shadow 0.22s;
}
.xaw-card:hover .xaw-card__poster {
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}
.xaw-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    display: block;
}
.xaw-card__poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.08) 60%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}
.xaw-card__poster-brand {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0.8rem 0.7rem;
    text-align: left;
}
.xaw-card__poster-showname {
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xaw-card__poster-edition {
    font-size: 0.52rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 0.15rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.xaw-card__poster-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(160deg, rgba(201, 162, 39, 0.12), rgba(13, 13, 13, 0.95));
    text-align: center;
    padding: 1rem;
}
.xaw-card__poster-ph-icon {
    font-size: 1.8rem;
    opacity: 0.5;
}
.xaw-card__poster-ph-name {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
}
.xaw-card__poster-ph-show {
    font-size: 0.48rem;
    font-weight: 600;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}
.xaw-card__status {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.44rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.22rem 0.5rem;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}
.xaw-card__year-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 0.6rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.72);
    color: var(--gold);
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}
.xaw-card__winners {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 0.5rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.72);
    color: var(--t2);
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}
.xaw-card__title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--t1);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xaw-card__meta {
    font-size: 0.62rem;
    color: var(--t3);
    margin-top: 0.12rem;
}

/* ── WINNERS CAROUSEL ── */
.xaw-carousel {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin-bottom: 3rem;
}
.xaw-carousel::-webkit-scrollbar {
    display: none;
}
.xaw-winner {
    flex-shrink: 0;
    width: 140px;
    scroll-snap-align: start;
}
.xaw-winner__img {
    width: 140px;
    height: 175px;
    border-radius: 12px;
    background: var(--s2);
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s;
}
.xaw-winner:hover .xaw-winner__img {
    transform: scale(1.04);
}
.xaw-winner__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.xaw-winner__img-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--s2), var(--s3));
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
}
.xaw-winner__name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--t1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
}
.xaw-winner__cat {
    font-size: 0.52rem;
    color: var(--t3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xaw-winner__show {
    font-size: 0.48rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 0.1rem;
}

/* ── SHOW ROWS (by show title) ── */
.xaw-row-block {
    margin-bottom: 2.5rem;
}
.xaw-row-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.xaw-row-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    background: var(--gold);
    color: #000;
}
.xaw-row-count {
    font-size: 0.65rem;
    color: var(--t3);
}
.xaw-row-scroll {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
}
.xaw-row-scroll::-webkit-scrollbar {
    display: none;
}
.xaw-mini {
    flex-shrink: 0;
    width: 120px;
    scroll-snap-align: start;
}
.xaw-mini__poster {
    width: 120px;
    height: 170px;
    border-radius: 10px;
    background: var(--s2);
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.xaw-mini:hover .xaw-mini__poster {
    transform: scale(1.04);
}
.xaw-mini__poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.xaw-mini__poster-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), var(--s2));
    font-size: 0.55rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.xaw-mini__title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--t1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xaw-mini__year {
    font-size: 0.58rem;
    color: var(--t3);
}

@media (max-width: 520px) {
    .xaw-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.8rem;
    }
}
