:root{
    --bg:#07070a;
    --panel: rgba(255,255,255,0.06);
    --panel2: rgba(255,255,255,0.08);
    --border: rgba(255,255,255,0.10);
    --text: rgba(255,255,255,0.92);
    --muted: rgba(255,255,255,0.55);
    --soft: rgba(255,255,255,0.18);
    --radius: 6px;

    --brand-red:#FE0000;
    --brand-deep:#0F232E;
}

.meta__kicker{
    font-family: "Doto", system-ui, sans-serif;
    letter-spacing: 1.6px;
    font-size: 14px;
    opacity: 0.75;
}

.card__kicker{
    font-family: "Doto", system-ui, sans-serif;
    letter-spacing: 1.2px;
}

.sbs-logo{
    display:flex;
    flex-direction:row;
    gap:6px;
    align-items:center;
    flex: 0 0 auto;
}

.sbs-box{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--brand-red);
    color:#fff;

    font-family:"Doto", system-ui, sans-serif;
    font-size:16px;
    font-weight:700;

    border-radius:6px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:var(--text);
    background: var(--bg);
}

.doto{font-family: "Doto", system-ui, sans-serif;letter-spacing: -0.5px;}

.topbar{
    position: sticky;
    top:0;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 22px;
    backdrop-filter: blur(18px);
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand{ display:flex; gap:14px; align-items:center; }

/* (leftover) keep harmless */
.logo{
    width:46px; height:46px;
    border-radius: 14px;
    display:grid; place-items:center;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    font-weight:700;
}

.brand__title{ font-size:20px; }
.brand__sub{ font-size:12px; color:var(--muted); margin-top:3px; }

.links{ display:flex; gap:12px; }
.links a{
    text-decoration:none;
    color:var(--text);
    padding:10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    transition: 0.15s ease;
}
.links a:hover{ background: rgba(255,255,255,0.09); }

.wrap{ max-width: 1120px; margin: 0 auto; padding: 44px 22px 170px; }

.hero h1{
    font-size: 64px;
    margin: 20px 0 10px;
}

/* Episodes head + sort bar */
.episodes{ margin-top: 34px; }

.episodes__head{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
    align-items: center;
}
.episodes__title h2{ margin:0; font-size:22px; white-space:nowrap; }

.episodes__search{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 5px;
    padding: 0 14px;
    height: 36px;
    width: 100%;
    color: rgba(255,255,255,0.80);
    font-family: "Doto", system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s, background 0.15s;
}
.episodes__search::placeholder{ color: rgba(255,255,255,0.25); }
.episodes__search:focus{
    border-color: rgba(254,0,0,0.40);
    background: rgba(254,0,0,0.04);
}

.muted{ color:var(--muted); font-size: 13px; margin-top:6px; }

.sort{
    display:flex;
    flex-wrap:nowrap;
    gap:6px;
    height: 36px;
}

.sort__btn{
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
    border-radius: 5px;
    padding: 0 14px;
    height: 100%;
    flex: 1;
    cursor:pointer;
    transition: 0.12s ease;
    font-family: "Doto", system-ui, sans-serif;
    letter-spacing: 0.6px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.sort__btn:hover{ background: rgba(255,255,255,0.10); }

.sort__btn.active{
    border-color: var(--brand-red);
    box-shadow: 0 0 0 1px rgba(254,0,0,0.35);
}

/* Grid */
.grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 980px){
    .grid{ grid-template-columns: repeat(2, 1fr);}
    .episodes__head{ grid-template-columns: repeat(2, 1fr); }
    .episodes__title{ grid-column: 1 / -1; }
    .hero h1{ font-size: 48px; }
}
@media (max-width: 640px){
    .grid{ grid-template-columns: 1fr;}
    .episodes__head{ grid-template-columns: 1fr; }
    .hero h1{ font-size: 40px; }
}

/* Card */
.card{
    border-radius: var(--radius);
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: 0 20px 70px rgba(0,0,0,0.45);
    cursor:pointer;
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.card:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.075);
    border-color: rgba(255,255,255,0.16);
}
.card__top{ display:flex; gap: 12px; align-items:center; }
.card__img{
    width: 60px;
    height: 60px;
    border-radius: 2px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    flex: 0 0 auto;
}
.card__img img{width:100%;height:100%;object-fit:cover;display:block;}
.card__kicker{font-size: 15px;color: var(--muted);}
.card__title{margin-top: 5px;font-size: 14px;line-height: 1.15;}
.card__sub{ margin-top: 6px; font-size: 12px; color: var(--muted); }

