/* ============================================================
   TEMA: BİZİM DİZİMİZ - streaming / dizi sayfası estetiği (bespoke)
   Kara fon + kırmızı vurgu + billboard hero + bölüm listesi
   Açılış: "Kim izliyor?" profil seçimi → kalp wordmark → sayfa
   Özelleştirilebilir: başlık (vurgu), metin, kart renkleri.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; }

body.kas-tpl-bizim-dizimiz {
    --bg-0: #000000;
    --bg-1: #000000;        /* tam siyah (Netflix) */
    --bg-2: #141414;
    --card: var(--kas-card, #181818);   /* satır / kart dolgusu (özelleştirilebilir) */
    --card-2: #262626;
    --card-border: rgba(255,255,255,0.09);
    --card-shadow: 0 10px 34px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.5);

    --accent: var(--kas-title, #e50914);   /* streaming kırmızısı (özelleştirilebilir) */
    --accent-d: #b20710;
    --green: #46d369;       /* eşleşme yüzdesi */

    --ink:   var(--kas-text, #ffffff);     /* metin (özelleştirilebilir) */
    --ink-2: #d2d2d2;
    --ink-3: #9b9b9b;
    --muted: #6d6d6d;
    --line:  rgba(255,255,255,0.14);
    --line-soft: rgba(255,255,255,0.07);

    --font-display: 'Anton', 'Arial Narrow', sans-serif;   /* kırmızı wordmark / dev başlık */
    --font-cond:    'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-b:       'Inter', system-ui, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    font-family: var(--font-b); color: var(--ink); line-height: 1.6;
    background: var(--bg-1);
    min-height: 100vh; -webkit-font-smoothing: antialiased;
    overflow: hidden;
}
body.is-reading { overflow-x: hidden; overflow-y: auto; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; color: inherit; background: 0; border: 0; padding: 0; }
::selection { background: var(--accent); color: #fff; }

/* arka plan: hafif kırmızı vinyet + film grain */
.bg-glow { position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(120% 80% at 50% -10%, rgba(229,9,20,0.12), transparent 55%),
                radial-gradient(100% 100% at 50% 120%, rgba(0,0,0,0.6), transparent 60%); }
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04; overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: grain .5s steps(3) infinite; }
@keyframes grain { 0%{background-position:0 0} 33%{background-position:-40px 24px} 66%{background-position:34px -30px} 100%{background-position:0 0} }

/* tema kaydırma çubuğu: ince + koyu (gizli sekmede de düzgün görünsün) */
body.kas-tpl-bizim-dizimiz { scrollbar-width: thin; scrollbar-color: #2b2b2f #141414; }
body.kas-tpl-bizim-dizimiz::-webkit-scrollbar { width: 10px; height: 10px; }
body.kas-tpl-bizim-dizimiz::-webkit-scrollbar-track { background: #141414; }
body.kas-tpl-bizim-dizimiz::-webkit-scrollbar-thumb { background: #2b2b2f; border-radius: 8px; border: 2px solid #141414; }
body.kas-tpl-bizim-dizimiz::-webkit-scrollbar-thumb:hover { background: #3a3a40; }

/* ════════════════════════════════════════════════════════════
   1. ENTRY - "Kim izliyor?" profil seçim ekranı
   ════════════════════════════════════════════════════════════ */
.entry { position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 24px; text-align: center;
    background: var(--bg-1); transition: opacity .7s var(--ease); }
.entry.is-leaving { opacity: 0; pointer-events: none; }
.entry-brandtop { position: absolute; top: 26px; left: 32px; font-family: var(--font-display);
    color: var(--accent); font-size: clamp(20px, 4vw, 28px); letter-spacing: .04em; text-transform: uppercase; }
.entry-prompt { font-family: var(--font-cond); font-weight: 400; font-size: clamp(34px, 7vw, 64px);
    letter-spacing: .02em; color: var(--ink); margin-bottom: 40px; }
.profiles { display: flex; gap: clamp(18px, 5vw, 44px); flex-wrap: wrap; justify-content: center; }
.profile { display: flex; flex-direction: column; align-items: center; gap: 14px; cursor: pointer;
    width: clamp(108px, 26vw, 156px); }
.profile-av { width: 100%; aspect-ratio: 1; border-radius: 8px; overflow: hidden;
    border: 3px solid transparent; transition: border-color .2s, transform .2s var(--ease); position: relative; }
.profile-av img { width: 100%; height: 100%; object-fit: cover; }
.profile-av::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 rgba(255,255,255,0); transition: .2s; }
.profile:hover .profile-av, .profile:focus-visible .profile-av { border-color: #fff; transform: scale(1.04); }
.profile-name { font-size: clamp(15px, 3.5vw, 19px); color: var(--ink-3); font-weight: 500; transition: color .2s; }
.profile:hover .profile-name { color: #fff; }
.profile-couple .profile-av { background: linear-gradient(135deg, var(--accent), var(--accent-d)); display: flex; align-items: center; justify-content: center; }
.profile-couple .profile-av svg { width: 46%; height: 46%; color: #fff; }
.profile-av-fallback { background: linear-gradient(135deg, var(--accent), var(--accent-d)); }
/* tıklanmayan "Profil Ekle" tile */
.profile-add { cursor: default; }
.profile-av-add { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.03); border: 2px dashed var(--line) !important; color: var(--ink-3); }
.profile-av-add svg { width: 38%; height: 38%; }
.profile-add:hover .profile-av-add, .profile-add:focus-visible .profile-av-add { transform: none; }
.profile-add:hover .profile-name { color: var(--ink-3); }
.entry-hint { margin-top: 46px; font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.entry-hint b { color: var(--ink-3); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   2. OPENING - kırmızı wordmark "ta-dum" açılışı
   ════════════════════════════════════════════════════════════ */
.opening { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center;
    background: #000; opacity: 0; transition: opacity .5s ease; pointer-events: none; overflow: hidden; }
.opening.is-active { opacity: 1; }
.opening.is-done { opacity: 0; }
/* ════════ AÇILIŞ: kalp ortada çizilir/parlar → sola kayar, sağında isim yazılır → zoom ════════ */
.opening .zoom { will-change: transform, opacity; }
.opening .intro { display: inline-flex; align-items: center; gap: clamp(10px, 2.5vw, 24px);
    transform: translateX(var(--shift, 0)); will-change: transform; }
.opening .heart { width: clamp(66px, 13vmin, 120px); height: auto; flex: none; overflow: visible;
    transform: scale(var(--big, 1.7)); transform-origin: center; }
.opening .heart path { fill: var(--accent); fill-opacity: 0; stroke: var(--accent); stroke-width: 1.3;
    stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 100; stroke-dashoffset: 100; }
.opening .name { display: inline-flex; white-space: nowrap;
    font-family: var(--font-display); text-transform: uppercase; color: #fff;
    font-size: clamp(40px, 9vw, 84px); line-height: 1; letter-spacing: .005em; }
.opening .name span { display: inline-block; opacity: 0; transform-origin: 50% 100%;
    transform: translateY(.5em) scaleY(.18) rotateX(30deg); }
.opening .name .amp { color: var(--accent); }
.opening .name .sp { display: inline-block; width: .26em; }

.opening.is-active .heart path { animation: io-draw 1.1s ease forwards, io-fill .5s ease .95s forwards; }
.opening.is-active .heart { animation: io-glow .6s ease 1.05s forwards, io-beat .6s ease 1.05s, io-hshrink 1s cubic-bezier(.55,0,.2,1) 1.65s forwards; }
.opening.is-active .intro { animation: io-slide 1s cubic-bezier(.55,0,.2,1) 1.65s forwards; }
.opening.is-active .name span { animation: io-rise .5s cubic-bezier(.2,.75,.25,1) forwards; animation-delay: var(--d); }
.opening.is-active .zoom { animation: io-zoom 1.1s cubic-bezier(.6,0,.85,.5) 3.3s forwards; }
@keyframes io-draw { to { stroke-dashoffset: 0; } }
@keyframes io-fill { to { fill-opacity: 1; } }
@keyframes io-glow { 0% { filter: drop-shadow(0 0 0 rgba(229,9,20,0)); }
    30% { filter: drop-shadow(0 0 42px rgba(229,9,20,.95)); }
    48% { filter: drop-shadow(0 0 14px rgba(229,9,20,.45)); }
    68% { filter: drop-shadow(0 0 42px rgba(229,9,20,.95)); }
    100% { filter: drop-shadow(0 0 18px rgba(229,9,20,.55)); } }
@keyframes io-beat { 0% { transform: scale(1.7); } 30% { transform: scale(1.96); } 46% { transform: scale(1.6); } 66% { transform: scale(1.9); } 82% { transform: scale(1.68); } 100% { transform: scale(1.7); } }
@keyframes io-hshrink { to { transform: scale(1); } }
@keyframes io-slide { to { transform: translateX(0); } }
@keyframes io-rise { to { opacity: 1; transform: none; } }
@keyframes io-zoom { to { transform: scale(6); opacity: 0; } }
/* isim belirince üstünden ışık süzülür */
.opening .name { position: relative; }
.opening .name::after { content: ''; position: absolute; inset: -6px -4px; pointer-events: none; opacity: 0;
    background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.55) 50%, transparent 58%); transform: translateX(-140%); }
.opening.is-active .name::after { animation: io-shine 1s ease 2.5s forwards; }
@keyframes io-shine { 0% { transform: translateX(-140%); opacity: 1; } 100% { transform: translateX(140%); opacity: 0; } }

/* ════════════════════════════════════════════════════════════
   3. MEMORY - dizi detay sayfası
   ════════════════════════════════════════════════════════════ */
.memory { position: relative; z-index: 5; opacity: 0; transition: opacity .8s var(--ease);
    padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px)); }
.memory.is-visible { opacity: 1; }

/* üst nav (faux streaming barı) */
.topnav { position: absolute; top: 0; left: 0; right: 0; z-index: 30; display: flex; align-items: center;
    justify-content: space-between; padding: 20px clamp(18px, 5vw, 52px);
    background: linear-gradient(180deg, rgba(0,0,0,0.75), transparent); }
.topnav-brand { font-family: var(--font-display); color: var(--accent); font-size: clamp(20px, 4vw, 30px);
    letter-spacing: .04em; text-transform: uppercase; }
.topnav-av { width: 34px; height: 34px; border-radius: 5px; overflow: hidden; border: 1px solid var(--line); }
.topnav-av img { width: 100%; height: 100%; object-fit: cover; }

/* ─── HERO / BILLBOARD ─── */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 0 clamp(18px, 5vw, 60px) clamp(40px, 8vh, 90px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,20,20,0.15) 0%, rgba(20,20,20,0) 35%, rgba(20,20,20,0.5) 72%, var(--bg-1) 100%),
                linear-gradient(90deg, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.25) 45%, transparent 75%); }
.hero-inner { position: relative; z-index: 2; max-width: 640px; animation: fade-up .9s var(--ease) .1s both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-cond);
    font-size: 15px; letter-spacing: .14em; color: var(--ink-2); margin-bottom: 16px; }
.hero-badge b { color: var(--accent); font-family: var(--font-display); font-size: 17px; letter-spacing: .02em; }
.hero-title { font-family: var(--font-display); text-transform: uppercase; line-height: 1; white-space: nowrap;
    font-size: clamp(40px, 11vw, 104px); letter-spacing: .01em; margin: 0 0 18px;
    text-shadow: 0 6px 28px rgba(0,0,0,0.6); }
.hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; font-size: 15px; }
.hero-match { color: var(--green); font-weight: 700; }
.hero-year { color: var(--ink-2); }
.hero-rating { border: 1px solid var(--line); color: var(--ink-2); font-size: 12px; padding: 1px 7px; border-radius: 3px; }
.hero-hd { border: 1px solid var(--line); color: var(--ink-3); font-size: 11px; font-weight: 700; padding: 1px 6px; border-radius: 3px; letter-spacing: .05em; }
.hero-tags { color: var(--ink-2); font-size: 15px; }
.hero-tags .dot { color: var(--accent); margin: 0 8px; }
.hero-synopsis { color: var(--ink-2); font-size: clamp(15px, 2.2vw, 18px); line-height: 1.6; max-width: 540px; margin-bottom: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 26px;
    border-radius: 5px; font-weight: 700; font-size: 16px; transition: transform .12s, background .2s, opacity .2s; }
