/* ═══════════════════════════════════════════════════
   TaksiZRT — Premium Dark One-Page
   Stack: Vanilla CSS3, CSS Variables, Mobile-First
   ═══════════════════════════════════════════════════ */

/* ── Reset & Variables ─────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #0B1220;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-color: #FF8A3D;
    --accent-glow: rgba(255, 138, 61, 0.35);
    --accent-soft: rgba(255, 138, 61, 0.08);
    --text-light: #F9F9F9;
    --text-muted: #A9B4C8;
    --focus-ring: #FFD2B0;
    --border-glass: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-h: 72px;
    --space-2xs: 6px;
    --space-xs: 10px;
    --space-sm: 14px;
    --space-md: 20px;
    --space-lg: 28px;
    --space-xl: 40px;
    --space-2xl: 56px;
    --space-3xl: 80px;
    --container-max: 1200px;
    --container-gutter: 24px;
    --cookie-banner-gutter: 16px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

:target {
    scroll-margin-top: calc(var(--header-h) + 14px);
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient glow on body */
body::before {
    content: '';
    position: fixed;
    top: -30%;
    left: -20%;
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.045) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -15%;
    width: 70vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ── Utilities ─────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    position: relative;
    z-index: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 5000;
    padding: 10px 14px;
    border-radius: 10px;
    color: #0B1220;
    background: var(--focus-ring);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

:where(
    a,
    button,
    input,
    textarea,
    select,
    [tabindex]
):not([tabindex="-1"]):focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.hidden {
    display: none !important;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFB347 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ── Scroll Reveal ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Buttons ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.btn--glow {
    background: var(--accent-color);
    color: #0B1220;
}

.btn--glow:hover {
    box-shadow: 0 0 20px var(--accent-glow), 0 0 60px rgba(255, 138, 61, 0.15);
    transform: translateY(-2px);
}

.btn--solid {
    background: var(--accent-color);
    color: #0B1220;
}

.btn--solid:hover {
    background: #ff9d5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 138, 61, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
}

.btn--ghost:hover {
    background: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.1);
}

.btn--full {
    width: 100%;
}

.btn:disabled,
.btn.is-disabled {
    opacity: 0.56;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover,
.btn.is-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.btn.is-consent-gated {
    border: 1.5px solid rgba(255, 138, 61, 0.7);
    color: #ffd9bf;
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.2), rgba(255, 138, 61, 0.08));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 10px 26px rgba(255, 138, 61, 0.14);
}

.btn.is-consent-gated:hover,
.btn.is-consent-gated:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 138, 61, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 14px 34px rgba(255, 138, 61, 0.2);
}

.btn.is-consent-gated::after {
    content: attr(data-consent-tip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translate(-50%, 6px);
    opacity: 0;
    pointer-events: none;
    width: min(320px, 72vw);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.74rem;
    line-height: 1.35;
    color: #ffe9da;
    text-align: center;
    border: 1px solid rgba(255, 138, 61, 0.45);
    background: rgba(11, 18, 32, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.btn.is-consent-gated:hover::after,
.btn.is-consent-gated:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ── Header ────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(11, 18, 32, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35ch;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.03em;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.header__logo::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.header__logo:hover,
.header__logo:focus-visible {
    transform: translateY(-1px);
    text-shadow: 0 4px 20px rgba(255, 138, 61, 0.22);
}

.header__logo:hover::after,
.header__logo:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.header__logo-accent {
    color: var(--accent-color);
}

.header__nav {
    display: none;
}

.header__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.header__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
    position: relative;
}

.header__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width var(--transition);
}

.header__links a:hover,
.header__links a:focus-visible {
    color: var(--text-light);
}

.header__links a:hover::after,
.header__links a:focus-visible::after {
    width: 100%;
}

.header .btn--glow {
    display: none;
}

/* Burger */
.header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.header__burger:focus-visible {
    border-radius: 10px;
}

.header__burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav__links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    transition: color var(--transition);
}

.mobile-nav__links a:hover {
    color: var(--accent-color);
}

.mobile-nav__links a:focus-visible {
    color: var(--accent-color);
}

/* ── Hero ──────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 0 60px;
    overflow: hidden;
}

.hero__ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 138, 61, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255, 138, 61, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero__label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}

.hero__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown__num {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    color: var(--text-light);
}

.countdown__sep {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1;
    align-self: flex-start;
    margin-top: 0.1em;
}

.countdown__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

.hero__sub {
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero__cta {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hero__cta .btn {
    min-height: 56px;
    padding-inline: clamp(20px, 3vw, 34px);
}

.hero__heading-line {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(1.3rem, 6.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

/* Hero LIVE */
.hero__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 60, 60, 0.12);
    border: 1px solid rgba(255, 60, 60, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #FF4444;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #FF4444;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255, 68, 68, 0); }
}

.hero__player {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 138, 61, 0.15);
    box-shadow: 0 0 60px rgba(255, 138, 61, 0.08), 0 0 120px rgba(255, 138, 61, 0.04);
    background: rgba(0, 0, 0, 0.4);
}