.card__tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top: 14px; }
.tag{
    display:inline-flex;
    align-items:center;
    padding: 3px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.22);
    font-size: 10px;
    color: rgba(255,255,255,0.86);
}

/* Player */
.player{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 20;
    padding: 0 18px;
}

.player{
    transition: transform 260ms ease, opacity 260ms ease;
    transform: translateY(0);
    opacity: 1;
}
.player.is-hidden{
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
}
.player__inner{
    max-width: 1220px;
    margin: 0 auto;
    border-radius: 5px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 25px 90px rgba(0,0,0,0.6);
    backdrop-filter: blur(18px);
    padding: 16px 16px;
    display:grid;
    grid-template-columns: 1.4fr 0.8fr 1.5fr 0.8fr;
    gap: 14px;
    align-items:center;
}
@media (max-width: 980px){
    .player__inner{ grid-template-columns: 1fr; gap: 10px; }
}

.player__meta{ display:flex; gap: 12px; align-items:center; min-width: 0; }
.cover{
    width: 72px;
    height:72px;
    border-radius: 5px;
    overflow:hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    flex: 0 0 auto;
}
.cover img{ width:100%; height:100%; object-fit:cover; display:block; }

.meta{ min-width:0; }
.meta__kicker{ font-size: 12px; color: var(--muted); }
.meta__title{
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.meta__tags{ margin-top: 10px; display:flex; gap:8px; flex-wrap:wrap; }

.player__controls{
    display:flex;
    gap: 10px;
    justify-content:center;
    align-items:center;
}
.btn{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:rgba(255,255,255,0.92);

    border-radius:6px;

    cursor:pointer;
    transition:0.15s ease;
}
.btn:hover{ background: rgba(255,255,255,0.10); }
.btn.big{
    width:46px;
    height:46px;

    border-radius:6px;

    background:rgba(254,0,0,0.15);
    border:1px solid rgba(254,0,0,0.35);
}
.btn.pill{ border-radius:5px; }

/* ✅ WAVE (FIXED ORIENTATION + CLEAN LAYOUT) */
.player__wave{
    position: relative;
    height: 46px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    overflow:hidden;
    display:flex;
    align-items:center;
    padding: 0 12px;
}

/* ✅ Bars now fill the wave area (no more vertical centering tricks) */
.bars{
    width: 100%;
    position:absolute;
    left: 12px;
    right: 12px;
    top: 8px;
    bottom: 8px;            /* gives room above/below */
    display:flex;
    gap: 3px;
    align-items:flex-end;   /* ✅ grow from bottom (normal) */
    pointer-events:none;
}

/* ✅ Bar default = deep muted; JS will paint listened red */
.bar{
    flex: 1;
    min-width: 2px;
    border-radius:2px;
    background: rgba(15,35,46,0.45);
    transform-origin: bottom;            /* ✅ important */
    transition: background-color 0.18s ease;
}

/* Seek stays on top */
.seek{
    position: relative;
    width:100%;
    background: transparent;
    -webkit-appearance:none;
    appearance:none;
    height: 28px;
    outline:none;
    z-index: 2;
}
.seek::-webkit-slider-thumb{
    -webkit-appearance:none;
    appearance:none;
    width: 10px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.0);
    border: none;
}
.seek::-webkit-slider-runnable-track{
    height: 28px;
    background: transparent;
}

.player__right{
    display:flex;
    justify-content: flex-end;
    align-items:center;
    gap: 14px;
}
.time{ font-size: 12px; color: var(--muted); }
.sep{ margin: 0 6px; opacity: 0.6; }

.volume{ display:flex; align-items:center; gap: 10px; }
.volume input[type="range"]{ width: 160px; }

.volIcon{
    color:#FE0000;
    display:flex;
    align-items:center;
}

.volume:hover .volIcon{
    color:#ff3b3b;
}

.sc-hidden{
    position:absolute;
    width:1px; height:1px;
    opacity:0;
    pointer-events:none;
    left:-9999px;
    top:-9999px;
}