.btn:active { transform: scale(.97); }
.btn svg { width: 22px; height: 22px; }
.btn-play { background: #fff; color: #000; }
.btn-play:hover { background: rgba(255,255,255,0.82); }
.btn-ghost { background: rgba(109,109,110,0.55); color: #fff; backdrop-filter: blur(2px); }
.btn-ghost:hover { background: rgba(109,109,110,0.4); }
.btn-ghost.is-added { background: rgba(70,211,105,0.22); }
.hero-scroll { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3;
    font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }

/* mobilde billboard'u bir tık kısalt */
@media (max-width: 600px) { .hero { min-height: 84vh; min-height: 84svh; padding-bottom: clamp(28px, 6vh, 60px); } }

/* ortak bölüm sarmalı */
.row { max-width: 1180px; margin: 0 auto; padding: clamp(34px, 6vw, 60px) clamp(18px, 5vw, 52px); }
.row-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.row-bar { width: 4px; align-self: stretch; min-height: 22px; background: var(--accent); border-radius: 2px; }
.row-title { font-family: var(--font-b); font-weight: 700; font-size: clamp(19px, 3vw, 26px); letter-spacing: .01em; color: var(--ink); }
.row-sub { font-size: 13px; color: var(--ink-3); margin-left: auto; }

/* ─── DAY COUNTER → "Top 10 #1 · X gündür yayında" ─── */
.daycount { text-align: center; }
.daycount-card { display: inline-flex; align-items: center; gap: clamp(16px, 4vw, 34px); flex-wrap: wrap; justify-content: center;
    padding: 30px clamp(24px, 5vw, 50px); background: var(--card); border: 1px solid var(--card-border);
    border-radius: 10px; box-shadow: var(--card-shadow); position: relative; overflow: hidden; }
.daycount-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--accent); }
.daycount-rank { display: flex; flex-direction: column; align-items: center; }
.daycount-top10 { font-family: var(--font-display); color: var(--accent); font-size: 13px; letter-spacing: .08em; }
.daycount-rankno { font-family: var(--font-display); font-size: clamp(54px, 11vw, 78px); line-height: .85; color: #fff; }
.daycount-div { width: 1px; align-self: stretch; background: var(--line-soft); }
.daycount-main { text-align: left; }
.daycount-num { font-family: var(--font-display); font-size: clamp(46px, 10vw, 80px); line-height: .9; color: #fff; font-variant-numeric: tabular-nums; }
.daycount-num .small { font-size: .42em; color: var(--ink-3); margin-left: 8px; }
.daycount-label { font-size: 14px; color: var(--ink-2); margin-top: 4px; }
.daycount-foot { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ─── MESSAGE → "Yapımcının Notu" ─── */
.message-card { position: relative; max-width: 760px; margin: 0 auto; padding: 38px clamp(24px, 5vw, 48px);
    background: linear-gradient(135deg, var(--card-2), var(--card)); border: 1px solid var(--card-border);
    border-radius: 12px; box-shadow: var(--card-shadow); text-align: center; }
.message-kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-cond);
    letter-spacing: .14em; font-size: 14px; color: var(--accent); margin-bottom: 14px; }
.message-kicker svg { width: 18px; height: 18px; }
.message-text { font-size: clamp(19px, 3.4vw, 26px); line-height: 1.55; font-weight: 600; color: var(--ink); }

/* ─── GALLERY → yatay thumbnail satırı (hover-scale) ─── */
.gallery-strip { max-width: 1180px; margin: 0 auto; padding: clamp(34px, 6vw, 60px) 0; }
.gallery-strip .row-head { padding: 0 clamp(18px, 5vw, 52px); }
.gallery-rail { display: flex; gap: 12px; overflow-x: auto; padding: 10px clamp(18px, 5vw, 52px) 18px;
    scroll-snap-type: none; -webkit-overflow-scrolling: touch; cursor: grab; scrollbar-width: none; }
.gallery-rail.is-drag { cursor: grabbing; scroll-snap-type: none; }
.gallery-rail.is-drag .gthumb { pointer-events: none; }
.gallery-rail::-webkit-scrollbar { display: none; }
.gthumb { flex: 0 0 auto; width: clamp(180px, 42vw, 250px); scroll-snap-align: start; position: relative;
    border-radius: 7px; overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s; background: #000; }
.gthumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--ease); }
.gthumb:hover { transform: scale(1.07); z-index: 4; box-shadow: var(--card-shadow); }
.gthumb::before { content: '\25B6'; position: absolute; inset: 0; margin: auto; width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center; padding-left: 3px; border-radius: 50%;
    background: rgba(0,0,0,0.5); border: 1.5px solid rgba(255,255,255,0.85); color: #fff; font-size: 13px;
    opacity: 0; transform: scale(.7); transition: opacity .2s, transform .2s; pointer-events: none; z-index: 2; }