.hero__player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hero__cinema {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero__cinema-status {
    margin: 0 auto 22px;
    color: var(--text-muted);
    text-align: center;
    max-width: 760px;
}

.hero__cinema-facade {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(22px, 3vw, 34px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 138, 61, 0.2);
    text-align: center;
}

.hero__cinema-facade h2 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2.8vw, 1.75rem);
}

.hero__cinema-facade p {
    margin: 0 auto 18px;
    max-width: 680px;
    color: var(--text-muted);
}

.hero__cinema-unlock {
    margin: 0 auto;
}

.hero__cinema-unlock:focus-visible {
    outline: 3px solid rgba(255, 138, 61, 0.7);
    outline-offset: 3px;
}

.hero__cinema-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: clamp(14px, 2vw, 24px);
    align-items: stretch;
}

.hero__cinema-player,
.hero__cinema-chat {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 138, 61, 0.2);
    background: rgba(4, 10, 28, 0.82);
    min-height: 220px;
}

.hero__cinema-player iframe,
.hero__cinema-chat iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.hero__cinema-player {
    aspect-ratio: 16 / 9;
}

.hero__cinema-chat {
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.hero__cinema-chat iframe {
    flex: 1 1 auto;
    min-height: 360px;
}

.hero__cinema-chat-fallback {
    display: block;
    padding: 10px 12px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 138, 61, 0.22);
    background: rgba(255, 138, 61, 0.06);
    transition: color var(--transition), background var(--transition);
}

.hero__cinema-chat-fallback:hover {
    color: var(--text-light);
    background: rgba(255, 138, 61, 0.11);
}

.hero__cinema-chat-fallback:focus-visible {
    outline: 2px solid rgba(255, 138, 61, 0.75);
    outline-offset: -2px;
}

/* ── Sections ──────────────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
}

.section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 138, 61, 0.015) 0%, transparent 40%, transparent 60%, rgba(255, 138, 61, 0.015) 100%);
    pointer-events: none;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    text-align: center;
}

.section__desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 56px;
}

.section__desc--vote-rules {
    font-size: 0.96rem;
    max-width: 760px;
    margin: -36px auto 34px;
}

.section__more {
    text-align: center;
    margin-top: 48px;
}

/* ── Bento Grid ────────────────────────────────── */
.bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.bento__card {
    padding: 32px 28px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.bento__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 138, 61, 0.08);
}

.bento__card:hover::before {
    opacity: 1;
}

.bento__card--tba {
    border-style: dashed;
    border-color: rgba(255, 138, 61, 0.36);
}

.bento__day {
    display: block;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    order: 1;
}

.bento__date {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    order: 2;
}

.bento__time {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    order: 3;
}

.bento__tag {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.35;
    color: var(--text-light);
    margin: 14px 0 8px;
    order: 5;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

.bento__tag--accent {
    color: var(--accent-color);
}

.bento__tag[href]:hover {
    color: var(--accent-color);
}

.bento__tag[href]:focus-visible {
    outline: none;
    border-radius: 8px;
    box-shadow: 0 0 0 2px rgba(255, 138, 61, 0.45);
}

.bento__info {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    order: 6;
}

.bento__thumb-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin: 6px 0 0;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    display: block;
    order: 4;
    text-decoration: none;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.bento__thumb-wrap[href]:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 138, 61, 0.48);
    box-shadow: 0 10px 24px rgba(255, 138, 61, 0.15);
}

.bento__thumb-wrap[href]:focus-visible {
    outline: none;
    border-color: rgba(255, 138, 61, 0.62);
    box-shadow: 0 0 0 2px rgba(255, 138, 61, 0.38);
}

.bento__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento__thumb[hidden] {
    display: none !important;
}

.bento__thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(218, 225, 239, 0.72);
    background: linear-gradient(180deg, rgba(255, 138, 61, 0.06), rgba(11, 18, 32, 0.9));
}

.bento__thumb-placeholder[hidden] {
    display: none !important;
}

.bento__thumb-wrap.is-placeholder {
    border-color: rgba(255, 255, 255, 0.12);
}

.bento__thumb-wrap.is-disabled,
.bento__tag.is-disabled {
    pointer-events: none;
}

.bento__tag.is-disabled {
    color: var(--text-muted);
}

/* ── Drama Form & List ─────────────────────────── */
.drama-form {
    padding: 20px;
    margin-bottom: 32px;
}

.drama-form__row {
    display: flex;
    gap: 12px;
}

.drama-form__input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.drama-form__input::placeholder {
    color: var(--text-muted);
}

.drama-form__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.15);
}

.drama-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drama-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.drama-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 138, 61, 0.06);
}

.drama-item__text {
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
    margin-right: 16px;
}

.drama-item__content {
    flex: 1;
    margin-right: 16px;
}

.drama-item__meta {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.77rem;
}

.drama-item__pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
}