/* ✅ Active card: real red border */
.card.active{
    border: 0px solid var(--brand-red);
    box-shadow:
            0 0 0 1px var(--brand-red),
            0 10px 40px rgba(254,0,0,0.25);
}

/* ===== VOLUME SLIDER STYLE (stable) ===== */
.volume input[type="range"]{
    -webkit-appearance:none;
    appearance:none;
    width:50px;
    height:6px;
    border-radius:0;
    background: rgba(255,255,255,0.15); /* JS changes realtime */
    outline:none;
}

.volume input[type="range"]::-webkit-slider-runnable-track{
    height:6px;
    background: transparent;
}

.volume input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:12px;
    height:18px;
    border-radius:0;
    background:#FE0000;
    cursor:pointer;
    margin-top:-6px;
}

.moreWrap{
    margin-top: 14px;
    display:flex;
    justify-content:center;
}

.moreBtn{
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
    border-radius: 999px;
    padding: 12px 18px;
    cursor:pointer;
    transition: 0.12s ease;
    letter-spacing: 0.8px;
    font-size: 12px;
    line-height: 1;
}

.moreBtn:hover{
    background: rgba(255,255,255,0.10);
}

.moreBtn:active{
    transform: translateY(1px);
}

.moreBtn[hidden]{
    display:none;
}

.card__kickerRow{
    display:flex;
    align-items: center;
    justify-content:space-between;
    gap: 27px;
}

.card__info{
    margin-top: 6px;
    display:flex;
    align-items:center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255,255,255,0.55);
}

.card__info .dot{
    opacity: 0.55;
}

.chip{
    display:inline-flex;
    align-items:center;
    padding: 6px 6px;
    border-radius: 999px;
    border: 1px solid rgba(254,0,0,0.25);
    background: rgba(254,0,0,0.10);
    color: rgba(255,255,255,0.9);
    font-size: 8px;
    letter-spacing: 0.6px;
    line-height: 1;
    white-space: nowrap;
}


/* Wave progress colors */
.bar{ background: rgba(15,35,46,0.45); }
.bar.listened{ background: rgba(254,0,0,0.95); }


/* Episode card PLAY button (bottom-right, red pill) */
.card{ position: relative; }
.card__playBtn{
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.22);
    background: var(--brand-red);
    color: #fff;
    font-family: "Doto", system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: 0.10em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    user-select: none;
}
.card__playBtn:hover{ filter: brightness(1.06); }
.card__playBtn:active{ transform: translateY(1px); }
.card__playBtn[disabled]{ opacity: 0.55; cursor: not-allowed; }


/* Waveform: white + dark gray */
.bar{ background: rgba(255,255,255,0.28) !important; }
.bar.listened{ background: rgba(255,255,255,0.92) !important; }


.volIcon svg{ width:18px; height:18px; display:block; }
.volIcon svg path{ fill: var(--brand-red); }

/* ================================
   TOP SLIDER (main page)
   ================================ */
.topSlider{
    width: min(1200px, calc(100% - 40px));
    margin: 26px auto 10px;
}

.topSlider__viewport{
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}

.topSlider__track{
    display: flex;
    width: 100%;
    transform: translateX(0%);
    transition: transform 420ms ease;
}

.topSlider__slide{
    min-width: 100%;
    aspect-ratio: 16 / 6;
    position: relative;
}

.topSlider__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
}

.topSlider__shade{
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 120% at 70% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.topSlider__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(15,35,46,0.35);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.9);
    font-size: 28px;
    line-height: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
}

.topSlider__nav:hover{
    background: rgba(15,35,46,0.50);
    border-color: rgba(254,0,0,0.45);
}

.topSlider__nav--prev{ left: 14px; }
.topSlider__nav--next{ right: 14px; }

.topSlider__dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0 0;
}