.gthumb:hover::before { opacity: 1; transform: scale(1); }
.gthumb-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 12px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.88)); font-size: 12px; font-weight: 600; letter-spacing: .02em;
    opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.gthumb:hover .gthumb-cap { opacity: 1; transform: none; }
.gthumb-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,0.25); }
.gthumb-bar span { display: block; height: 100%; background: var(--accent); }

/* ─── NOTE → öne çıkan replik ─── */
.note { max-width: 760px; margin: 0 auto; text-align: center; }
.note-text { font-family: var(--font-cond); font-weight: 400; font-size: clamp(26px, 5.5vw, 48px); line-height: 1.15; color: var(--ink); letter-spacing: .01em; }
.note-text .q { color: var(--accent); }

/* ─── LETTER → "Senaryo Sayfası" ─── */
.letter { max-width: 720px; margin: 0 auto; }
.letter-paper { position: relative; padding: 40px clamp(24px, 5vw, 52px); background: var(--card);
    border: 1px solid var(--card-border); border-left: 4px solid var(--accent); border-radius: 10px; box-shadow: var(--card-shadow); }
.letter-mark { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-cond);
    letter-spacing: .16em; font-size: 14px; color: var(--ink-3); margin-bottom: 8px; }
.letter-scene { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(20px, 4vw, 28px); color: var(--ink); margin-bottom: 20px; }
.letter-body { font-size: 16px; line-height: 1.9; color: var(--ink-2); }
.letter-body p { margin: 0 0 14px; } .letter-body p:last-child { margin-bottom: 0; }
.letter-from { margin-top: 26px; font-family: var(--font-cond); letter-spacing: .08em; color: var(--ink-3); text-align: right; }
.letter-from b { color: var(--ink); }