.drama-item__vote {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid var(--border-glass);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.drama-item__vote-count {
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.drama-item__vote svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.drama-item__vote:hover:not(.is-voted) {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.drama-item__vote:focus-visible {
    border-color: var(--accent-color);
    color: var(--text-light);
}

.drama-item__vote:hover:not(.is-voted) svg {
    transform: translateY(-2px);
}

.drama-item__vote.is-voted {
    border-color: var(--accent-color);
    color: #0b1220;
    background: var(--accent-color);
    box-shadow: 0 10px 22px rgba(255, 138, 61, 0.28);
    cursor: default;
}

/* ── Leader highlight ─────────────────────────── */
.drama-item--leader {
    border: 1.5px solid rgba(255, 138, 61, 0.35);
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.08) 0%, rgba(255, 138, 61, 0.02) 100%);
    box-shadow: 0 0 24px rgba(255, 138, 61, 0.08), inset 0 0 0 1px rgba(255, 138, 61, 0.06);
}

.drama-item--leader:hover {
    box-shadow: 0 8px 32px rgba(255, 138, 61, 0.14);
}

/* ── Vote toast ──────────────────────────────── */
.vote-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(11, 18, 32, 0.95);
    border: 1px solid rgba(255, 138, 61, 0.5);
    border-radius: 12px;
    padding: 14px 28px;
    color: #f7f8fc;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 138, 61, 0.15);
    max-width: 90vw;
}

.vote-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── VOD Grid ──────────────────────────────────── */
.vod-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

.vod-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(255, 138, 61, 0.08);
}

.shot-card__link:focus-visible .vod-card {
    transform: translateY(-3px);
    box-shadow: 0 0 0 2px rgba(255, 210, 176, 0.35), 0 16px 48px rgba(255, 138, 61, 0.08);
}

.vod-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(11, 18, 32, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vod-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 18, 32, 0.6), transparent);
}

.vod-card__play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 30px var(--accent-glow);
}

.vod-card__play svg {
    width: 20px;
    height: 20px;
    fill: #0B1220;
    margin-left: -1px;
}

.vod-card__duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.vod-card__body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.vod-card__title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    color: var(--text-light);
    transition: color 0.22s ease, text-shadow 0.22s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.vod-card__meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* ── Shots Grid ────────────────────────────────── */
.shots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

.shots-grid-wrap {
    position: relative;
    min-height: clamp(260px, 34vw, 420px);
}

.shot-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(255, 138, 61, 0.08);
}

.shot-card__link:focus-visible .shot-card {
    transform: translateY(-3px);
    box-shadow: 0 0 0 2px rgba(255, 210, 176, 0.35), 0 16px 48px rgba(255, 138, 61, 0.08);
}

.shot-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg, rgba(255, 138, 61, 0.08), rgba(11, 18, 32, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.shot-card--vertical .shot-card__thumb,
.shot-card--horizontal .shot-card__thumb {
    aspect-ratio: 16 / 9 !important;
}

.shot-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 18, 32, 0.7), transparent 50%);
}

.shot-card__duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.shot-card__play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 0 24px var(--accent-glow);
}

.shot-card__play svg {
    width: 18px;
    height: 18px;
    fill: #0B1220;
    margin-left: -1px;
}

.shot-card__body {
    padding: 14px 16px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.shot-card__title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-light);
    transition: color 0.22s ease, text-shadow 0.22s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.shot-card__views {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shot-card__added {
    margin-top: 4px;
    font-size: 0.74rem;
    color: rgba(177, 188, 210, 0.92);
    line-height: 1.3;
}

.shot-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.shot-card__link:hover .vod-card__title,
.shot-card__link:focus-visible .vod-card__title,
.shot-card__link:hover .shot-card__title,
.shot-card__link:focus-visible .shot-card__title {
    color: var(--accent-color);
    text-shadow: 0 0 14px rgba(255, 138, 61, 0.2);
}

.shots-info-panel {
    padding: 20px 24px;
    margin-bottom: 18px;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}

.shots-info-panel h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.shots-info-panel p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 12px;
}

.shots-info-panel__rules {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shots-info-panel__rules li {
    position: relative;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.shots-info-panel__rules li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.7;
}

.shots-info-panel__rules li strong {
    color: var(--text-light);
}

.shots-info-panel__refresh {
    margin: 0 !important;
    font-size: 0.82rem !important;
    opacity: 0.7;
}

.shots-toolbar {
    display: inline-flex;
    justify-content: flex-end;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-top: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.shots-toolbar__group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    max-width: 100%;
}

.shots-toolbar__group label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.shots-control {
    width: clamp(220px, 30vw, 320px);
    min-width: 0;
    max-width: 100%;
    height: 44px;
    padding: 0 52px 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border-glass);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color-scheme: dark;
    margin-bottom: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #d2d9e6 50%),
        linear-gradient(135deg, #d2d9e6 50%, transparent 50%);
    background-position:
        calc(100% - 26px) calc(50% - 3px),
        calc(100% - 20px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.shots-control:hover {
    border-color: rgba(255, 138, 61, 0.45);
}

.shots-control:focus-visible {
    outline: none;
    border-color: rgba(255, 138, 61, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.2);
}

.shots-control option {
    color: #0B1220;
    background: #FFFFFF;
}

.vod-toolbar {
    display: inline-flex;
    justify-content: flex-end;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-top: 6px;
    margin-bottom: clamp(16px, 2vw, 24px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.vod-toolbar__group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    max-width: 100%;
}

.vod-control {
    width: clamp(220px, 28vw, 300px);
    min-width: 0;
    max-width: 100%;
}

#vod .container {
    display: flex;
    flex-direction: column;
}

#vod .vod-toolbar {
    align-self: flex-end;
}

/* (shots-submit form removed — replaced by .shots-info-panel) */

#shoty .container {
    display: flex;
    flex-direction: column;
}

/* order rules consolidated later in file (near line 2648+) */

/* ── Collaboration / Contact ───────────────────── */
.collab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.collab__form {
    padding: 32px 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.15);
}