.topSlider__dot{
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 1px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.topSlider__dot.is-active{
    background: #FE0000;
    border-color: rgba(254,0,0,0.9);
    box-shadow: 0 0 0 4px rgba(254,0,0,0.15);
}

@media (max-width: 720px){
    .topSlider{
        width: calc(100% - 22px);
        margin-top: 18px;
    }
    .topSlider__slide{
        aspect-ratio: 16 / 8;
    }
    .topSlider__nav{
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}

/* ================================
   TOP SLIDER — FULL WIDTH HERO
   ================================ */
.topSlider{
    width: 100%;
    margin: 0;
    padding: 0;
}

.topSlider__viewport{
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    box-shadow: none;
}

/* Make it a full-width hero section */
.topSlider__slide{
    aspect-ratio: auto;
    height: clamp(320px, 56vh, 640px);
}

@media (max-width: 720px){
    .topSlider__slide{
        height: clamp(260px, 44vh, 460px);
    }
    .topSlider__nav--prev{ left: 10px; }
    .topSlider__nav--next{ right: 10px; }

}

/* ================================
   MOBILE RESPONSIVE (SBS)
   ================================ */

/* box-sizing fix globally */
*, *::before, *::after {
    box-sizing: border-box;
}

/* General container spacing */
@media (max-width: 900px){
    .wrap{
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* ============================
   HEADER — mobile wrap
   ============================ */
@media (max-width: 640px){
    .topbar{
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        gap: 10px;
    }

    .brand{
        flex: 1 1 auto;
        min-width: 0;
        gap: 8px;
    }

    .sbs-logo{
        gap: 4px;
        flex: 0 0 auto;
    }

    .sbs-box{
        width: 24px;
        height: 24px;
        font-size: 12px;
        border-radius: 4px;
    }

    .brand__text{
        min-width: 0;
    }

    .brand__title{
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand__sub{
        font-size: 10px;
        white-space: nowrap;
    }

    .links{
        flex: 0 0 auto;
        gap: 12px;
    }

    .links__label{
        display: none;
    }

    .links a svg{
        width: 18px;
        height: 18px;
    }
}

/* ============================
   SLIDER — phone height
   ============================ */
@media (max-width: 720px){
    .topSlider__slide{
        height: clamp(220px, 40vw, 400px);
    }
    .topSlider__nav--prev{ left: 10px; }
    .topSlider__nav--next{ right: 10px; }

}

/* ============================
   EPISODES HEAD + SORT BAR
   ============================ */
@media (max-width: 720px) and (min-width: 641px){
    .sort{
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .sort::-webkit-scrollbar{ display: none; }
    .sort__btn{
        white-space: nowrap;
        flex: 0 0 auto;
    }
}

/* ============================
   EPISODES GRID
   ============================ */
@media (max-width: 980px){
    .grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .hero h1{ font-size: 44px; }
}

@media (max-width: 540px){
    .grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero h1{ font-size: 32px; }

    .card{
        padding: 14px;
    }

    .card__img{
        width: 56px;
        height: 56px;
    }

    .card__title{
        font-size: 14px;
    }

    .card__playBtn{
        right: 14px;
        bottom: 14px;
    }
}

/* ============================
   PLAYER — mobile layout
   ============================ */
@media (max-width: 720px){
    .player{
        bottom: 10px;
        padding: 0 10px;
    }

    .player__inner{
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 14px;
    }

    /* Row 1: cover + meta */
    .player__meta{
        gap: 10px;
    }

    .cover{
        width: 52px;
        height: 52px;
    }

    .meta__title{
        font-size: 16px;
    }

    /* Row 2: controls centered */
    .player__controls{
        justify-content: center;
        gap: 8px;
    }

    /* Row 3: waveform full width */
    .player__wave{
        width: 100%;
    }

    /* Row 4: time + volume + close */
    .player__right{
        justify-content: space-between;
        gap: 10px;
    }

    /* Volume slider wider on mobile */
    .volume input[type="range"]{
        width: 80px;
    }

    /* Bigger tap targets */
    .btn{
        width: 42px;
        height: 42px;
    }

    .btn.big{
        width: 48px;
        height: 48px;
    }
}

/* ============================
   TAP TARGETS — minimum 44px
   ============================ */
@media (max-width: 640px){
    .sort__btn,
    .moreBtn{
        min-height: 40px;
        padding: 10px 16px;
    }
}

/* ====== FOLLOW US NAV ====== */
.links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.links__label {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.links a:hover {
    color: #fff;
    background: none;
    transform: translateY(-2px);
}

/* ====== FOLLOW US NAV ====== */
.links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.links__label {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}
.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    padding: 0;
    background: none;
    border: none;
    transition: color 0.15s ease, transform 0.15s ease;
}
.links a:hover {
    color: #fff;
    background: none;
    transform: translateY(-2px);
}

/* ================================
   NAV MENU (desktop center)
   ================================ */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu__item {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.nav-menu__item:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}

.nav-menu__item.active {
    color: #fff;
    border-color: rgba(254,0,0,0.4);
    background: rgba(254,0,0,0.08);
}

/* RIGHT side wrapper */
.topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

/* ================================
   HAMBURGER BUTTON
   ================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.hamburger:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(254,0,0,0.35);
}

/* Open state */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================
   MOBILE DROPDOWN MENU
   ================================ */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 57px; /* header height on mobile */
    left: 0;
    right: 0;
    z-index: 9;
    background: rgba(7,7,10,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0 14px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.mobile-menu__item {
    text-decoration: none;
    color: rgba(255,255,255,0.80);
    font-size: 13px;
    letter-spacing: 1px;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.12s ease, background 0.12s ease;
}

.mobile-menu__item:last-child { border-bottom: none; }

.mobile-menu__item:hover {
    color: #fff;
    background: rgba(254,0,0,0.06);
}

/* ================================
   SOCIAL BAR (below slider)
   ================================ */
.social-bar {
    display: none; /* hidden on desktop */
}

/* ================================
   MOBILE HEADER OVERRIDES
   ================================ */
@media (max-width: 740px) {
    .topbar {
        padding: 10px 16px;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    /* Logo: center on mobile */
    .topbar {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
        gap: 8px;
    }

    /* Hamburger in col 1 (left) */
    .hamburger {
        display: flex !important;
        grid-column: 1;
        justify-self: start;
    }

    /* Brand centered in col 2 */
    .brand {
        grid-column: 2;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        text-align: center;
    }

    .brand__text {
        text-align: center;
    }

    .brand__title {
        font-size: 14px;
        white-space: nowrap;
    }

    .brand__sub {
        font-size: 10px;
        margin-top: 1px;
    }

    .sbs-logo {
        gap: 4px;
    }

    .sbs-box {
        width: 22px;
        height: 22px;
        font-size: 11px;
        border-radius: 4px;
    }

    /* Social icons + nav hidden on mobile header */
    .nav-menu { display: none; }
    .links { display: none; }

    /* Right col = radio button only on mobile */
    .topbar__right {
        grid-column: 3;
        justify-content: flex-end;
        gap: 0;
        display: flex;
        align-items: center;
    }

    /* Hide social links on mobile */
    .topbar__right .links { display: none !important; }

    /* Radio stays visible and right-aligned */
    .radio-wrap {
        display: flex;
        justify-content: flex-end;
    }

    /* Show social bar below slider */
    .social-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        background: rgba(255,255,255,0.03);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .social-bar__link {
        display: flex;
        align-items: center;
        gap: 7px;
        text-decoration: none;
        color: rgba(255,255,255,0.65);
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(255,255,255,0.04);
        transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    }

    .social-bar__link:hover {
        color: #fff;
        border-color: rgba(254,0,0,0.35);
        background: rgba(254,0,0,0.06);
    }

    .social-bar__label {
        font-size: 10px;
        letter-spacing: 0.6px;
        white-space: nowrap;
    }
}

/* ================================
   FINAL FIXES
   ================================ */

/* 1. nav-menu links — no underline, clean style */
.nav-menu__item {
    text-decoration: none !important;
    color: rgba(255,255,255,0.75) !important;
}

/* 2. social icons in header — icon only, no border/bg */
.links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: rgba(255,255,255,0.70) !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    transition: color 0.15s ease, transform 0.15s ease !important;
}
.links a:hover {
    color: #fff !important;
    background: none !important;
    transform: translateY(-2px) !important;
}

/* 3. hamburger hidden on desktop */
.hamburger { display: none !important; }
@media (max-width: 740px) {
    .hamburger { display: flex !important; }
}

/* 4. social bar — sits below slider cleanly, not overlapping */
.social-bar {
    display: none;
    position: relative;
    z-index: 1;
    background: rgba(7,7,10,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 740px) {
    .social-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

/* ================================
   SLIDER SOCIAL ICONS (above dots)
   ================================ */
.topSlider__social {
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.40);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    z-index: 3;
}

.topSlider__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}

.topSlider__social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* nav to the right, social icons hidden from header on all screens */
.topbar {
    justify-content: space-between;
}

/* move nav to right side — hide from center, show on right */
.nav-menu {
    margin-left: auto;
    margin-right: 20px;
}

/* hide social from header — they live in slider now */
.topbar__right .links {
    display: none !important;
}

.topSlider__social-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.4px;
    white-space: nowrap;
    margin-right: 2px;
}

/* ================================
   SLIDER NAV — player btn style
   ================================ */
.topSlider__nav {
    width: 46px !important;
    height: 46px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.92) !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: 0.15s ease !important;
}

.topSlider__nav:hover {
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.20) !important;
}

/* ================================
   SLIDER DOTS — square style
   ================================ */
.topSlider__dot {
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    border-radius: 1px !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    background: rgba(255,255,255,0.18) !important;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s !important;
    font-size: 0 !important;
}

.topSlider__dot::after {
    content: none;
}

.topSlider__dot.is-active {
    background: #FE0000 !important;
    border-color: rgba(254,0,0,0.9) !important;
    box-shadow: 0 0 0 4px rgba(254,0,0,0.15) !important;
}

/* Close button — same size as other btns */
.closeBtn {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    font-size: 16px !important;
}

/* Fix bars right side clipping */
.bars {
    width: auto !important;
    left: 12px !important;
    right: 12px !important;
}

/* Fix bars overflow right side */
.bars {
    width: unset !important;
}

/* Bars — final fix, no width at all */
.bars {
    width: unset !important;
    left: 14px !important;
    right: 14px !important;
}

/* Time — one line, Doto font */
.time {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 2px !important;
    white-space: nowrap !important;
    font-family: "Doto", system-ui, sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    color: var(--muted) !important;
}

.time .sep {
    margin: 0 2px !important;
}

/* PLAY button — chip style like duration badge */
.card__playBtn {
    padding: 5px 10px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(254,0,0,0.35) !important;
    background: rgba(254,0,0,0.12) !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    box-shadow: none !important;
}
.card__playBtn:hover {
    background: rgba(254,0,0,0.22) !important;
    border-color: rgba(254,0,0,0.55) !important;
    filter: none !important;
}

/* PLAY button — fix alignment and radius */
.card__playBtn {
    border-radius: 5px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    line-height: 1 !important;
}

/* PLAY button icon vertical align fix */
.card__playIco {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

.card__playIco svg {
    display: block !important;
    margin-bottom: 1px;
}

/* PLAY btn — square icon only */
.card__playBtn {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.card__playIco {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Tag (genre) — same style as play btn, 5px radius */
.tag {
    border-radius: 5px !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.70) !important;
    padding: 4px 10px !important;
}

/* Chip (duration) — match play btn color */
.chip {
    border-radius: 5px !important;
    border: 1px solid rgba(254,0,0,0.35) !important;
    background: rgba(254,0,0,0.12) !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 10px !important;
    padding: 4px 7px !important;
}

/* Chip (duration) — same as tag style */
.chip {
    border-radius: 5px !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.70) !important;
    font-size: 10px !important;
    padding: 4px 7px !important;
}

/* Card kicker — 16px, no wrap */
.card__kicker {
    font-size: 16px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* kicker row — kicker shrinks, chip stays fixed */
.card__kickerRow {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    min-width: 0 !important;
}

.card__kicker {
    font-size: 16px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

.chip {
    flex: 0 0 auto !important;
}

/* kicker — smaller so it fits, allow 2 lines */
.card__kicker {
    font-size: 13px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.2 !important;
}

/* Card top — chip and play btn on same baseline */
.card__top {
    align-items: flex-start !important;
}

.card__meta {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    flex: 1 !important;
}

.card__kickerRow {
    align-items: flex-start !important;
}

.card__kicker {
    font-size: 15px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.25 !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

/* Chip — transparent background, keep border */
.chip {
    background: transparent !important;
}

/* Play icon — center vertically */
.card__playIco svg {
    display: block !important;
    position: relative !important;
    top: 1px !important;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.25);
    padding-bottom: 100px; /* player space */
}

.footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 22px 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Brand + about */
.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__name {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--text);
}

.footer__about {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    max-width: 380px;
}

/* Social */
.footer__social-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 14px;
}

.footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    letter-spacing: 0.6px;
    padding: 9px 14px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    width: fit-content;
}

.footer__link:hover {
    color: #fff;
    border-color: rgba(254,0,0,0.35);
    background: rgba(254,0,0,0.06);
}

/* Bottom bar */
.footer__bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 22px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.30);
    letter-spacing: 0.5px;
}

.footer__bottom-sub {
    color: rgba(255,255,255,0.20);
    font-size: 11px;
}

/* Mobile */
@media (max-width: 640px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 16px 24px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px 16px;
    }

    .footer__about {
        max-width: 100%;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Offset for sticky header */
#episodes {
    scroll-margin-top: 80px;
}

#episodesAnchor {
    scroll-margin-top: 0px;
}

#episodesAnchor {
    scroll-margin-top: 57px !important;
}

