/* ============================================================
   XXPRONOHUB — Premium Video Platform Stylesheet
   Modern dark UI · Glassmorphism · Cinematic gradients
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Core palette */
    --bg-0: #07080d;
    --bg-1: #0b0e16;
    --bg-2: #10141f;
    --bg-3: #161b29;
    --bg-4: #1d2434;

    --border-1: rgba(255,255,255,0.06);
    --border-2: rgba(255,255,255,0.10);
    --border-3: rgba(255,255,255,0.16);

    --text-1: #f4f6fb;
    --text-2: #c3c9d8;
    --text-3: #8b93a7;
    --text-4: #5d6577;

    /* Brand colors */
    --x-red:   #ff2d55;
    --x-red-2: #ff5b7a;
    --p-blue:  #3b82f6;
    --p-blue-2:#60a5fa;
    --h-pink:  #ec4899;
    --h-pink-2:#f472b6;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #ff2d55 0%, #ec4899 50%, #3b82f6 100%);
    --grad-primary: linear-gradient(135deg, #ff2d55 0%, #ec4899 100%);
    --grad-cool: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%);
    --grad-dark: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));

    /* Status colors */
    --green: #10b981;
    --green-2:#34d399;
    --yellow:#f59e0b;
    --red:   #ef4444;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.45);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.55);
    --glow-red:  0 0 40px rgba(255,45,85,0.35);
    --glow-pink: 0 0 40px rgba(236,72,153,0.35);
    --glow-blue: 0 0 40px rgba(59,130,246,0.35);

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius:    16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --ease: cubic-bezier(.22,.61,.36,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
    background: var(--bg-0);
    color: var(--text-1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Ambient background glow */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1000px 600px at 10% -10%, rgba(255,45,85,0.10), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(59,130,246,0.10), transparent 60%),
        radial-gradient(800px 600px at 50% 110%, rgba(236,72,153,0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--h-pink-2); }
button { font: inherit; }

::selection { background: rgba(236,72,153,0.35); color: white; }

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.container.narrow { max-width: 760px; }

/* ---------- UTILITIES ---------- */
.muted  { color: var(--text-3); }
.small  { font-size: 0.85rem; }
.center { text-align: center; }

/* ============================================================
   LOGO
   ============================================================ */
.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: transform .25s var(--ease-bounce);
    user-select: none;
}
.logo:hover { transform: scale(1.04); }
.logo-x { color: var(--x-red); text-shadow: 0 0 24px rgba(255,45,85,0.6); }
.logo-p { color: var(--p-blue); text-shadow: 0 0 24px rgba(59,130,246,0.6); }
.logo-h { color: var(--h-pink); text-shadow: 0 0 24px rgba(236,72,153,0.6); }
.logo--lg { font-size: 2rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7,8,13,0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-1);
    transition: background .3s var(--ease);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 72px;
}

.nav {
    display: flex;
    gap: 4px;
    margin-left: 16px;
}
.nav a {
    padding: 8px 14px;
    border-radius: 10px;
    color: var(--text-2);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all .2s var(--ease);
}
.nav a:hover {
    color: var(--text-1);
    background: rgba(255,255,255,0.05);
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Language switch */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-1);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-3);
}
.lang-switch a {
    color: var(--text-3);
    padding: 2px 6px;
    border-radius: 6px;
    transition: all .2s var(--ease);
}
.lang-switch a:hover { color: var(--text-1); }
.lang-switch a.active {
    color: white;
    background: var(--grad-primary);
    box-shadow: 0 4px 12px rgba(236,72,153,0.35);
}
.lang-switch span { color: var(--text-4); opacity: .5; }

/* Access badge */
.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(52,211,153,0.08));
    border: 1px solid rgba(16,185,129,0.35);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6ee7b7;
    box-shadow: 0 0 24px rgba(16,185,129,0.15);
    animation: accessPulse 3s ease-in-out infinite;
}
@keyframes accessPulse {
    0%,100% { box-shadow: 0 0 24px rgba(16,185,129,0.15); }
    50%     { box-shadow: 0 0 32px rgba(16,185,129,0.30); }
}
.access-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-2);
    box-shadow: 0 0 12px var(--green-2);
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0%   { transform: scale(1);   opacity: 1; }
    50%  { transform: scale(1.3); opacity: .7; }
    100% { transform: scale(1);   opacity: 1; }
}
.access-badge__time {
    font-variant-numeric: tabular-nums;
    color: white;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .2s var(--ease);
    text-align: center;
    min-height: 46px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity .2s var(--ease);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn--primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(255,45,85,0.30), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn--primary:hover {
    color: white;
    box-shadow: 0 12px 32px rgba(255,45,85,0.45), 0 0 0 1px rgba(255,255,255,0.12) inset;
    transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0) scale(0.98); }

.btn--ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text-1);
    border-color: var(--border-2);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--h-pink);
    color: var(--h-pink-2);
    transform: translateY(-1px);
}

.btn--danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 8px 20px rgba(239,68,68,0.30);
}
.btn--danger:hover { color: white; filter: brightness(1.1); }