.collab__socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.collab__heading {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 28px;
    text-align: center;
}

.socials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.socials__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.socials__link svg,
.socials__link img {
    transition: transform var(--transition), color var(--transition);
}

.icon-kick {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px;
    max-height: 24px;
    display: block;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
}

.hero__social-quick .icon-kick {
    width: 22px !important;
    height: 22px !important;
    max-height: 22px;
}

.socials__link .icon-kick {
    width: 32px !important;
    height: 32px !important;
    max-height: 32px;
}

.hero__social-quick a:hover .icon-kick,
.socials__link:hover .icon-kick {
    filter: brightness(0) saturate(100%) invert(68%) sepia(92%) saturate(2067%) hue-rotate(343deg) brightness(102%) contrast(101%);
    opacity: 1;
}

.socials__link:hover {
    color: var(--accent-color);
    border-color: rgba(255, 138, 61, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 138, 61, 0.08);
}

.socials__link:focus-visible {
    color: var(--accent-color);
    border-color: rgba(255, 138, 61, 0.35);
    transform: translateY(-2px);
}

.socials__link:hover svg,
.socials__link:hover img {
    transform: scale(1.15);
}

/* ── Footer ────────────────────────────────────── */
.footer {
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-glass);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer__copy {
    margin: 0;
}

.footer__legal {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
}

.footer__legal a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__cookie-btn {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--text-muted);
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__cookie-btn:hover,
.footer__cookie-btn:focus-visible {
    color: var(--text-light);
}