/* ─── TIMELINE → BÖLÜMLER (dizi bölüm listesi) ─── */
.episodes { max-width: 980px; margin: 0 auto; }
.ep-tabs { display: inline-flex; gap: 6px; margin-bottom: 18px; padding: 4px; background: var(--card); border-radius: 8px; border: 1px solid var(--card-border); }
.ep-tab { padding: 7px 16px; border-radius: 6px; font-size: 14px; font-weight: 600; color: var(--ink-3); }
.ep-tab.is-active { background: var(--card-2); color: #fff; }
.ep-list { display: flex; flex-direction: column; }
.ep { display: flex; gap: 18px; align-items: center; padding: 16px 14px; border-top: 1px solid var(--line-soft);
    border-radius: 8px; transition: background .2s; cursor: default; }
.ep:hover { background: var(--card); }
.ep:last-child { border-bottom: 1px solid var(--line-soft); }
.ep-no { font-family: var(--font-display); font-size: clamp(26px, 6vw, 40px); color: var(--ink-3); width: 42px; text-align: center; flex-shrink: 0; }
.ep-thumb { width: clamp(96px, 22vw, 150px); flex-shrink: 0; position: relative; border-radius: 6px; overflow: hidden; background: #000; }
.ep-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ep-thumb .ep-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25); opacity: 0; transition: opacity .2s; }
.ep:hover .ep-thumb .ep-play { opacity: 1; }
.ep-play svg { width: 34px; height: 34px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.ep-info { flex: 1; min-width: 0; }
.ep-row1 { display: flex; align-items: baseline; gap: 10px; margin-bottom: 5px; }
.ep-title { font-size: clamp(15px, 3vw, 18px); font-weight: 700; color: var(--ink); }
.ep-dur { font-size: 13px; color: var(--ink-3); margin-left: auto; flex-shrink: 0; }
.ep-date { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: .04em; margin-bottom: 5px; }
.ep-desc { font-size: 14px; line-height: 1.55; color: var(--ink-3); }
@media (max-width: 560px) {
    .ep { flex-wrap: wrap; gap: 12px; }
    .ep-no { width: auto; font-size: 28px; }
    .ep-info { flex-basis: 100%; }
}

/* ─── SURPRISE → "Özel Bölüm" kilidi ─── */
.surprise { max-width: 760px; margin: 0 auto; text-align: center; }
.surprise-card { position: relative; padding: 40px 24px; border-radius: 12px; overflow: hidden;
    background: linear-gradient(135deg, #2a0608, var(--card)); border: 1px solid rgba(229,9,20,0.35); cursor: pointer; }
.surprise-lock { position: relative; width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    background: rgba(229,9,20,0.16); border: 1px solid rgba(229,9,20,0.5); display: flex; align-items: center; justify-content: center; color: var(--accent);
    transition: transform .35s var(--ease), background .35s ease, border-color .35s ease, box-shadow .35s ease; }
.surprise-card:hover .surprise-lock { transform: scale(1.08); }
.surprise-lock svg { width: 28px; height: 28px; transition: opacity .25s ease; }
.surprise-lock .ic-unlocked { position: absolute; opacity: 0; }
.surprise-eyebrow { font-family: var(--font-cond); letter-spacing: .16em; font-size: 14px; color: var(--accent); margin-bottom: 8px; }
.surprise-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(24px, 5vw, 38px); color: var(--ink); margin-bottom: 8px; }
.surprise-hint { font-size: 13px; color: var(--ink-3); }
.surprise-lockui { transition: opacity .3s ease; }
.surprise-reveal { display: none; margin-top: 22px; font-size: clamp(17px, 3.4vw, 22px); line-height: 1.6; font-weight: 600; color: var(--ink); }
.surprise-reveal img { border-radius: 8px; margin: 0 auto 14px; }

/* ── Netflix "bölüm kilidi açılıyor": kilit yeşile döner → prompt yukarı fırlayıp KAYBOLUR → bölüm açılır + kırmızı sweep ── */
.surprise-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; transform: translateX(-100%);
    background: linear-gradient(100deg, transparent 42%, rgba(229,9,20,0.32) 50%, transparent 58%); }
.surprise-card.is-open { cursor: default; }
.surprise-card.is-open .surprise-lock { background: rgba(70,211,105,0.16); border-color: rgba(70,211,105,0.6); color: #46d369; box-shadow: 0 0 0 5px rgba(70,211,105,0.14); }
.surprise-card.is-open .surprise-lock .ic-locked { opacity: 0; }
.surprise-card.is-open .surprise-lock .ic-unlocked { opacity: 1; }
.surprise-card.is-open .surprise-lockui { position: absolute; left: 24px; right: 24px; top: 40px; pointer-events: none; animation: nf-lockout .7s var(--ease) forwards; }
.surprise-card.is-open .surprise-reveal { display: block; animation: nf-revealin .6s var(--ease) .42s both; }
.surprise-card.is-open::after { animation: nf-sweep .7s ease-out; }
@keyframes nf-lockout {
    0%   { opacity: 1; transform: translateY(0) scale(1); }
    18%  { transform: translateY(0) scale(1.05) rotate(-3deg); }
    32%  { transform: translateY(0) scale(1.05) rotate(3deg); }
    46%  { opacity: 1; transform: translateY(0) scale(1.07) rotate(0); }
    100% { opacity: 0; transform: translateY(-26px) scale(.86); }
}
@keyframes nf-revealin { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes nf-sweep { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* ─── GUESTBOOK → İzleyici Yorumları ─── */
.guestbook { max-width: 820px; margin: 0 auto; }
.gb-list { display: grid; gap: 14px; grid-template-columns: 1fr; margin-bottom: 22px; }
@media (min-width: 620px) { .gb-list { grid-template-columns: 1fr 1fr; } }
.gb-entry { padding: 20px 22px; background: var(--card); border: 1px solid var(--card-border); border-radius: 10px; }
.gb-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.gb-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-d));
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.gb-name { font-weight: 700; color: var(--ink); }
.gb-stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; }
.gb-time { font-size: 11px; color: var(--muted); margin-left: auto; }
.gb-entry p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.gb-form { padding: 22px; background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; display: flex; flex-direction: column; gap: 12px; }
.gb-form-title { font-family: var(--font-cond); letter-spacing: .04em; font-size: 22px; color: var(--ink); }
.gb-form input, .gb-form textarea { width: 100%; padding: 13px 15px; background: #0f0f0f; color: var(--ink);
    border: 1px solid var(--line-soft); border-radius: 7px; font: inherit; font-size: 16px; outline: none; transition: border-color .2s; }
.gb-form input::placeholder, .gb-form textarea::placeholder { color: var(--muted); }
.gb-form textarea { resize: vertical; min-height: 80px; }
.gb-form input:focus, .gb-form textarea:focus { border-color: var(--accent); }
.gb-form button { align-self: flex-start; min-height: 46px; padding: 0 28px; background: var(--accent); color: #fff;
    font-weight: 700; border-radius: 6px; transition: background .2s; }
.gb-form button:hover { background: var(--accent-d); }
.gb-status { font-size: 12px; color: var(--ink-2); text-align: center; }

/* ─── FOOTER ─── */
.footer { text-align: center; padding: 60px 24px 50px; }
.footer-word { font-family: var(--font-display); text-transform: uppercase; color: var(--accent);
    font-size: clamp(30px, 7vw, 56px); letter-spacing: .03em; text-shadow: 0 0 40px rgba(229,9,20,0.4); }
.footer-next { font-family: var(--font-cond); letter-spacing: .2em; font-size: 16px; color: var(--ink-2); margin: 8px 0 24px; }
.footer-stats { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border: 1px solid var(--line-soft);
    border-radius: 999px; font-size: 13px; color: var(--ink-3); }
.footer-stats b { color: var(--ink); font-variant-numeric: tabular-nums; }
.footer-brand { margin-top: 30px; font-size: 11px; letter-spacing: .35em; text-transform: uppercase; color: var(--muted); }

/* ═══ MINI-PLAYER (alt çubuk) ═══ */
/* ortalı, yuvarlak yüzen pill (full-width değil) - diğer temalarla aynı düzen */
.player { position: fixed; left: 50%; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 50;
    width: min(360px, calc(100% - 32px)); display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; border-radius: 100px; overflow: hidden;
    background: rgba(8,8,8,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.7);
    transform: translate(-50%, 180%); transition: transform .6s var(--ease) .3s; }
body.is-reading .player { transform: translate(-50%, 0); }
.player-progress { position: absolute; left: 0; right: 0; bottom: 0; top: auto; height: 3px; background: rgba(255,255,255,0.12); }
.player-progress-fill { height: 100%; width: 42%; background: var(--accent); }
.player-thumb { width: 42px; height: 42px; border-radius: 5px; overflow: hidden; flex-shrink: 0; }
.player-thumb img { width: 100%; height: 100%; object-fit: cover; }
.player-controls { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.player-btn { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .15s; }
.player-btn:hover { background: rgba(255,255,255,0.1); }
.player-btn svg { width: 16px; height: 16px; }
.player-btn.player-play { width: 34px; height: 34px; background: #fff; color: #000; }
.player-info { flex: 1; min-width: 0; }
.player-title { font-size: 14px; font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-meta { font-size: 11px; color: var(--ink-3); margin-top: 1px; }
@media (max-width: 480px) { .player-thumb { display: none; } .player { gap: 10px; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