.btn--disabled, .btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.4);
}
.btn--sm { padding: 8px 14px; min-height: 36px; font-size: 0.85rem; border-radius: 10px; }
.btn--xs { padding: 5px 11px; min-height: 30px; font-size: 0.78rem; border-radius: 8px; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; min-height: 56px; border-radius: 14px; }
.btn--block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 90px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    width: 120%; height: 200%;
    background:
        radial-gradient(600px 400px at 30% 20%, rgba(255,45,85,0.18), transparent 60%),
        radial-gradient(600px 400px at 70% 30%, rgba(59,130,246,0.18), transparent 60%),
        radial-gradient(500px 400px at 50% 60%, rgba(236,72,153,0.12), transparent 60%);
    transform: translateX(-50%);
    filter: blur(40px);
    animation: heroFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes heroFloat {
    from { transform: translateX(-52%) translateY(-10px) rotate(-2deg); }
    to   { transform: translateX(-48%) translateY(10px) rotate(2deg); }
}

.hero > .container { position: relative; z-index: 1; }

.hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #fff 0%, #c3c9d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(236,72,153,0.15);
}
.hero p {
    color: var(--text-2);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    margin: 0 auto 32px;
    max-width: 640px;
}
.hero__actions { margin-bottom: 32px; }

.hero__meta {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-1);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}
.hero__meta span {
    color: var(--text-3);
    font-size: 0.88rem;
    padding: 0 12px;
    border-right: 1px solid var(--border-1);
}
.hero__meta span:last-child { border-right: 0; }
.hero__meta strong { color: var(--text-1); font-weight: 700; }

/* ============================================================
   ACCESS PANEL
   ============================================================ */
.access-panel {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(59,130,246,0.05));
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    margin: 24px auto;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.access-panel__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 120px;
}
.access-panel__item span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.access-panel__item strong {
    font-size: 1.35rem;
    font-variant-numeric: tabular-nums;
    color: white;
    font-weight: 700;
}
.access-panel .btn { margin-left: auto; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 40px 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title::before {
    content: '';
    width: 4px;
    height: 28px;
    border-radius: 4px;
    background: var(--grad-primary);
    box-shadow: 0 0 20px rgba(236,72,153,0.5);
}

/* ============================================================
   VIDEO GRID
   ============================================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 80px;
}

.video-card {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border: 1px solid var(--border-1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .35s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,45,85,0.4), rgba(236,72,153,0.4), rgba(59,130,246,0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 40px rgba(236,72,153,0.15);
}
.video-card:hover::before { opacity: 1; }

.video-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}
.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.video-card:hover .video-card__thumb img { transform: scale(1.08); }

.video-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--text-4);
    background: linear-gradient(135deg, var(--bg-3), var(--bg-1));
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    color: white;
    font-size: 2.4rem;
    opacity: 0;
    transition: all .3s var(--ease);
}
.video-card__overlay::before {
    content: '';
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--grad-primary);
    box-shadow: 0 12px 32px rgba(255,45,85,0.5);
    position: absolute;
    z-index: -1;
    transform: scale(0.6);
    transition: transform .3s var(--ease-bounce);
}
.video-card:hover .video-card__overlay { opacity: 1; }
.video-card:hover .video-card__overlay::before { transform: scale(1); }

.video-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.video-card__body h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}
.video-card__meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-3);
}
.video-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}
.video-card__actions .btn { flex: 1; }

/* Chip */
.chip {
    display: inline-block;
    background: rgba(236,72,153,0.10);
    border: 1px solid rgba(236,72,153,0.25);
    color: var(--h-pink-2);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================================
   WATCH PAGE
   ============================================================ */
.watch-title {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 32px 0 12px;
}

.player-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 0 1px var(--border-1);
    border: 1px solid var(--border-2);
}
.player-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.watch-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.watch-actions .btn { flex: 0 1 auto; }

.watch-desc {
    background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
    border: 1px solid var(--border-1);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 60px;
}
.watch-desc h4 {
    margin: 0 0 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    font-weight: 700;
}
.watch-desc p { margin: 0; color: var(--text-2); line-height: 1.7; }

/* Locked overlay */
.locked-overlay {
    position: relative;
    background:
        linear-gradient(180deg, rgba(236,72,153,0.06), rgba(59,130,246,0.06)),
        var(--bg-2);
    border: 1px dashed rgba(236,72,153,0.35);
    border-radius: var(--radius-lg);
    padding: 60px 24px;
    text-align: center;
    margin: 24px 0;
    box-shadow: inset 0 0 80px rgba(236,72,153,0.06);
}
.locked-overlay__box { max-width: 460px; margin: 0 auto; }
.locked-overlay__box h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 700;
}
.locked-overlay__box .btn { margin-top: 20px; }

/* ============================================================
   CARDS & FORMS
   ============================================================ */
.card {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236,72,153,0.5), transparent);
}

.pay-card { margin: 40px 0; }
.pay-card h1 { font-size: 1.6rem; margin: 0 0 6px; letter-spacing: -0.02em; }

.pay-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-1);
    border-radius: var(--radius);
    padding: 18px;
    margin: 20px 0;
}
.pay-summary > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pay-summary span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pay-summary strong { font-size: 1.1rem; font-weight: 700; color: white; }