.footer__credit {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer__credit a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer__credit a:hover {
    text-decoration: underline;
}

.footer__credit a:focus-visible {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════
   Responsive — Tablet (640px+)
   ═══════════════════════════════════════════════════ */
@media (min-width: 640px) {
    :root {
        --container-gutter: 32px;
    }

    .section {
        padding: 120px 0;
    }

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

    .bento__card--wide {
        grid-column: span 2;
    }

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

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

    .shots-toolbar {
        justify-content: flex-end;
    }

    .collab {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .socials {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ═══════════════════════════════════════════════════
   Responsive — Desktop (960px+)
   ═══════════════════════════════════════════════════ */
@media (min-width: 960px) {
    .header__nav {
        display: block;
    }

    .header .btn--glow {
        display: inline-flex;
    }

    .header__burger {
        display: none;
    }

    .section {
        padding: 140px 0;
    }

    .hero__heading-line {
        white-space: nowrap;
    }

    .bento {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .bento__card--wide {
        grid-column: span 2;
    }

    .vod-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .collab__form {
        padding: 40px 36px;
    }

    .socials {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: flex-start;
    }

    .footer__meta {
        align-items: flex-start;
    }

    .footer__legal {
        justify-content: flex-start;
    }

    .footer__credit {
        text-align: right;
    }
}

/* ═══════════════════════════════════════════════════
   Accessibility — Reduced Motion
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Countdown upgrade */
.hero__countdown {
    gap: clamp(10px, 2vw, 20px);
}

.countdown__num-wrap {
    min-width: clamp(92px, 18vw, 170px);
    padding: 8px 14px;
}

.countdown__num.is-tick {
    animation: countdown-pop 0.35s ease-out;
}

.countdown__sep {
    font-size: clamp(4.2rem, 14vw, 9rem);
    font-weight: 700;
    line-height: 0.85;
    margin-top: -0.08em;
    opacity: 0.95;
}

.countdown__label {
    min-height: 1.1em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.countdown__label.is-tick {
    color: var(--text-light);
    transform: translateY(-1px);
}

.hero__countdown-extra {
    margin-top: 18px;
    width: min(620px, 100%);
    margin-inline: auto;
}

.countdown__next {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.countdown__progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.countdown__progress > span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #FFB347, var(--accent-color));
    box-shadow: 0 0 16px rgba(255, 138, 61, 0.5);
    transition: width 0.45s ease;
}

@keyframes countdown-pop {
    0% { transform: translateY(12%) scale(0.96); opacity: 0.5; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Hero particles */
.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.9), rgba(255, 138, 61, 0.06));
    filter: blur(0.2px);
    opacity: 0.5;
    animation: hero-float linear infinite;
}

.particle--1 { left: 10%; top: 22%; animation-duration: 15s; }
.particle--2 { left: 28%; top: 70%; animation-duration: 19s; width: 14px; height: 14px; }
.particle--3 { left: 52%; top: 18%; animation-duration: 13s; }
.particle--4 { left: 78%; top: 65%; animation-duration: 17s; width: 12px; height: 12px; }
.particle--5 { left: 90%; top: 28%; animation-duration: 21s; }

@keyframes hero-float {
    0% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.15; }
    50% { transform: translate3d(0, -24px, 0) scale(1.1); opacity: 0.55; }
    100% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.15; }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: max(var(--cookie-banner-gutter), calc((100vw - var(--container-max)) / 2));
    right: max(var(--cookie-banner-gutter), calc((100vw - var(--container-max)) / 2));
    bottom: 16px;
    z-index: 1100;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
    align-items: center;
    padding: 16px 18px;
}

.cookie-banner__text {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    justify-self: end;
}

.cookie-banner__prefs {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner__prefs-title {
    margin: 0 0 10px;
    color: var(--text-light);
    font-weight: 700;
}

.cookie-choice {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-choice + .cookie-choice {
    margin-top: 10px;
}

.cookie-choice input[type="checkbox"] {
    margin-top: 1px;
    accent-color: var(--accent-color);
}

.cookie-banner__save {
    margin-top: 14px;
}

.cookie-banner__legal-note {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.cookie-banner__legal-note a {
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__legal-note a:hover,
.cookie-banner__legal-note a:focus-visible {
    color: var(--accent-color);
}

.btn--sm {
    padding: 9px 16px;
    font-size: 0.82rem;
}

/* Push modal */
.push-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.push-modal.is-open {
    display: grid;
    place-items: center;
}

.push-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 12, 0.72);
    backdrop-filter: blur(4px);
}

.push-modal__card {
    position: relative;
    width: min(520px, calc(100vw - 32px));
    padding: 28px;
    z-index: 1;
    border-radius: 22px;
}

.push-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    cursor: pointer;
}

.push-modal__close:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

.push-modal__icon {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.push-modal__title {
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.push-modal__desc {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.push-modal__hint {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.push-modal__unsubscribe {
    margin-top: 12px;
}

.push-modal__status {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 12px 14px;
}

.push-modal__status--ok {
    background: rgba(31, 197, 112, 0.1);
    border: 1px solid rgba(31, 197, 112, 0.3);
    color: #8be5b2;
}

.push-modal__status--err {
    background: rgba(255, 98, 98, 0.09);
    border: 1px solid rgba(255, 98, 98, 0.28);
    color: #ffb3b3;
}

/* Global spacing system */
.section {
    padding-block: clamp(96px, 11vw, 152px);
}

.section__title {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}

.section__desc {
    margin: 0 auto clamp(42px, 6vw, 68px);
    padding-inline: clamp(2px, 1vw, 12px);
    line-height: 1.72;
}

.section__more {
    margin-top: clamp(34px, 5vw, 56px);
}

.hero {
    padding: calc(var(--header-h) + 52px) 0 clamp(76px, 12vw, 120px);
}

.hero__badge {
    margin-bottom: clamp(10px, 1.8vw, 16px);
}

.hero__countdown {
    margin-top: 6px;
}

.hero__sub {
    margin-top: clamp(34px, 6vw, 52px);
    margin-bottom: 6px;
}

.bento {
    gap: clamp(16px, 2.2vw, 24px);
}

.bento__card {
    padding: clamp(26px, 4vw, 38px) clamp(20px, 3.2vw, 32px);
}

.bento__info {
    margin-top: 6px;
    line-height: 1.68;
}

.vod-grid {
    gap: clamp(18px, 2.2vw, 26px);
}

.vod-card__body {
    padding: clamp(16px, 2.4vw, 22px) clamp(18px, 2.4vw, 24px);
}

.news-layout {
    gap: clamp(18px, 2.6vw, 28px);
}

.news-form {
    padding: clamp(24px, 3.4vw, 36px);
}

.news-form > p {
    margin-bottom: clamp(18px, 2.6vw, 26px);
    line-height: 1.7;
}

.news-form label {
    margin: clamp(12px, 1.6vw, 16px) 0 8px;
}

.news-form input,
.news-form textarea {
    margin-bottom: 2px;
}

.news-form .btn--full {
    margin-top: clamp(18px, 2.2vw, 24px);
}

.drama-list {
    gap: clamp(12px, 1.8vw, 18px);
}

.drama-item {
    padding: clamp(14px, 2vw, 20px) clamp(16px, 2.6vw, 24px);
}

.shots-grid {
    gap: clamp(16px, 2.2vw, 24px);
}

.shot-card__body {
    padding: clamp(14px, 2vw, 20px);
}

.collab {
    gap: clamp(30px, 4vw, 52px);
}

.collab__form {
    padding: clamp(24px, 3.2vw, 38px) clamp(20px, 2.8vw, 34px);
}

.form-group {
    margin-bottom: clamp(18px, 2.4vw, 24px);
}

.socials {
    gap: clamp(14px, 2vw, 20px);
}

.footer {
    padding: clamp(34px, 5vw, 52px) 0;
}

/* UX polish / responsive upgrades */
.hero__heading {
    margin-bottom: 24px;
}

.hero__social-quick {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 auto 18px;
}

.hero__social-quick a {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #98a4bb;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), background var(--transition);
    overflow: visible;
}

.hero__social-quick a:hover {
    color: var(--accent-color);
    border-color: rgba(255, 138, 61, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 138, 61, 0.18);
}

.hero__social-quick a:focus-visible {
    color: var(--accent-color);
    border-color: rgba(255, 138, 61, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 138, 61, 0.2);
}

/* Platform LIVE indicator */
.hero__social-quick a.is-platform-live,
.socials__link.is-platform-live,
a.is-platform-live {
    position: relative;
    color: #ff4444;
    border-color: rgba(255, 68, 68, 0.5);
    box-shadow: 0 0 18px rgba(255, 68, 68, 0.2), inset 0 0 0 1px rgba(255, 68, 68, 0.1);
}

.hero__social-quick a.is-platform-live::after,
.socials__link.is-platform-live::after,
a.is-platform-live::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
    animation: livePulse 1.5s ease-in-out infinite;
    pointer-events: none;
}

.socials__link.is-platform-live::after {
    top: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
}

.hero__social-quick a.is-platform-live:hover,
.socials__link.is-platform-live:hover,
a.is-platform-live:hover {
    color: #ff6666;
    border-color: rgba(255, 68, 68, 0.7);
    box-shadow: 0 0 28px rgba(255, 68, 68, 0.3), inset 0 0 0 1px rgba(255, 68, 68, 0.15);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}

.hero__social-quick--top {
    margin-bottom: 16px;
}

.hero__offline > .hero__social-quick:not(.hero__social-quick--top) {
    display: none;
}

.hero__social-quick a svg,
.hero__social-quick a img {
    width: 25px;
    height: 25px;
}

.hero__scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: scroll-cue 1.8s ease-in-out infinite;
}

.hero__scroll-cue:focus-visible {
    color: var(--text-light);
}

@keyframes scroll-cue {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
    50% { transform: translate(-50%, 5px); opacity: 1; }
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

#glosowanie .news-layout {
    position: relative;
}

.section--lockable {
    position: relative;
}

.consent-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 760px);
    z-index: 6;
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 138, 61, 0.38);
    background: linear-gradient(160deg, rgba(18, 28, 52, 0.94), rgba(11, 20, 40, 0.9));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    isolation: isolate;
}

.consent-lock p {
    margin: 0;
    color: #f6f7fb;
    font-weight: 500;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    font-size: 0.92rem;
    line-height: 1.55;
}

.consent-lock .btn {
    white-space: normal;
    text-align: center;
}

.is-consent-locked-target {
    filter: blur(3.2px) saturate(0.85) brightness(0.52);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.news-form {
    padding: 24px;
    border-radius: 28px;
}

.news-form h3 {
    font-size: 2rem;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.news-form > p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.news-form label {
    display: block;
    margin: 12px 0 6px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.76rem;
}

.news-form input,
.news-form textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.4px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
}

.news-form textarea {
    resize: vertical;
    min-height: 124px;
}

.news-form .btn--full {
    margin-top: 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 1.8vw, 18px);
}

.team-subsection {
    display: grid;
    gap: 12px;
    margin-top: clamp(16px, 2.2vw, 24px);
}

.team-subsection__head h3 {
    margin: 0;
    font-size: clamp(1.2rem, 1.7vw, 1.5rem);
    letter-spacing: -0.01em;
}

.team-subsection__head p {
    margin: 4px 0 0;
    color: var(--text-muted);
}

.team-card {
    border-radius: 20px;
    padding: clamp(12px, 1.4vw, 16px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
}

.team-card__photo-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(14, 24, 46, 0.96), rgba(8, 16, 34, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.09);
    aspect-ratio: 1 / 1;
    max-width: 120px;
}

.team-card__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__main-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
    line-height: 0;
    max-width: 100%;
}

.team-card__name .team-card__main-link {
    line-height: 1.24;
    transition: color var(--transition);
}

.team-card__name .team-card__main-link:hover,
.team-card__name .team-card__main-link:focus-visible {
    color: var(--accent-color);
}

.team-card__main-link:focus-visible {
    outline: 2px solid rgba(255, 138, 61, 0.85);
    outline-offset: 2px;
}

.team-card__body {
    display: grid;
    gap: 10px;
}

.team-card__name-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}

.team-card__name {
    margin: 0;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    letter-spacing: -0.01em;
    line-height: 1.24;
    font-weight: 800;
    color: #f7f8fc;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
    overflow-wrap: anywhere;
    word-break: break-word;
    flex: 0 1 auto;
    min-width: 0;
}

.team-card__role {
    margin: 0;
    color: rgba(205, 214, 230, 0.84);
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.team-card__desc {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.team-card__socials {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    min-width: max-content;
    margin-left: 0;
}

.team-card__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(223, 230, 243, 0.86);
    background: transparent;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 0;
    transition: transform var(--transition), color var(--transition), opacity var(--transition);
}

.team-card__social svg {
    width: 18px;
    height: 18px;
    display: block;
}

.team-card__social:hover,
.team-card__social:focus-visible {
    transform: translateY(-1px);
    color: var(--accent-color);
    outline: none;
}

.team-card--linked {
    cursor: pointer;
}

.team-card--linked .team-card__photo-wrap {
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.team-card--linked:hover,
.team-card--linked:focus-within {
    border-color: rgba(255, 148, 67, 0.55);
    box-shadow: 0 16px 34px rgba(4, 10, 24, 0.42), 0 0 0 1px rgba(255, 148, 67, 0.2) inset;
}

.team-card--linked:hover .team-card__photo-wrap,
.team-card--linked:focus-within .team-card__photo-wrap {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 148, 67, 0.48);
    box-shadow: 0 10px 24px rgba(255, 138, 61, 0.16);
}

.team-card--creator {
    border: 1.5px solid rgba(255, 138, 61, 0.3);
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.07) 0%, rgba(255, 138, 61, 0.02) 100%);
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.06), inset 0 0 0 1px rgba(255, 138, 61, 0.05);
}