#episodesAnchor {
    scroll-margin-top: 62px !important;
}

/* ================================
   UPCOMING EVENTS
   ================================ */
.upcoming {
    max-width: 1120px;
    margin: 60px auto 0;
    padding: 0 22px;
    scroll-margin-top: 80px;
}

.upcoming__title {
    font-size: 40px;
    margin: 0 0 28px;
    text-align: center;
}

@media (max-width: 640px) {
    .upcoming__title { font-size: 28px; }
    .upcoming { padding: 0 14px; }
}

/* Upcoming title — same as LATEST EPISODES */
.upcoming {
    max-width: 1120px;
    margin: 0 auto;
    padding: 44px 22px 0;
    scroll-margin-top: 80px;
}

.upcoming__title {
    font-size: 64px !important;
    margin: 20px 0 10px !important;
    text-align: center !important;
}

@media (max-width: 980px) {
    .upcoming__title { font-size: 48px !important; }
}
@media (max-width: 640px) {
    .upcoming__title { font-size: 40px !important; }
    .upcoming { padding: 44px 14px 0; }
}

/* Upcoming inside wrap — same top spacing as LATEST EPISODES from slider */
.upcoming {
    margin-top: 44px !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Fixed header */
.topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
}

body {
    padding-top: 62px;
}