/* Form */
form label {
    display: block;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="password"],
form input[type="number"],
form input[type="file"],
form textarea {
    width: 100%;
    padding: 13px 16px;
    margin-top: 8px;
    background: rgba(0,0,0,0.35);
    color: var(--text-1);
    border: 1px solid var(--border-2);
    border-radius: 12px;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    outline: none;
    transition: all .2s var(--ease);
}
form input:hover, form textarea:hover { border-color: var(--border-3); }
form input:focus, form textarea:focus {
    border-color: var(--h-pink);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 4px rgba(236,72,153,0.12);
}
form input::placeholder { color: var(--text-4); }
form textarea { resize: vertical; min-height: 110px; }
form input[type="file"] { padding: 10px 14px; cursor: pointer; }
form input[type="file"]::file-selector-button {
    background: rgba(255,255,255,0.06);
    color: var(--text-2);
    border: 1px solid var(--border-2);
    padding: 6px 12px;
    border-radius: 8px;
    margin-right: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s var(--ease);
}
form input[type="file"]::file-selector-button:hover {
    background: rgba(236,72,153,0.15);
    border-color: var(--h-pink);
    color: var(--h-pink-2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-2);
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
}
.checkbox-label input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--h-pink);
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.form-error {
    background: linear-gradient(135deg, rgba(239,68,68,0.14), rgba(220,38,38,0.08));
    border: 1px solid rgba(239,68,68,0.4);
    color: #fecaca;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-error::before { content: '⚠'; font-size: 1.1rem; }

.form-success {
    background: linear-gradient(135deg, rgba(16,185,129,0.14), rgba(52,211,153,0.08));
    border: 1px solid rgba(16,185,129,0.4);
    color: #a7f3d0;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-success::before { content: '✓'; font-size: 1.1rem; font-weight: 700; }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.modal[hidden] { display: none; }

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn .25s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal__box {
    position: relative;
    background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border-3);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 60px rgba(236,72,153,0.15);
    animation: slideUp .35s var(--ease-bounce);
}
@keyframes slideUp {
    from { transform: translateY(30px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-1);
    color: var(--text-3);
    font-size: 1.4rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease);
}
.modal__close:hover {
    background: rgba(239,68,68,0.15);
    border-color: rgba(239,68,68,0.4);
    color: #fca5a5;
    transform: rotate(90deg);
}
.modal h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Spinner */
.spinner {
    width: 56px;
    height: 56px;
    margin: 24px auto;
    border: 3px solid rgba(236,72,153,0.15);
    border-top-color: var(--h-pink);
    border-right-color: var(--p-blue);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    box-shadow: 0 0 24px rgba(236,72,153,0.25);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(3,4,8,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .4s var(--ease);
}
.age-gate__box {
    background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border-3);
    border-radius: var(--radius-xl);
    padding: 44px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 80px rgba(236,72,153,0.18);
    animation: slideUp .5s var(--ease-bounce);
    position: relative;
    overflow: hidden;
}
.age-gate__box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-brand);
}
.age-gate__box h2 {
    margin: 0 0 20px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.age-gate__q {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-1);
}
.age-gate__note {
    color: var(--text-3);
    font-size: 0.92rem;
    margin: 0 0 28px;
    line-height: 1.6;
}
.age-gate__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.age-gate__buttons .btn { width: 100%; }
.age-gate__denied {
    color: #fecaca;
    margin-top: 20px;
    padding: 16px;
    background: rgba(239,68,68,0.10);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    border-top: 1px solid var(--border-1);
    padding: 40px 0;
    text-align: center;
    color: var(--text-3);
    font-size: 0.88rem;
    margin-top: 60px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.01));
}
.site-footer p { margin: 6px 0; }
.site-footer a { color: var(--h-pink-2); font-weight: 500; }
.site-footer a:hover { color: var(--h-pink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .container { padding: 0 18px; }
}

@media (max-width: 640px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
        gap: 12px;
        min-height: auto;
    }
    .nav { display: none; }
    .header-actions { gap: 10px; }
    .logo { font-size: 1.25rem; }

    .hero { padding: 50px 0 36px; }
    .hero__meta { padding: 10px 14px; }
    .hero__meta span { padding: 0 8px; font-size: 0.8rem; }

    .access-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .access-panel .btn { margin-left: 0; width: 100%; }
    .access-panel__item { min-width: 0; }

    .form-row { grid-template-columns: 1fr; }
    .pay-summary { grid-template-columns: 1fr; gap: 10px; }
    .modal__box { padding: 24px 20px; }
    .age-gate__box { padding: 32px 22px; }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px;
    }
    .video-card__body { padding: 12px; }
    .video-card__body h3 { font-size: 0.92rem; }
    .video-card__actions { flex-direction: column; }
    .video-card__actions .btn { width: 100%; }

    .section-title { margin: 28px 0 16px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--h-pink);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--x-red), var(--h-pink));
    border-radius: 10px;
    border: 2px solid var(--bg-0);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--h-pink), var(--p-blue)); }