.team-card--creator:hover {
    box-shadow: 0 6px 28px rgba(255, 138, 61, 0.12);
}

.team-card--creator .team-card__role {
    color: rgba(255, 178, 112, 0.92);
}

.team-card--placeholder {
    border-style: dashed;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.14);
}

.news-hot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 6px;
}

.news-hot__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-hot__head h3 {
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.news-hot__head span {
    min-width: 64px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffd5b6;
    background: rgba(255, 138, 61, 0.2);
    border: 1px solid rgba(255, 138, 61, 0.45);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.drama-item {
    border-radius: 22px;
    padding: 16px 18px;
    gap: 12px;
}

.drama-item__content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drama-item__rank {
    color: var(--accent-color);
    font-weight: 800;
    min-width: 24px;
    text-align: center;
}

.drama-item__meta {
    margin-top: 4px;
    gap: 6px;
}

.drama-item__pill {
    padding: 0;
    background: transparent;
    border: 0;
}

.drama-item__vote {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 6px;
}

.drama-item__vote svg {
    width: 15px;
    height: 15px;
}

.shots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

.shot-card__link {
    display: block;
    width: 100%;
    margin-bottom: 0;
    height: 100%;
}

@media (min-width: 640px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

    .team-subsection {
        gap: 14px;
    }

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

@media (min-width: 1100px) {
    .news-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
        gap: clamp(24px, 2.4vw, 34px);
    }

    .news-form {
        width: 100%;
        height: 100%;
        padding: clamp(42px, 3.8vw, 56px) clamp(24px, 2.2vw, 34px);
    }

    .news-hot {
        padding-top: 0;
    }

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

    .team-card {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: 100%;
    }

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

@media (max-width: 700px) {
    .hero {
        padding-bottom: 88px;
    }

    .cookie-banner__inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-self: stretch;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .team-card__photo-wrap {
        max-width: 130px;
    }

    .team-card__name-row {
        flex-wrap: wrap;
    }

    #shoty .shots-toolbar {
        align-self: stretch;
        justify-content: flex-start;
    }

    .shots-toolbar__group {
        align-items: stretch;
        width: 100%;
    }

    .shots-control {
        width: 100%;
        min-width: 0;
    }

    .cookie-banner__actions .btn {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
        padding-inline: 16px;
    }

    .btn.is-consent-gated::after {
        display: none;
    }

    .consent-lock {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: min(94%, 640px);
        padding: 15px 14px;
        border-color: rgba(255, 138, 61, 0.5);
        background: linear-gradient(165deg, rgba(14, 24, 46, 0.97), rgba(8, 16, 34, 0.95));
    }

    .consent-lock p {
        font-size: 0.95rem;
        line-height: 1.6;
        letter-spacing: 0.01em;
    }

    .consent-lock .btn {
        width: 100%;
        min-width: 0;
    }

    .hero__cta {
        gap: 10px;
    }

    .hero__cta .btn {
        width: 100%;
        min-height: 52px;
        padding-block: 10px;
        padding-inline: clamp(18px, 4.6vw, 24px);
    }

    .hero__cta a.btn {
        margin-bottom: 8px;
    }

    .hero__social-quick {
        gap: 10px;
    }

    .hero__social-quick a {
        width: 56px;
        height: 56px;
    }

    .drama-item {
        align-items: flex-start;
    }

    .drama-item__content {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .shots-toolbar,
    .vod-toolbar {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .shots-toolbar__group,
    .vod-toolbar__group {
        align-items: flex-start;
        width: 100%;
    }

    .shots-control,
    .vod-control {
        width: 100%;
        min-width: 0;
    }
}

/* Final layout and responsiveness polish */
.hero__heading {
    display: flex;
    justify-content: center;
}

.hero__heading-line {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(1.05rem, 5.2vw, 3rem);
}

.news-form {
    padding: clamp(34px, 4vw, 52px) clamp(24px, 3vw, 40px);
}

#shoty .container {
    display: flex;
    flex-direction: column;
}

#shoty .section__title { order: 1; }
#shoty .section__desc { order: 2; }
#shoty .shots-info-panel { order: 3; }
#shoty .shots-toolbar { order: 4; }
#shoty .shots-grid-wrap { order: 5; }
#shoty .section__more { order: 6; }

#shoty .shots-info-panel {
    margin-bottom: clamp(12px, 1.9vw, 20px);
}

#shoty .shots-toolbar {
    margin: 0 0 clamp(14px, 2vw, 22px);
    align-self: flex-end;
}

.shots-toolbar {
    display: inline-flex;
    padding: 0;
    border: 0;
    background: transparent;
    width: max-content;
}

.shots-toolbar__group {
    align-items: flex-end;
}

.shots-control {
    min-width: 248px;
    width: auto;
    padding-right: 50px;
    background-position:
        right 22px center,
        right 16px center;
}

.shots-control option {
    background: #141b2b;
    color: #f1f5ff;
}

.shots-grid {
    align-items: stretch;
}

.shot-card {
    height: 100%;
}

.shot-card__body {
    flex: 1;
}

@media (min-width: 1100px) {
    .news-form {
        min-height: 100%;
        padding: clamp(50px, 4.2vw, 66px) clamp(28px, 2.7vw, 42px);
    }
}

@media (max-width: 700px) {
    .hero__heading-line {
        font-size: clamp(1rem, 7vw, 1.75rem);
    }

    .vod-toolbar {
        display: flex;
        width: 100%;
        margin-left: 0;
    }

    .vod-toolbar__group {
        align-items: stretch;
        width: 100%;
    }

    .vod-control {
        width: 100%;
        min-width: 0;
    }

    #shoty .shots-toolbar {
        align-self: stretch;
    }

    .shots-toolbar__group {
        align-items: stretch;
        width: 100%;
    }

    .shots-control {
        width: 100%;
        min-width: 0;
    }
}