/* Fix body padding for fixed header — only push content, not slider */
body {
    padding-top: 0 !important;
}

.topbar + * {
    margin-top: 62px;
}

.topSlider {
    margin-top: 62px !important;
}

/* Upcoming section — more space from MORE button */
.upcoming {
    margin-top: 80px !important;
}

/* Nav menu — uppercase */
.nav-menu__item,
.mobile-menu__item {
    text-transform: uppercase !important;
}

/* More space between fixed header and upcoming section on scroll */
.upcoming {
    scroll-margin-top: 100px !important;
}

.upcoming {
    scroll-margin-top: 140px !important;
}






.topSlider__social-label {
    color: #FFFFFF !important;
}

/* Views chip */
.chip--views {
    background: rgba(254,0,0,0.08) !important;
    border-color: rgba(254,0,0,0.20) !important;
    color: rgba(255,255,255,0.70) !important;
}

/* Views chip — same style as duration chip */
.chip--views {
    background: transparent !important;
    border-color: rgba(255,255,255,0.12) !important;
    color: rgba(255,255,255,0.55) !important;
}
/* ================================
   ABOUT MODAL
   ================================ */
.about-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.about-modal.is-open { display: flex; }

.about-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.about-modal__box {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(12,12,16,0.97);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 52px 56px;
    animation: slideUp 0.25s ease;
    scrollbar-width: none;
}
.about-modal__box::-webkit-scrollbar { display: none; }
@keyframes slideUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }

.about-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.60);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}
.about-modal__close:hover { background: rgba(254,0,0,0.15); border-color: rgba(254,0,0,0.35); color: #fff; }

.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.about-left { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.about-logo { display: flex; flex-direction: row; gap: 14px; align-items: center; }
.about-box {
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-red); color: #fff;
    font-family: "Doto", system-ui, sans-serif;
    font-size: 38px; font-weight: 700;
    border-radius: 16px;
    box-shadow: 0 0 32px rgba(254,0,0,0.25);
}
.about-brand-text { display: flex; flex-direction: column; gap: 4px; }
.about-brand-title { font-size: 18px; color: #fff; line-height: 1.2; }
.about-brand-sub { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 1px; }
.about-socials { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.about-social-btn {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    border-radius: 7px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-family: "Doto", system-ui, sans-serif; font-size: 12px; letter-spacing: 1px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.about-social-btn:hover { color: rgba(255,255,255,0.90); background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); }
.about-social-btn--ig:hover { border-color: rgba(225,48,108,0.4); background: rgba(225,48,108,0.05); }
.about-social-btn--sc:hover { border-color: rgba(255,85,0,0.4); background: rgba(255,85,0,0.05); }
.about-social-btn--yt:hover { border-color: rgba(254,0,0,0.4); background: rgba(254,0,0,0.05); }
.about-social-btn--tt:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
.about-social-btn svg { opacity: 0.5; flex-shrink: 0; transition: opacity 0.15s; }
.about-social-btn:hover svg { opacity: 0.9; }
.about-right { display: flex; flex-direction: column; gap: 20px; }
.about-kicker { font-size: 24px; letter-spacing: 3px; color: rgba(255,255,255,0.30); }
.mixes-modal__header .about-kicker { color: rgba(255,255,255,0.90); }
.about-divider { width: 32px; height: 1px; background: rgba(254,0,0,0.5); }
.about-text { display: flex; flex-direction: column; gap: 14px; }
.about-text p { margin: 0; font-size: 12px; line-height: 2; color: rgba(255,255,255,0.50); font-family: "Doto", system-ui, sans-serif; font-weight: 100; letter-spacing: 0.3px; }
.about-text p strong { color: rgba(255,255,255,0.85); font-weight: 100; }
.about-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.about-tag { padding: 4px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.30); }

@media (max-width: 640px) {
    .about-modal__box { padding: 28px 20px; width: 95%; }
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-left { align-items: flex-start; }
    .about-socials { display: grid; grid-template-columns: repeat(3, 1fr); }
    .about-social-btn { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 12px 8px; font-size: 10px; }
    .about-box { width: 60px; height: 60px; font-size: 30px; border-radius: 13px; }
}

/* ================================
   MIXES FORM MODAL
   ================================ */
.mixes-modal__header { margin-bottom: 28px; }
.mixes-modal__sub {
    margin: 14px 0 0;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    line-height: 1.8;
}
.mixes-form { display: flex; flex-direction: column; gap: 16px; }
.mixes-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mixes-form__field { display: flex; flex-direction: column; gap: 7px; }
.mixes-form__label { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.30); }
.mixes-form__input {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;
    padding: 12px 14px;
    color: rgba(255,255,255,0.80);
    font-family: "Doto", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s, background 0.15s;
}
.mixes-form__input::placeholder { color: rgba(255,255,255,0.18); }
.mixes-form__input:focus { border-color: rgba(254,0,0,0.40); background: rgba(254,0,0,0.03); }
.mixes-form__select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.mixes-form__select option { background: #111; color: #fff; }
.mixes-form__textarea { resize: vertical; min-height: 100px; }
.mixes-form__submit {
    margin-top: 8px;
    padding: 14px 24px;
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    border-radius: 6px;
    color: #fff;
    font-family: "Doto", system-ui, sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: opacity 0.15s, background 0.15s;
    align-self: flex-start;
}
.mixes-form__submit:hover { opacity: 0.85; }
.mixes-form__submit:disabled { cursor: default; }

@media (max-width: 640px) {
    .mixes-form__row { grid-template-columns: 1fr; }
    .mixes-form__submit { width: 100%; text-align: center; }
}

.mixes-form__error {
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--brand-red);
    min-height: 14px;
}
.mixes-form__input.is-error {
    border-color: rgba(254,0,0,0.55);
    background: rgba(254,0,0,0.04);
}

.mixes-form__socials { display: flex; flex-direction: column; gap: 8px; }
.mixes-form__social-row {
    display: flex;
    align-items: center;
    gap: 0;
}
.mixes-form__social-prefix {
    flex-shrink: 0;
    width: 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.40);
    letter-spacing: 1px;
}
.mixes-form__social-input {
    border-radius: 0 6px 6px 0 !important;
    height: 42px;
}