/* Form validation and async feedback */
.form-field-error {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #ff8f8f;
    line-height: 1.35;
    min-height: 0;
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-field-error.is-visible {
    opacity: 1;
    transform: translateY(0);
}

input.is-invalid,
textarea.is-invalid {
    border-color: rgba(255, 110, 110, 0.75) !important;
    box-shadow: 0 0 0 3px rgba(255, 110, 110, 0.16) !important;
}

.form-feedback {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.45;
    display: none;
}

.form-feedback.is-visible {
    display: block;
    animation: form-feedback-in 0.26s ease;
}

.form-feedback--success {
    background: rgba(39, 201, 132, 0.1);
    border: 1px solid rgba(39, 201, 132, 0.28);
    color: #9be6c2;
}

.form-feedback--error {
    background: rgba(255, 97, 97, 0.12);
    border: 1px solid rgba(255, 97, 97, 0.28);
    color: #ffc0c0;
}

.form-sent {
    animation: form-sent-pulse 0.45s ease;
}

@keyframes form-feedback-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes form-sent-pulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

.drama-item--empty {
    justify-content: flex-start;
}

.drama-item--empty .drama-item__text {
    margin-right: 0;
}

/* Hero social row / mobile fit */
.hero__social-quick {
    flex-wrap: nowrap;
    overflow: visible;
    width: min(100%, 560px);
    padding: 6px 8px;
}

@media (max-width: 700px) {
    .hero__social-quick {
        justify-content: center;
        gap: clamp(3px, 1.4vw, 6px);
        width: 100%;
        max-width: 100%;
        overflow: visible;
        padding-inline: 0;
        padding-block: 6px;
    }

    .hero__social-quick a {
        flex: 0 1 auto;
        width: clamp(34px, 10.4vw, 40px);
        height: clamp(34px, 10.4vw, 40px);
        border-radius: 10px;
    }

    .hero__social-quick a svg,
    .hero__social-quick a img {
        width: clamp(16px, 4.5vw, 18px);
        height: clamp(16px, 4.5vw, 18px);
    }

    .hero__social-quick .icon-kick {
        max-height: clamp(14px, 4.2vw, 17px);
    }

    .countdown__num-wrap {
        min-width: clamp(64px, 22vw, 86px);
        padding: 6px 8px;
    }

    .countdown__num {
        font-size: clamp(2.2rem, 11.8vw, 3.2rem);
    }

    .hero__countdown {
        align-items: flex-start;
        gap: clamp(6px, 2.3vw, 10px);
    }

    .countdown__sep {
        font-size: clamp(2.5rem, 9vw, 3.4rem);
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: clamp(12px, 4vw, 18px);
        line-height: 1;
        margin-top: clamp(10px, 3vw, 16px);
    }

    .countdown__label {
        text-align: center;
    }

    .hero__countdown-extra {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .hero__social-quick {
        gap: 3px;
    }

    .hero__social-quick a {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .hero__social-quick a svg,
    .hero__social-quick a img {
        width: 15px;
        height: 15px;
    }

    .hero__social-quick .icon-kick {
        max-height: 14px;
    }
}

/* Desktop-only fine tune for Hero socials */
@media (min-width: 961px) {
    .hero__offline {
        padding: clamp(14px, 2.4vw, 30px) clamp(14px, 2vw, 26px);
    }

    .hero__heading {
        margin-bottom: clamp(18px, 2.2vw, 30px);
    }

    .hero__countdown {
        margin-top: 0;
        margin-bottom: clamp(16px, 2.4vw, 28px);
    }

    .hero__countdown-extra {
        margin-top: clamp(22px, 3vw, 34px);
    }

    .hero__social-quick {
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero__social-quick--top {
        margin-bottom: clamp(22px, 2.6vw, 34px);
    }

    .hero__social-quick a {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .hero__social-quick a svg,
    .hero__social-quick a img {
        width: 21px;
        height: 21px;
    }

    .hero__social-quick .icon-kick {
        max-height: 18px;
    }
}

@media (max-width: 700px) {
    .hero__cinema-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero__cinema-player {
        aspect-ratio: 16 / 9;
    }

    .hero__cinema-chat {
        min-height: 380px;
    }
}

@supports (content-visibility: auto) {
    .section {
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
