/* ════════════════════════════ TOKENS ════════════════════════════ */
:root{
  --bg:#040404;
  --bg-2:#060606;
  --panel:#090909;
  --surface:#0E0E0E;
  --raised:#141414;
  --line:#191919;
  --line-soft:rgba(255,255,255,.04);

  --orange:#FF9000;
  --orange-hi:#FFB443;
  --orange-deep:#C96A00;
  --o08:rgba(255,144,0,.08);
  --o14:rgba(255,144,0,.14);
  --o40:rgba(255,144,0,.4);

  --text:#F3F2F0;
  --muted:#A3A19E;
  --dim:#6F6E6C;
  --ink:#000;

  --rail:268px;
  --pad:clamp(18px,3vw,44px);

  --f-display:"Bricolage Grotesque",system-ui,sans-serif;
  --f-body:"Manrope",system-ui,sans-serif;
  --f-mono:"JetBrains Mono",ui-monospace,monospace;

  --r:14px;
  --r-sm:10px;
  --ease:cubic-bezier(.2,.7,.25,1);
  --shadow:0 26px 54px -30px rgba(0,0,0,.9);
}

*,*::before,*::after{box-sizing:border-box}
/* zemin html'de: böylece body'nin ::before katmanı görünür kalır */
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;background:transparent;color:var(--text);
  font-family:var(--f-body);font-size:15px;line-height:1.55;
  -webkit-font-smoothing:antialiased;overflow-x:clip;
}

/* ═══════ SİNEMATİK SAYFA ARKA PLANI ═══════
   Sabit görsel + üstünde vignette/gradient. Tüm panel zeminleri
   yarı saydam olduğu için bu katman siteye derinlik verir. */
body::before{
  content:"";position:fixed;inset:0;z-index:-2;pointer-events:none;
  background:url("/img/bg.jpg") 50% 18% / cover no-repeat;
  opacity:.34;
}
body::after{
  content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(120% 88% at 50% 26%,transparent 4%,rgba(4,4,4,.42) 52%,rgba(4,4,4,.86) 100%),
    linear-gradient(180deg,rgba(4,4,4,.2) 0%,rgba(4,4,4,.55) 44%,rgba(4,4,4,.9) 84%,#040404 100%);
}
a{color:inherit;text-decoration:none;-webkit-tap-highlight-color:transparent}
img{display:block;max-width:100%}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer;-webkit-tap-highlight-color:transparent;touch-action:manipulation}
:focus-visible{outline:2px solid var(--orange);outline-offset:3px;border-radius:4px}
::selection{background:var(--orange);color:var(--ink)}
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-thumb{background:#222;border-radius:99px;border:2px solid var(--bg)}
::-webkit-scrollbar-track{background:transparent}
section[id],div[id]{scroll-margin-top:120px}

.eyebrow{font-family:var(--f-mono);font-size:10.5px;letter-spacing:.22em;text-transform:uppercase;color:var(--dim);margin:0}
.orange{color:var(--orange)}

/* marka kilidi — maske ikonu + yazı görseli */
.logo{display:flex;align-items:center;gap:9px;flex:none;width:max-content;max-width:100%;transition:opacity .18s}
.logo:hover{opacity:.86}
.logo img{display:block;-webkit-user-drag:none;user-select:none}
.logo__mark{height:38px;width:auto}
.logo__word{height:17px;width:auto;margin-top:1px}
.logo--stack{display:block}
.logo--stack .logo__full{width:190px;height:auto}

.dot{width:6px;height:6px;border-radius:50%;background:var(--dim);flex:none}
@keyframes beat{0%,100%{opacity:1}50%{opacity:.25}}

/* ════════════════════════════ SOL RAY ════════════════════════════ */
.rail{
  position:fixed;inset:0 auto 0 0;width:var(--rail);z-index:40;
  background:rgba(9,9,9,.84);-webkit-backdrop-filter:blur(22px) saturate(1.2);
  backdrop-filter:blur(22px) saturate(1.2);
  border-right:1px solid var(--line);
  display:flex;flex-direction:column;transition:transform .35s var(--ease);
}
.rail__brand{padding:18px 22px 15px;border-bottom:1px solid var(--line-soft)}
.rail__brand .logo__mark{height:40px}
.rail__brand .logo__word{height:18px}
.rail__scroll{flex:1;overflow-y:auto;padding:14px 12px 8px;scrollbar-width:thin;scrollbar-color:#222 transparent}

.house{
  margin:2px 8px 18px;padding:14px;border-radius:var(--r);
  background:var(--surface);border:1px solid var(--line);position:relative;overflow:hidden;
}
.house::before{
  content:"";position:absolute;inset:0 0 auto 0;height:2px;
  background:linear-gradient(90deg,transparent,var(--orange),transparent);
  opacity:0;transition:opacity .3s;
}
[data-state="live"] .house::before{opacity:1;animation:sweep 2.6s linear infinite}
@keyframes sweep{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}}
.house__top{display:flex;align-items:center;justify-content:space-between;gap:8px}
.house__name{font-family:var(--f-display);font-weight:700;font-size:14.5px}
.pill{
  display:inline-flex;align-items:center;gap:6px;padding:3px 9px;border-radius:999px;
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;text-transform:uppercase;
  border:1px solid var(--line);color:var(--muted);
}
[data-state="live"] .pill--house{color:var(--ink);background:var(--orange);border-color:var(--orange);font-weight:700}
[data-state="live"] .pill--house .dot{background:var(--ink);animation:beat 1.1s infinite}
[data-state="online"] .pill--house{color:var(--orange-hi);border-color:var(--o40)}
[data-state="online"] .pill--house .dot{background:var(--orange-hi)}
@keyframes vu{from{height:14%}to{height:100%}}
.house__meta{display:flex;justify-content:space-between;font-family:var(--f-mono);font-size:11px;color:var(--muted)}
.house__cta{
  display:block;width:100%;margin-top:12px;padding:9px;border-radius:var(--r-sm);text-align:center;
  font-weight:700;font-size:13px;background:var(--orange);color:var(--ink);transition:filter .18s,transform .18s;
}
.house__cta:hover{filter:brightness(1.1);transform:translateY(-1px)}
[data-state="offline"] .house__cta{background:transparent;border:1px solid var(--line);color:var(--muted)}

.navgrp{margin-bottom:18px}
.navgrp__title{display:flex;align-items:center;justify-content:space-between;padding:0 10px 8px}
.navgrp__title a{
  font-family:var(--f-body);font-size:11px;font-weight:600;letter-spacing:0;
  text-transform:none;color:var(--orange);transition:color .15s;
}
.navgrp__title a:hover{color:var(--orange-hi)}
.navlink{
  display:flex;align-items:center;gap:11px;padding:9px 10px;border-radius:var(--r-sm);
  color:var(--muted);font-weight:500;font-size:14px;position:relative;transition:background .18s,color .18s;
}
.navlink svg{width:17px;height:17px;flex:none;stroke:currentColor;fill:none;stroke-width:1.6}
.navlink:hover{background:var(--o08);color:var(--text)}
.navlink[aria-current="page"]{background:var(--o14);color:var(--orange-hi)}
.navlink[aria-current="page"]::before{
  content:"";position:absolute;left:-12px;top:50%;translate:0 -50%;
  width:3px;height:18px;border-radius:0 3px 3px 0;background:var(--orange);
}
.navlink__tag{
  margin-left:auto;font-size:10.5px;font-weight:700;color:var(--orange);
  background:var(--o14);padding:2px 7px;border-radius:5px;
}
/* premium satırı — vurgulu */
.navlink--accent{color:var(--orange-hi)}
.navlink--accent svg{stroke:var(--orange)}
.navlink--accent:hover{background:var(--o14)}

/* menü altı yardım bağlantıları */
.navfoot{display:flex;flex-wrap:wrap;gap:4px 14px;padding:2px 12px 6px;margin-bottom:4px}
.navfoot a{font-size:12px;color:var(--dim);transition:color .15s}
.navfoot a:hover{color:var(--muted)}

.sublist{display:grid;gap:2px}
.sub{display:flex;align-items:center;gap:10px;padding:6px 10px;border-radius:var(--r-sm);color:var(--muted);font-size:13px;transition:.18s}
.sub:hover{background:var(--o08);color:var(--text)}
.sub__ava{position:relative;flex:none}
.sub__ava img{width:28px;height:28px;border-radius:50%;object-fit:cover}
.sub__ava .st{position:absolute;right:-1px;bottom:-1px;width:9px;height:9px;border-radius:50%;border:2px solid var(--panel);background:var(--dim)}
.sub__ava .st.on{background:#4CC26B}
.sub small{margin-left:auto;font-family:var(--f-mono);font-size:9px;letter-spacing:.12em;color:var(--orange);text-transform:uppercase}

.rail__foot{display:block;padding:12px 16px 16px;border-top:1px solid var(--line-soft)}
.me{display:flex;align-items:center;gap:10px;padding:8px;border-radius:var(--r-sm);transition:background .18s}
.rail__foot:hover .me{background:var(--o08)}
.me img{width:36px;height:36px;border-radius:50%;object-fit:cover;border:2px solid var(--line)}
.me b{display:block;font-size:13.5px}
.me small{display:block;color:var(--dim);font-family:var(--f-mono);font-size:10px;letter-spacing:.08em}

/* ════════════════════════════ HEADER ════════════════════════════ */
.shell{margin-left:var(--rail);min-height:100vh;display:flex;flex-direction:column}

.hd{
  position:sticky;top:0;z-index:30;
  background:rgba(4,4,4,.85);-webkit-backdrop-filter:blur(22px) saturate(1.25);
  backdrop-filter:blur(22px) saturate(1.25);
  border-bottom:1px solid var(--line);
}
.hd__in{
  display:flex;align-items:center;gap:20px;height:60px;
  max-width:1600px;margin:0 auto;padding:0 var(--pad);
}

/* ── sol: menü + marka ── */
.hd__burger{
  display:none;width:38px;height:38px;flex:none;border-radius:9px;place-items:center;
  color:var(--muted);transition:.15s;
}
.hd__burger svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.9}
.hd__burger:hover{background:var(--surface);color:#fff}
.hd__logo{display:none;align-items:center;flex:none}
.hd__logo .logo__mark{height:32px}
.hd__logo .logo__word{height:14px}

/* ── arama: komut çubuğu ── */
.hd__qwrap{position:relative;flex:1;max-width:520px;min-width:0}
.hd__q{
  display:flex;align-items:center;gap:10px;height:38px;padding:0 8px 0 13px;border-radius:9px;
  background:var(--surface);box-shadow:inset 0 0 0 1px var(--line);
  transition:box-shadow .18s,background .18s;
}
.hd__q:focus-within{background:var(--raised);box-shadow:inset 0 0 0 1px var(--o40)}
.hd__q > svg{width:14px;height:14px;flex:none;stroke:var(--dim);fill:none;stroke-width:2;transition:stroke .15s}
.hd__q:focus-within > svg{stroke:var(--orange)}
.hd__q input{
  flex:1;min-width:0;background:none;border:0;outline:none;
  color:var(--text);font:inherit;font-size:13px;
}
.hd__q input::placeholder{color:var(--dim)}
.hd__q input::-webkit-search-cancel-button{display:none}
.hd__qk{
  flex:none;min-width:20px;height:20px;padding:0 5px;border-radius:4px;
  background:var(--raised);box-shadow:inset 0 0 0 1px #222221;
  display:grid;place-items:center;font-family:var(--f-mono);font-size:10.5px;color:var(--dim);
}
.hd__qx{
  flex:none;width:22px;height:22px;border-radius:5px;background:var(--raised);color:var(--muted);
  font-size:14px;line-height:1;transition:.14s;
}
.hd__qx:hover{background:var(--orange);color:var(--ink)}

/* öneri paneli */
.hd__sug{
  position:absolute;top:calc(100% + 9px);left:0;right:0;z-index:40;padding:6px;
  border-radius:11px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line),0 24px 60px -24px #000;
  animation:pageIn .16s var(--ease) both;
}
.hd__sug p{
  margin:0;padding:7px 10px 6px;font-family:var(--f-mono);font-size:9.5px;
  letter-spacing:.16em;text-transform:uppercase;color:var(--dim);
}
.hd__sug button{
  display:flex;align-items:center;gap:10px;width:100%;padding:9px 10px;border-radius:7px;
  font-size:13px;color:#CDCCCA;text-align:left;transition:.12s;
}
.hd__sug button:hover{background:var(--raised);color:#fff}
.hd__sug svg{width:13px;height:13px;flex:none;stroke:var(--orange);fill:none;stroke-width:2}
.hd__sug b{margin-left:auto;font-size:10px;font-weight:700;color:var(--orange)}

/* ── sağ küme ── */
.hd__acts{position:relative;display:flex;align-items:center;gap:4px;margin-left:auto;flex:none}
.hd__sep{width:1px;height:22px;background:var(--line);flex:none;margin:0 8px}

/* kredi */
.hd__cred{
  display:inline-flex;align-items:baseline;gap:7px;height:38px;padding:0 12px;border-radius:9px;
  align-items:center;transition:.15s;
}
.hd__cred:hover{background:var(--surface)}
.hd__cred svg{width:15px;height:15px;stroke:var(--orange);fill:none;stroke-width:1.9;flex:none}
.hd__cred b{font-family:var(--f-mono);font-size:13px;font-weight:700;color:#EDECEA;font-variant-numeric:tabular-nums}
.hd__cred small{font-size:10.5px;color:var(--dim);font-weight:600}

/* hayalet ikonlar */
.hd__ic{
  position:relative;width:38px;height:38px;flex:none;border-radius:9px;
  display:grid;place-items:center;color:var(--muted);transition:.15s;
}
.hd__ic svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.7}
.hd__ic:hover,.hd__ic.on{background:var(--surface);color:#fff}
.hd__ic em{
  position:absolute;top:4px;right:3px;min-width:15px;height:15px;padding:0 4px;border-radius:8px;
  background:var(--orange);color:var(--ink);font-style:normal;font-size:9px;font-weight:800;
  display:grid;place-items:center;box-shadow:0 0 0 2px var(--bg);
}

/* bildirim paneli */
.hd__pop{
  position:absolute;top:calc(100% + 14px);right:120px;z-index:40;width:324px;
  border-radius:12px;background:var(--panel);overflow:hidden;
  box-shadow:inset 0 0 0 1px var(--line),0 28px 70px -28px #000;
  animation:pageIn .16s var(--ease) both;
}
.hd__pop header{display:flex;align-items:center;justify-content:space-between;padding:12px 15px;border-bottom:1px solid var(--line)}
.hd__pop header b{font-size:13px;font-weight:700}
.hd__pop header a{font-size:11.5px;color:var(--orange);font-weight:700}
.hd__pop header a:hover{text-decoration:underline}
.hd__note{display:flex;gap:11px;padding:11px 15px;border-bottom:1px solid var(--line);transition:background .12s}
.hd__note:last-child{border-bottom:0}
.hd__note:hover{background:var(--raised)}
.hd__note img{width:34px;height:34px;border-radius:8px;object-fit:cover;flex:none}
.hd__note p{margin:0;font-size:12.5px;color:#CDCCCA;line-height:1.45}
.hd__note p b{color:#fff;font-weight:700}
.hd__note small{display:block;margin-top:3px;font-size:10.5px;color:var(--dim)}
.hd__note.unread{background:var(--o08)}
.hd__note.unread:hover{background:var(--o14)}

/* premium CTA */
.hd__cta{
  display:inline-flex;align-items:center;gap:8px;height:38px;padding:0 17px;border-radius:9px;
  background:var(--orange);color:var(--ink);font-size:13px;font-weight:700;
  transition:filter .15s;
}
.hd__cta svg{width:12px;height:12px;fill:currentColor}
.hd__cta:hover{filter:brightness(1.08)}
.hd__cta[aria-pressed="true"]{background:var(--surface);box-shadow:inset 0 0 0 1px var(--o40);color:var(--orange)}

/* avatar + menü */
.hd__ava{
  position:relative;width:38px;height:38px;flex:none;border-radius:9px;padding:0;
  margin-left:4px;overflow:visible;transition:.15s;
}
.hd__ava img{
  width:32px;height:32px;border-radius:8px;object-fit:cover;display:block;margin:3px;
  transition:box-shadow .15s;
}
.hd__ava:hover img,.hd__ava.on img{box-shadow:0 0 0 2px var(--o40)}
.hd__avastar{
  position:absolute;right:-3px;bottom:-3px;width:15px;height:15px;border-radius:5px;
  background:var(--orange);color:var(--ink);display:grid;place-items:center;
  box-shadow:0 0 0 2px var(--bg);
}
.hd__avastar svg{width:9px;height:9px}

.hd__menu{
  position:absolute;top:calc(100% + 14px);right:0;z-index:40;width:236px;
  border-radius:12px;background:var(--panel);overflow:hidden;
  box-shadow:inset 0 0 0 1px var(--line),0 28px 70px -28px #000;
  animation:pageIn .16s var(--ease) both;
}
.hd__menuh{
  display:flex;align-items:center;gap:11px;padding:13px 15px;border-bottom:1px solid var(--line);
  transition:background .13s;
}
.hd__menuh:hover{background:var(--raised)}
.hd__menuh img{width:36px;height:36px;border-radius:8px;object-fit:cover;flex:none}
.hd__menuh b{display:block;font-size:13.5px;font-weight:700}
.hd__menuh small{display:block;font-size:10.5px;color:var(--dim);margin-top:2px}
.hd__menulist{display:grid;padding:6px}
.hd__menulist a{
  display:flex;align-items:center;gap:11px;padding:9px 10px;border-radius:8px;
  font-size:13px;font-weight:600;color:#CDCCCA;transition:.13s;
}
.hd__menulist a:hover{background:var(--raised);color:#fff}
.hd__menulist svg{width:15px;height:15px;flex:none;stroke:var(--dim);fill:none;stroke-width:1.8;transition:stroke .13s}
.hd__menulist a:hover svg{stroke:var(--orange)}
.hd__menulist em{
  font-style:normal;margin-left:auto;min-width:17px;height:17px;padding:0 5px;border-radius:9px;
  background:var(--orange);color:var(--ink);font-size:10px;font-weight:700;
  display:inline-grid;place-items:center;
}
.hd__menufoot{
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  padding:9px 15px;border-top:1px solid var(--line);
}
.hd__menufoot a{display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:600;color:var(--muted);transition:color .13s}
.hd__menufoot a:hover{color:#fff}
.hd__menufoot svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:1.8}
.hd__menuin{color:var(--orange) !important;font-weight:700 !important}
.hd__menuin:hover{text-decoration:underline}

/* canlı yayın şeridi — header'ın alt kenarı */
.tally{height:2px;background:transparent}
[data-state="live"] .tally{
  background:linear-gradient(90deg,var(--orange-deep),var(--orange-hi),var(--orange-deep));
  background-size:200% 100%;animation:slide 3s linear infinite;
}
@keyframes slide{to{background-position:200% 0}}

/* Sayfa nefes payı — tek noktadan yönetilir:
   üstte içerik header'a yapışmaz, altta footer çizgisiyle çakışmaz.
   Tam genişlik banner ile açılan sayfalar (premium kampanya şeridi,
   model kapağı) üstten muaf tutulur; onlar header'a dayanmalı. */
main{flex:1;padding:24px var(--pad) 60px}
main:has(> .pm),main:has(> .mp),main:has(> .hero){padding-top:0}

/* ── SPA sayfa geçişi ──
   Her rota değişiminde içerik yumuşak bir kayışla gelir; hesap sekmeleri
   arasında ise kabuk sabit kalır, yalnızca .acc__out animasyonu oynar. */
@keyframes pageIn{from{opacity:0;transform:translateY(9px)}to{opacity:1;transform:none}}
main > *{animation:pageIn .24s var(--ease) both}
.acc__out{animation:pageIn .2s var(--ease) both}
.section{padding-top:52px}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:20px;flex-wrap:wrap}
.section__title{
  display:flex;align-items:center;gap:12px;
  font-family:var(--f-display);font-weight:800;font-size:clamp(21px,2.4vw,28px);letter-spacing:-.025em;margin:6px 0 0;
}
.section__title::before{content:"";width:5px;height:24px;border-radius:3px;background:var(--orange);flex:none}
.section__title small{font-family:var(--f-body);font-size:12.5px;font-weight:500;color:var(--dim);letter-spacing:0;margin-top:7px}
.link-more{font-family:var(--f-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--orange);border-bottom:1px solid var(--o40);padding-bottom:2px;white-space:nowrap}
.link-more:hover{color:var(--orange-hi)}

/* ═══════════════════ SİNEMATİK HERO — VIP slider + canlı yayın ═══════════════════ */
.hero{
  position:relative;margin-top:14px;border-radius:16px;overflow:hidden;
  background:#000;isolation:isolate;
  height:clamp(470px,64vh,660px);display:flex;flex-direction:column;
}
/* ── arka plan: blur'lu ambient dolgu + sağda net görsel ── */
.hero__bg{position:absolute;inset:0;z-index:0;overflow:hidden}
.hslide{position:absolute;inset:0;opacity:0;transition:opacity 1.1s var(--ease)}
.hslide.on{opacity:1}

/* sol boşluğu dolduran ambient katman — görselin kendi ışığı */
.hslide__amb{
  position:absolute;inset:-8%;width:116%;height:116%;object-fit:cover;
  filter:blur(52px) saturate(1.75) brightness(1.06);
  transform:scale(1.08);opacity:1;
}
/* net görsel — sağ panelde, downscale edilerek keskin durur */
.hslide__main{
  position:absolute;inset:0 0 0 auto;width:clamp(420px,54%,820px);height:100%;
  object-fit:cover;transform:scale(1.05);transition:transform 12s linear;
  filter:saturate(1.06) contrast(1.04);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 34%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 34%);
}
.hslide.on .hslide__main{transform:scale(1)}
/* kendi karartması güçlü görseller için yumuşak derecelendirme */
.hero__grade.is-soft{
  background:
    linear-gradient(95deg,rgba(2,2,2,.76) 0%,rgba(2,2,2,.58) 26%,rgba(2,2,2,.06) 50%,transparent 62%),
    linear-gradient(0deg,rgba(2,2,2,.84) 2%,rgba(2,2,2,.16) 24%,transparent 48%),
    radial-gradient(70% 80% at 4% 80%,rgba(255,144,0,.18),transparent 56%),
    radial-gradient(130% 130% at 50% 50%,transparent 60%,rgba(0,0,0,.45) 100%);
}
.hero__grade{transition:background .8s var(--ease)}
/* çok katmanlı sinematik derecelendirme */
.hero__grade{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    linear-gradient(95deg,rgba(2,2,2,.9) 0%,rgba(2,2,2,.74) 26%,rgba(2,2,2,.2) 50%,transparent 64%),
    linear-gradient(0deg,rgba(2,2,2,.9) 2%,rgba(2,2,2,.26) 26%,transparent 52%),
    radial-gradient(70% 80% at 6% 82%,rgba(255,144,0,.15),transparent 58%),
    radial-gradient(130% 130% at 50% 50%,transparent 54%,rgba(0,0,0,.55) 100%);
}
/* film graini */
.hero__grain{
  position:absolute;inset:-40%;z-index:2;pointer-events:none;opacity:.07;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  animation:grain 1.1s steps(4) infinite;
}
@keyframes grain{
  0%{transform:translate(0,0)}25%{transform:translate(-3%,2%)}
  50%{transform:translate(2%,-3%)}75%{transform:translate(-2%,-2%)}100%{transform:translate(0,0)}
}
/* dev kontur filigran */
.hero__mark{
  position:absolute;right:clamp(6px,2vw,26px);bottom:88px;z-index:2;
  font-family:var(--f-display);font-weight:800;font-size:clamp(96px,15vw,210px);line-height:.8;
  color:transparent;-webkit-text-stroke:1px rgba(255,144,0,.16);
  letter-spacing:-.05em;pointer-events:none;user-select:none;
}

@keyframes ring{0%{opacity:.85;transform:scale(.55)}100%{opacity:0;transform:scale(1.6)}}

/* ── orta: VIP anlatımı ── */
.hero__body{position:relative;z-index:4;flex:1}
.hcontent{
  position:absolute;left:clamp(18px,3.2vw,40px);top:50%;translate:0 -50%;
  max-width:min(620px,72%);pointer-events:none;
}
.hcontent.on{pointer-events:auto}
.hcontent>*{
  opacity:0;translate:0 26px;filter:blur(6px);
  transition:opacity .7s var(--ease),translate .7s var(--ease),filter .7s var(--ease);
}
.hcontent.on>*{opacity:1;translate:0 0;filter:blur(0)}
.hcontent.on>:nth-child(1){transition-delay:.18s}
.hcontent.on>:nth-child(2){transition-delay:.32s}
.hcontent.on>:nth-child(3){transition-delay:.46s}
.hcontent.on>:nth-child(4){transition-delay:.6s}
.hcontent.on>:nth-child(5){transition-delay:.74s}
/* rozet satırı: VIP + slayt bilgisi */
.hero__flags{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.hero__flag{
  display:inline-flex;align-items:center;gap:7px;background:var(--orange);color:var(--ink);
  font-size:10.5px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;border-radius:4px;padding:4px 11px;
}
.hero__kicker{
  display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;color:#E4E3E1;
  background:rgba(0,0,0,.5);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.1);
  border-radius:4px;padding:4px 10px;
}
.hero__kicker svg{width:12px;height:12px;stroke:var(--orange);fill:none;stroke-width:2}
.hero__meta{
  display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:600;color:#A9A8A6;
}
.hero__meta i{width:3px;height:3px;border-radius:50%;background:var(--orange)}
.hero__title{
  font-family:var(--f-display);font-weight:800;letter-spacing:-.035em;line-height:1;
  font-size:clamp(30px,4.6vw,58px);margin:15px 0 0;
  text-shadow:0 4px 30px rgba(0,0,0,.85),0 1px 3px rgba(0,0,0,.6);
}
.hero__title em{font-style:normal;color:var(--orange);display:block}
.hero__text{color:#D3D2D0;font-size:14px;line-height:1.6;max-width:44ch;margin:13px 0 0;text-shadow:0 2px 14px rgba(0,0,0,.7)}
.hero__perks{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0 0}
.hero__perks span{
  display:inline-flex;align-items:center;gap:7px;font-size:11.5px;font-weight:600;color:#D8D7D5;
  background:rgba(255,255,255,.07);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.09);
  border-radius:999px;padding:5px 13px;
}
.hero__perks i{width:4px;height:4px;border-radius:50%;background:var(--orange)}
.hero__cta{display:flex;align-items:center;gap:10px;margin-top:22px;flex-wrap:wrap}
.hero__cta .btn{padding:13px 26px;font-size:14px}
/* sosyal kanıt: VIP üye avatarları */
.hero__social{display:flex;align-items:center;gap:12px;margin-left:4px}
.hero__social .faces{display:flex}
.hero__social img{width:26px;height:26px;border-radius:50%;object-fit:cover;border:2px solid rgba(0,0,0,.6);margin-right:-8px}
.hero__social span{font-size:11.5px;color:#B8B7B5;line-height:1.35}
.hero__social b{display:block;color:#fff;font-weight:700;font-size:12px}
.btn--glass{
  background:rgba(255,255,255,.09);backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.16);color:#fff;
}
.btn--glass:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.3)}

/* ── slayt küçük resimleri — sağ üst ── */
.hero__thumbs{
  position:absolute;right:clamp(14px,2.4vw,24px);top:clamp(18px,2.6vw,28px);z-index:5;
  display:flex;flex-direction:column;gap:8px;
}
.hthumb{
  position:relative;width:96px;aspect-ratio:16/10;border-radius:6px;overflow:hidden;
  opacity:.5;transition:opacity .25s,transform .25s var(--ease),box-shadow .25s;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}
.hthumb img{width:100%;height:100%;object-fit:cover}
.hthumb:hover{opacity:.85;transform:translateX(-3px)}
.hthumb.on{opacity:1;box-shadow:inset 0 0 0 2px var(--orange),0 8px 26px -10px rgba(255,144,0,.6)}
.hthumb b{
  position:absolute;left:5px;bottom:4px;font-size:9.5px;font-weight:800;color:#fff;
  text-shadow:0 1px 6px rgba(0,0,0,.9);letter-spacing:.06em;
}

/* ── slayt kontrol satırı ── */
.hero__ctl{
  position:relative;z-index:5;display:flex;align-items:center;
  padding:0 clamp(16px,2.6vw,26px) 16px;
}
.hero__bars{display:flex;gap:6px}
.hero__nav{display:flex;align-items:center;gap:7px;margin-left:auto}
.hero__num{font-family:var(--f-mono);font-size:11px;color:#C9C8C6;letter-spacing:.14em;margin-right:4px;text-shadow:0 2px 8px rgba(0,0,0,.8)}
.hero__num b{color:var(--orange);font-weight:700}
.hnav{
  width:34px;height:34px;border-radius:8px;display:grid;place-items:center;
  background:rgba(0,0,0,.5);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.12);
  color:#DDD;transition:.15s;
}
.hnav:hover{background:var(--orange);border-color:var(--orange);color:var(--ink)}
.hnav svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2.2}
.hbar{width:26px;height:3px;border-radius:99px;background:rgba(255,255,255,.25);overflow:hidden;transition:width .35s var(--ease)}
.hbar i{display:block;height:100%;width:0;background:var(--orange)}
.hbar.on{width:50px}
.hbar.on i{animation:vprog 7s linear infinite}
@keyframes vprog{from{width:0}to{width:100%}}

/* ══════════ CANLI YAYIN ŞERİDİ — slider altı ══════════ */
:root{--red:#FF1F3D}

.lv{
  position:relative;margin:0 calc(var(--pad)*-1);padding:22px var(--pad) 24px;
  border-block:1px solid var(--line);overflow:hidden;isolation:isolate;
}
[data-state="live"] .lv{border-block-color:rgba(255,31,61,.22)}
/* canlıyken üstte akan kırmızı iz */
[data-state="live"] .lv::before{
  content:"";position:absolute;inset:0 0 auto 0;height:2px;z-index:3;
  background:linear-gradient(90deg,transparent,var(--red),transparent);
  animation:sweep 3s linear infinite;
}
.lv::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(90deg,rgba(4,4,4,.86) 0%,rgba(4,4,4,.7) 46%,rgba(4,4,4,.88) 100%);
}
.lv__kicker .verif{width:13px;height:13px}
.lv__watchers .faces{display:flex}
.lv__act .btn{padding:12px 22px;font-size:13.5px}
.lv__act .btn svg{width:14px;height:14px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 22px;border-radius:var(--r-sm);
  font-weight:700;font-size:14px;transition:.2s var(--ease);white-space:nowrap;
}
.btn--orange{background:var(--orange);color:var(--ink)}
.btn--orange:hover{filter:brightness(1.1);transform:translateY(-2px);box-shadow:0 14px 30px -14px var(--orange)}
.btn--dark{background:var(--raised);color:#CDCCCA}
.btn--dark:hover{background:#1E1E1E;color:#fff}
.btn--dark[aria-pressed="true"]{color:var(--orange)}
.btn--line{border:1px solid var(--line);color:var(--text)}
.btn--line:hover{border-color:var(--orange);color:var(--orange)}

/* ════════════════════════════ VİDEOLAR — TF kalite ════════════════════════════ */
.vidbar{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
/* PH stili yassı sekmeler — hap/mono yok */
.tabs{display:flex;gap:6px;flex-wrap:wrap}
.chip{
  padding:8px 15px;border-radius:5px;background:var(--raised);color:#CDCCCA;
  font-size:13px;font-weight:600;transition:background .15s,color .15s;
}
.chip:hover{background:#1E1E1E;color:#fff}
.chip[aria-pressed="true"]{background:var(--orange);color:var(--ink);font-weight:700}
.sort{
  display:flex;align-items:center;gap:7px;background:var(--raised);
  border-radius:5px;padding:8px 13px;font-size:12.5px;font-weight:600;color:var(--dim);
}
.sort select{background:none;border:0;color:#CDCCCA;font:inherit;font-size:13px;font-weight:600;outline:none;cursor:pointer}
.sort select option{background:var(--raised)}

.vidcount{font-family:var(--f-body);font-size:12.5px;letter-spacing:0;text-transform:none;color:var(--dim);font-weight:500}
.vidcount b{color:var(--orange);font-weight:700}
/* bölüm başlığı üst etiketi temaya bağlanır */
.section__head .eyebrow{color:var(--orange);letter-spacing:.18em}

/* PH stili: düz kartlar — kutu yok, çerçeve yok, sadece görsel + metin */
.vids{display:grid;grid-template-columns:repeat(auto-fill,minmax(228px,1fr));gap:22px 14px}
.vid{position:relative}
.vid__frame{
  position:relative;aspect-ratio:16/9;overflow:hidden;background:#0C0C0C;display:block;border-radius:6px;
}
.vid__frame img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .3s}
.vid__frame img.on{opacity:1}
/* önizleme nokta göstergesi */
.pv-dots{
  position:absolute;left:50%;bottom:8px;translate:-50% 0;z-index:3;display:flex;gap:4px;
  opacity:0;transition:opacity .2s;
}
.vid:hover .pv-dots{opacity:1}
.pv-dots i{width:13px;height:2.5px;border-radius:2px;background:rgba(255,255,255,.32);transition:.15s}
.pv-dots i.on{background:var(--orange)}
.badge-time{
  position:absolute;right:6px;bottom:6px;z-index:2;font-size:11.5px;font-weight:700;
  background:rgba(0,0,0,.82);border-radius:4px;padding:2px 6px;color:#fff;
  font-variant-numeric:tabular-nums;
}
.badge-q{
  position:absolute;right:6px;top:6px;z-index:2;font-size:10px;font-weight:700;
  background:rgba(0,0,0,.82);border-radius:4px;padding:2px 6px;color:var(--orange);
}
.badge-prem{
  position:absolute;left:6px;top:6px;z-index:3;display:inline-flex;align-items:center;gap:4px;
  font-size:10px;font-weight:700;background:var(--orange);color:var(--ink);
  border-radius:4px;padding:2px 7px;
}
.badge-new{
  position:absolute;left:6px;top:6px;z-index:3;font-size:10px;font-weight:700;
  background:rgba(0,0,0,.82);color:#fff;border-radius:4px;padding:2px 7px;
}
.vid[data-premium] .badge-new{top:30px}
.badge-teaser{display:none}
.watchbar{position:absolute;left:0;right:0;bottom:0;height:3px;background:rgba(255,255,255,.1);z-index:2}
.watchbar i{display:block;height:100%;background:var(--orange)}
.vid__body{padding:9px 2px 0}
.vid__title{
  font-weight:600;font-size:13.5px;letter-spacing:-.005em;margin:0;line-height:1.4;color:#E8E7E5;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color .12s;
}
.vid:hover .vid__title{color:var(--orange)}
.vid__meta{display:flex;align-items:center;gap:6px;margin-top:5px}
.vid__meta .ch-ava{display:none}
.vid__meta a{display:inline-flex;align-items:center;gap:4px;color:var(--dim);font-size:12px;font-weight:500}
.vid__meta a:hover{color:var(--muted);text-decoration:underline}
.verif{width:12px;height:12px;flex:none}
.vid__stats{display:flex;align-items:center;gap:5px;margin-top:3px;font-size:11.5px;color:var(--dim)}
.vid__stats .rate{color:var(--orange);margin-left:auto;font-weight:600}
.vid[hidden]{display:none}

.load-more{display:grid;place-items:center;margin-top:26px}
.empty{color:var(--muted);font-size:14px;padding:24px 0}

/* ════════════════════════════ MODELLER ════════════════════════════ */
.band{
  background:rgba(6,6,6,.66);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border-block:1px solid var(--line-soft);
  margin-inline:calc(var(--pad)*-1);padding-inline:var(--pad);padding-bottom:52px;
}
.grid-models{display:grid;grid-template-columns:repeat(auto-fill,minmax(196px,1fr));gap:22px 16px}
.model{display:block;transition:transform .25s var(--ease)}
.model:hover{transform:translateY(-3px)}
.model[hidden]{display:none}

/* portre görsel */
.model__ph{
  position:relative;aspect-ratio:3/4;border-radius:10px;overflow:hidden;background:var(--surface);
  box-shadow:inset 0 0 0 1px var(--line);
}
.model__ph img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease),filter .3s}
.model:hover .model__ph img{transform:scale(1.04)}
/* alt karartma — rozetler ve hover butonu için */
.model__ph::after{
  content:"";position:absolute;inset:auto 0 0 0;height:44%;pointer-events:none;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.55));
  transition:opacity .25s;
}

/* rozetler */
.model__rank{
  position:absolute;top:8px;left:8px;z-index:2;
  font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  background:var(--orange);color:var(--ink);padding:2.5px 8px;border-radius:4px;
}
.model__new{
  position:absolute;top:8px;left:8px;z-index:2;
  font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  background:#fff;color:#000;padding:2.5px 8px;border-radius:4px;
}
.model__on{
  position:absolute;top:8px;right:8px;z-index:2;display:inline-flex;align-items:center;gap:5px;
  font-size:10px;font-weight:700;color:#8FE3A6;
  background:rgba(0,0,0,.66);backdrop-filter:blur(6px);padding:2.5px 8px;border-radius:4px;
}
.model__on i{width:5px;height:5px;border-radius:50%;background:#4CC26B;animation:beat 2s infinite}

/* hover'da fotoğrafın üstünde beliren buton */
/* varsayılan: görünür (dokunmatik cihazlar) */
.model__go{
  position:absolute;left:10px;right:10px;bottom:10px;z-index:3;
  display:flex;align-items:center;justify-content:center;gap:7px;height:34px;border-radius:7px;
  background:var(--orange);color:var(--ink);font-size:12.5px;font-weight:700;
  transition:opacity .22s var(--ease),translate .22s var(--ease);
}
.model__go svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.4}
/* yalnızca gerçek hover destekleyen cihazlarda gizle → hover'da belir */
@media (hover:hover){
  .model__go{opacity:0;translate:0 8px}
  .model:hover .model__go{opacity:1;translate:0 0}
  .model__ph::after{opacity:0}
  .model:hover .model__ph::after{opacity:1}
}

/* isim satırı */
.model__id{display:flex;align-items:center;gap:5px;margin:10px 0 0}
.model__name{font-size:14.5px;font-weight:700;letter-spacing:-.01em;color:#EDECEA;transition:color .15s}
.model:hover .model__name{color:var(--orange)}
.model__id .verif{width:13px;height:13px;flex:none}
.model__handle{font-size:12px;color:var(--dim);margin:2px 0 0}

/* ════════════════════ TAKVİM + TOP LİSTE ════════════════════ */
.duo{display:grid;grid-template-columns:1.08fr .92fr;gap:18px;align-items:start}
.panel{
  border:1px solid var(--line);border-radius:14px;overflow:hidden;
  background:rgba(9,9,9,.78);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
}
.panel__head{display:flex;align-items:center;gap:12px;padding:16px 18px 14px}
.panel__head b{font-family:var(--f-display);font-size:16px;font-weight:800;letter-spacing:-.015em}
.panel__head .eyebrow{margin-left:auto;color:var(--dim);letter-spacing:.14em}

/* ── gün sekmeleri ── */
.days{display:grid;grid-template-columns:repeat(7,1fr);gap:5px;padding:0 14px 14px}
.day{
  display:flex;flex-direction:column;align-items:center;gap:3px;padding:9px 2px 8px;border-radius:8px;
  background:var(--raised);color:var(--dim);transition:.16s;position:relative;
}
.day:hover{background:#1E1E1E;color:var(--muted)}
.day b{font-size:14px;font-weight:800;color:#CDCCCA;font-variant-numeric:tabular-nums}
.day span{font-size:9.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.day.on{background:var(--orange)}
.day.on b,.day.on span{color:var(--ink)}
.day.today::after{content:"";position:absolute;left:50%;bottom:5px;translate:-50% 0;width:4px;height:4px;border-radius:50%;background:var(--orange)}
.day.on.today::after{background:rgba(0,0,0,.5)}
.day.has::before{content:"";position:absolute;top:6px;right:7px;width:5px;height:5px;border-radius:50%;background:var(--o40)}
.day.on.has::before{background:rgba(0,0,0,.35)}
.slot__tag.hot{background:var(--orange);color:var(--ink)}

/* ── top liste ── */
.tops{padding:2px 0 6px}
.top{
  display:grid;grid-template-columns:26px 92px 1fr auto;gap:12px;align-items:center;
  padding:10px 18px;transition:background .16s;position:relative;
}
.top:hover{background:var(--o08)}
.top__n{font-size:15px;font-weight:800;color:#2E2E2E;font-variant-numeric:tabular-nums;text-align:center}
.top:nth-child(1) .top__n{color:var(--orange)}
.top:nth-child(2) .top__n{color:#8A8987}
.top:nth-child(3) .top__n{color:#5A4325}
.top__ph{position:relative;aspect-ratio:16/9;border-radius:6px;overflow:hidden;background:var(--surface)}
.top__ph img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.top:hover .top__ph img{transform:scale(1.06)}
.top__dur{
  position:absolute;right:4px;bottom:4px;font-size:9.5px;font-weight:700;
  background:rgba(0,0,0,.82);border-radius:3px;padding:1px 4px;
}
.top__info{min-width:0}
.top__info b{
  display:block;font-size:13px;font-weight:700;line-height:1.35;letter-spacing:-.01em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:color .15s;
}
.top:hover .top__info b{color:var(--orange)}
.top__info small{font-size:11.5px;color:var(--dim)}
/* izlenme barı */
.top__bar{height:3px;border-radius:99px;background:var(--raised);margin-top:6px;overflow:hidden}
.top__bar i{display:block;height:100%;border-radius:99px;background:linear-gradient(90deg,var(--orange-deep),var(--orange));width:0;transition:width 1.1s var(--ease)}
.top__val{text-align:right}
.top__val b{display:block;font-size:13px;font-weight:800;color:#EDECEA;font-variant-numeric:tabular-nums}
.top__val small{font-size:10.5px;color:#4CC26B;font-weight:700}

/* ════════════════════════════════════════════════════════════
   VİDEO DETAY SAYFASI
   ════════════════════════════════════════════════════════════ */
.vp{max-width:var(--maxw,1360px);margin:0 auto;width:100%}

/* kırıntı yolu */
.crumb{display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--dim);margin-bottom:14px}
.crumb a{color:var(--muted);transition:color .15s}
.crumb a:hover{color:var(--orange)}
.crumb i{font-style:normal;color:#2A2A2A}

.vp__grid{display:grid;grid-template-columns:minmax(0,1fr) 344px;gap:26px;align-items:start}
.vp__main{min-width:0}

/* ── oynatıcı ── */
.pl{position:relative;isolation:isolate}
/* arkada sinematik ışık — poster yerine sakin, temaya uygun parlama */
.pl__amb{
  position:absolute;inset:-30px -50px -70px;z-index:-1;pointer-events:none;
  background:
    radial-gradient(58% 62% at 50% 38%,var(--o08),transparent 72%),
    radial-gradient(42% 40% at 50% 96%,rgba(255,144,0,.05),transparent 75%);
}

.pl__stage{
  position:relative;aspect-ratio:16/9;border-radius:12px;overflow:hidden;background:#000;
  box-shadow:0 0 0 1px var(--line),0 34px 80px -40px #000;
}
.pl__poster{width:100%;height:100%;object-fit:cover;transition:filter .4s,transform .6s var(--ease)}
.pl__stage.playing .pl__poster{filter:brightness(.82)}
.pl__stage.locked .pl__poster{filter:blur(20px) brightness(.38) saturate(.7);transform:scale(1.08)}
.pl__stage::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,.42) 0%,transparent 20%,transparent 58%,rgba(0,0,0,.78) 100%);
}

.pl__badges{position:absolute;top:12px;left:12px;z-index:3;display:flex;gap:6px}
.pl__q,.pl__prem,.pl__new{
  height:22px;padding:0 9px;border-radius:4px;display:inline-flex;align-items:center;
  font-size:10.5px;font-weight:800;letter-spacing:.06em;
}
.pl__q{background:rgba(0,0,0,.78);color:var(--orange)}
.pl__prem{background:var(--orange);color:var(--ink);text-transform:uppercase}
.pl__new{background:#fff;color:#000;text-transform:uppercase}

/* dikey mod düğmesi */
.pl__reels{
  position:absolute;top:12px;right:12px;z-index:4;display:inline-flex;align-items:center;gap:7px;
  height:32px;padding:0 13px;border-radius:7px;
  background:rgba(0,0,0,.62);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.14);color:#EDECEA;font-size:12.5px;font-weight:700;transition:.16s;
}
.pl__reels svg{width:15px;height:15px}
.pl__reels:hover{background:var(--orange);border-color:var(--orange);color:var(--ink)}

.pl__play{
  position:absolute;left:50%;top:50%;translate:-50% -50%;z-index:4;
  width:76px;height:76px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,144,0,.96);color:var(--ink);
  box-shadow:0 18px 48px -14px rgba(255,144,0,.9);
  transition:transform .2s var(--ease),filter .2s;
}
.pl__play svg{width:30px;height:30px;fill:currentColor;margin-left:4px}
.pl__play:hover{transform:translate(-50%,-50%) scale(1.07);filter:brightness(1.08)}

.pl__lock{
  position:absolute;inset:0;z-index:5;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:9px;text-align:center;padding:24px;
}
.pl__lock>svg{width:30px;height:30px;fill:var(--orange)}
.pl__lock b{font-family:var(--f-display);font-size:clamp(17px,2vw,22px);font-weight:800;letter-spacing:-.02em}
.pl__lock p{margin:0;font-size:13px;color:var(--muted)}
.pl__lockcta{display:flex;gap:9px;margin-top:8px;flex-wrap:wrap;justify-content:center}

/* kontrol çubuğu */
.pl__ctl{position:absolute;left:0;right:0;bottom:0;z-index:6;padding:0 12px 10px}
.pl__seek{position:relative;height:16px;display:flex;align-items:center;cursor:pointer}
.pl__seek::before{content:"";position:absolute;left:0;right:0;height:4px;border-radius:99px;background:rgba(255,255,255,.2)}
.pl__buf{position:absolute;left:0;height:4px;border-radius:99px;background:rgba(255,255,255,.3)}
.pl__prog{position:absolute;left:0;height:4px;border-radius:99px;background:var(--orange);transition:width .25s linear}
.pl__prog i{position:absolute;right:-6px;top:50%;translate:0 -50%;width:12px;height:12px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 4px rgba(255,144,0,.25);opacity:0;transition:opacity .18s}
.pl__seek:hover .pl__prog i{opacity:1}
.pl__mark{position:absolute;top:50%;translate:-50% -50%;width:3px;height:9px;border-radius:2px;background:rgba(255,255,255,.55)}

.pl__row{display:flex;align-items:center;gap:5px;margin-top:2px}
.pl__b{width:34px;height:34px;flex:none;border-radius:7px;display:grid;place-items:center;color:#EDECEA;transition:.15s}
.pl__b:hover{background:rgba(255,255,255,.14)}
.pl__b svg{width:18px;height:18px}
.pl__time{font-size:12px;font-weight:600;color:#DAD9D7;font-variant-numeric:tabular-nums;padding:0 6px;white-space:nowrap}
.pl__time i{font-style:normal;color:#7C7B79;margin:0 2px}
.pl__vol{display:flex;align-items:center;gap:4px}
.pl__vol input{
  width:0;opacity:0;height:4px;accent-color:var(--orange);cursor:pointer;
  transition:width .22s var(--ease),opacity .22s;
}
.pl__vol:hover input,.pl__vol input:focus-visible{width:76px;opacity:1}
.pl__spacer{flex:1}
.pl__chip{
  height:26px;padding:0 10px;border-radius:5px;display:inline-flex;align-items:center;
  background:rgba(255,255,255,.12);color:#EDECEA;font-size:11.5px;font-weight:700;transition:.15s;
}
button.pl__chip:hover{background:var(--orange);color:var(--ink)}

/* bölüm işaretleri */
.chaps{display:flex;gap:7px;overflow-x:auto;scrollbar-width:none;padding:12px 0 0;margin-bottom:-4px}
.chaps::-webkit-scrollbar{display:none}
.chap{
  flex:none;display:inline-flex;align-items:center;gap:8px;height:32px;padding:0 12px;border-radius:6px;
  background:var(--raised);color:#B9B8B6;font-size:12.5px;font-weight:600;transition:.15s;white-space:nowrap;
}
.chap b{font-variant-numeric:tabular-nums;color:var(--dim);font-weight:700}
.chap:hover{background:#1E1E1E;color:#fff}
.chap.passed{color:#fff}
.chap.passed b{color:var(--orange)}

/* ── başlık + bar ── */
.vp__title{
  font-family:var(--f-display);font-weight:800;letter-spacing:-.025em;line-height:1.16;
  font-size:clamp(19px,2.3vw,27px);margin:22px 0 0;
}
.vp__bar{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  margin-top:12px;padding-bottom:18px;border-bottom:1px solid var(--line);
}
.vp__nums{display:flex;align-items:center;gap:9px;flex-wrap:wrap;font-size:13px;color:var(--dim)}
.vp__nums i{width:3px;height:3px;border-radius:50%;background:#2A2A2A}
.vp__rate{display:inline-flex;align-items:center;gap:6px;color:var(--orange);font-weight:700}
.vp__rate svg{width:14px;height:14px;stroke:var(--orange);fill:var(--orange)}

/* ── aksiyonlar ── */
.vp__acts{display:flex;gap:7px;flex-wrap:wrap;margin-left:auto}
.vact{
  display:inline-flex;align-items:center;gap:8px;height:38px;padding:0 15px;border-radius:8px;
  background:var(--raised);color:#CDCCCA;font-size:13px;font-weight:600;transition:.16s;
}
.vact svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8}
.vact:hover{background:#1E1E1E;color:#fff}
.vact.on{background:var(--o14);color:var(--orange)}
.vact.on svg{fill:var(--orange);stroke:var(--orange)}
.vact--prem{color:var(--orange)}
.vact--prem svg{fill:var(--orange);stroke:none}
.vact--muted{width:38px;padding:0;justify-content:center;color:var(--dim)}

/* ── kanal kartı ── */
.vp__ch{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  padding:16px 0;border-bottom:1px solid var(--line);
}
.vp__chid{display:flex;align-items:center;gap:12px;min-width:0}
.vp__chid img{width:46px;height:46px;border-radius:50%;object-fit:cover}
.vp__chid b{display:flex;align-items:center;gap:6px;font-size:15px;font-weight:700;letter-spacing:-.01em}
.vp__chid .verif{width:14px;height:14px}
.vp__chid small{display:block;font-size:12px;color:var(--dim);margin-top:2px}
.vp__chid:hover b{color:var(--orange)}
.vp__chacts{display:flex;gap:8px;margin-left:auto}
.vp__chacts .btn{height:38px;padding:0 18px;font-size:13px}

/* ── oyuncular — model profillerine bağlı çipler ── */
.vp__cast{
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  padding:14px 0;border-bottom:1px solid var(--line);
}
.vp__castl{
  display:inline-flex;align-items:center;gap:8px;flex:none;
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--dim);
}
.vp__castl svg{width:14px;height:14px;stroke:var(--orange);fill:none;stroke-width:1.8}
.vp__castrow{display:flex;gap:8px;flex-wrap:wrap;min-width:0}
.castchip{
  display:flex;align-items:center;gap:10px;padding:6px 12px 6px 6px;border-radius:99px;
  background:var(--surface);transition:.16s var(--ease);
}
.castchip:hover{background:var(--raised);transform:translateY(-1px)}
.castchip__ava{position:relative;flex:none}
.castchip__ava img{width:30px;height:30px;border-radius:50%;object-fit:cover}
.castchip__ava i{
  position:absolute;right:-1px;bottom:0;width:8px;height:8px;border-radius:50%;
  background:#4CC26B;box-shadow:0 0 0 2px var(--surface);
}
.castchip__b{min-width:0}
.castchip__b b{
  display:flex;align-items:center;gap:4px;font-size:12.5px;font-weight:700;color:#E9E8E6;
  white-space:nowrap;transition:color .14s;
}
.castchip__b .verif{width:11px;height:11px;flex:none}
.castchip__b small{display:block;font-size:10.5px;color:var(--dim);line-height:1.2}
.castchip > svg{
  width:13px;height:13px;flex:none;stroke:var(--dim);fill:none;stroke-width:2.2;
  transition:stroke .14s,transform .14s;
}
.castchip:hover .castchip__b b{color:var(--orange)}
.castchip:hover > svg{stroke:var(--orange);transform:translateX(2px)}

/* ── açıklama ── */
.vp__desc{
  position:relative;margin-top:18px;padding:16px 18px;border-radius:10px;
  background:rgba(14,14,14,.7);font-size:13.5px;line-height:1.65;color:var(--muted);
  max-height:104px;overflow:hidden;transition:max-height .3s var(--ease);
}
.vp__desc.open{max-height:420px}
.vp__desc p{margin:0}
.vp__tags{display:flex;gap:7px;flex-wrap:wrap;margin-top:12px}
.tagx{
  display:inline-flex;align-items:center;height:26px;padding:0 10px;border-radius:5px;
  background:var(--raised);color:#AFAEAC;font-size:11.5px;font-weight:600;transition:.15s;
}
.tagx:hover{background:var(--o14);color:var(--orange)}
.vp__more{
  position:absolute;right:14px;bottom:8px;font-size:12px;font-weight:700;color:var(--orange);
  background:linear-gradient(90deg,transparent,rgba(14,14,14,.95) 22%);padding:7px 0 7px 26px;
}
.vp__more:hover{text-decoration:underline}

/* ── yorumlar ── */
.cmt{margin-top:30px}
.cmt__head{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.cmt__head b{font-family:var(--f-display);font-size:17px;font-weight:800;letter-spacing:-.015em}
.cmt__sorts{display:flex;gap:2px;margin-left:auto;background:var(--raised);border-radius:6px;padding:3px}
.cmt__sorts button{padding:8px 13px;border-radius:5px;font-size:12px;font-weight:600;color:var(--dim);transition:.15s}
.cmt__sorts button:hover{color:var(--muted)}
.cmt__sorts button.on{background:#242424;color:#fff}
.cmt__form{display:flex;align-items:center;gap:10px;margin-bottom:22px}
.cmt__form img{width:38px;height:38px;border-radius:50%;object-fit:cover;flex:none}
.cmt__form input{
  flex:1;height:42px;padding:0 14px;border-radius:8px;background:var(--surface);
  border:1px solid var(--line);color:var(--text);font:inherit;font-size:13.5px;outline:none;min-width:0;
  transition:border-color .16s;
}
.cmt__form input:focus{border-color:var(--o40)}
.cmt__form .btn{height:42px;padding:0 20px;font-size:13px}
.cmt__form .btn:disabled{opacity:.45;cursor:not-allowed}
.cmt__list{display:grid;gap:18px}
.cmt__item{display:flex;gap:12px}
.cmt__item img{width:38px;height:38px;border-radius:50%;object-fit:cover;flex:none}
.cmt__who{display:flex;align-items:center;gap:9px;margin:0;font-size:13px}
.cmt__who b{font-weight:700}
.cmt__who .prem{color:var(--orange)}
.cmt__who span{font-size:11.5px;color:var(--dim)}
.cmt__text{margin:5px 0 0;font-size:13.5px;line-height:1.6;color:#CDCCCA}
.cmt__acts{display:flex;gap:6px;margin-top:4px;margin-left:-9px}
.cmt__acts button{
  display:inline-flex;align-items:center;gap:6px;min-height:32px;padding:5px 9px;border-radius:7px;
  font-size:12px;font-weight:600;color:var(--dim);transition:.15s;
}
.cmt__acts button:hover{color:var(--orange);background:var(--o08)}
.cmt__acts svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.9}

/* ── sağ sütun: sıradaki ── */
.vp__side{position:sticky;top:86px}
/* dikey mod kartı */
.vp__reelscta{
  display:flex;align-items:center;gap:13px;width:100%;text-align:left;margin-bottom:22px;
  padding:14px 15px;border-radius:12px;
  background:linear-gradient(120deg,rgba(255,144,0,.14),rgba(14,14,14,.85) 62%);
  box-shadow:inset 0 0 0 1px var(--o40);transition:.18s var(--ease);
}
.vp__reelscta:hover{transform:translateY(-2px);box-shadow:inset 0 0 0 1px var(--orange),0 16px 40px -20px rgba(255,144,0,.7)}
.vp__reelsico{
  flex:none;width:40px;height:40px;border-radius:10px;display:grid;place-items:center;
  background:var(--orange);color:var(--ink);
}
.vp__reelsico svg{width:20px;height:20px}
.vp__reelscta b{display:block;font-size:13.5px;font-weight:700;letter-spacing:-.01em}
.vp__reelscta small{display:block;font-size:11.5px;color:var(--muted);margin-top:2px}
.vp__sidehead{display:flex;align-items:center;justify-content:space-between;margin-bottom:13px}
.vp__sidehead b{font-family:var(--f-display);font-size:15.5px;font-weight:800;letter-spacing:-.015em}
.vp__sidehead a{font-size:12px;font-weight:600;color:var(--orange)}
.upnext{display:grid;gap:12px}
.un{display:grid;grid-template-columns:150px minmax(0,1fr);gap:11px;align-items:start;transition:opacity .15s}
.un__ph{position:relative;aspect-ratio:16/9;border-radius:7px;overflow:hidden;background:var(--surface)}
.un__ph img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.un:hover .un__ph img{transform:scale(1.06)}
.un__dur{
  position:absolute;right:4px;bottom:4px;font-size:10px;font-weight:700;
  background:rgba(0,0,0,.85);border-radius:3px;padding:1px 5px;
}
.un__prem{
  position:absolute;left:4px;top:4px;width:18px;height:18px;border-radius:4px;
  display:grid;place-items:center;background:var(--orange);color:var(--ink);font-size:10px;font-weight:800;
}
.un__body{min-width:0}
.un__body b{
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  font-size:13px;font-weight:700;line-height:1.35;letter-spacing:-.01em;transition:color .15s;
}
.un:hover .un__body b{color:var(--orange)}
.un__body small{display:block;font-size:11.5px;color:var(--dim);margin-top:4px}
.un__stats{margin-top:2px !important}

/* ════════════════════════════════════════════════════════════
   KATEGORİLER + VİDEO ARŞİVİ
   ════════════════════════════════════════════════════════════ */
.arch,.cats{max-width:var(--maxw,1360px);margin:0 auto;width:100%;padding-top:22px}

/* ── kategori hap şeridi ── */
.catstrip{padding-top:8px}
.catrow{
  display:flex;gap:7px;overflow-x:auto;scrollbar-width:none;padding:2px 0 4px;
  scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;
  -webkit-mask-image:linear-gradient(90deg,#000 94%,transparent);
  mask-image:linear-gradient(90deg,#000 94%,transparent);
}
.catrow::-webkit-scrollbar{display:none}
.catpill{
  flex:none;display:inline-flex;align-items:center;gap:8px;height:40px;padding:0 15px;border-radius:8px;
  background:var(--raised);color:#CDCCCA;font-size:13px;font-weight:600;transition:.16s var(--ease);
  scroll-snap-align:start;
}
.catpill svg{width:16px;height:16px;stroke:var(--orange);fill:none;stroke-width:1.9}
.catpill i{
  font-style:normal;font-size:10.5px;font-weight:800;color:var(--dim);
  background:rgba(0,0,0,.3);border-radius:4px;padding:2px 6px;
}
.catpill:hover{background:#1E1E1E;color:#fff;transform:translateY(-1px)}
.catpill.on{background:var(--orange);color:var(--ink)}
.catpill.on svg{stroke:var(--ink)}
.catpill.on i{background:rgba(0,0,0,.2);color:var(--ink)}

/* ── kategori karoları ── */
.cattiles{display:grid;grid-template-columns:repeat(6,1fr);gap:12px;margin-top:16px}
.cat{display:block;transition:transform .22s var(--ease)}
.cat:hover{transform:translateY(-3px)}
.cat__ph{
  position:relative;display:block;aspect-ratio:16/9;border-radius:10px;overflow:hidden;
  background:var(--surface);box-shadow:inset 0 0 0 1px var(--line);
}
.cat__ph img{width:100%;height:100%;object-fit:cover;filter:brightness(.62) saturate(1.05);transition:transform .45s var(--ease),filter .3s}
.cat:hover .cat__ph img{transform:scale(1.06);filter:brightness(.78) saturate(1.15)}
.cat__ph::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 35%,rgba(4,4,4,.6));
}
.cat__ico{
  position:absolute;left:50%;top:50%;translate:-50% -50%;z-index:2;
  width:44px;height:44px;border-radius:12px;display:grid;place-items:center;
  background:rgba(0,0,0,.5);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);color:var(--orange);
  transition:.25s var(--ease);
}
.cat__ico svg{width:21px;height:21px;stroke:currentColor;fill:none;stroke-width:1.8}
.cat:hover .cat__ico{background:var(--orange);color:var(--ink);box-shadow:0 12px 28px -12px var(--orange);scale:1.06}
.cat__flag{
  position:absolute;top:7px;left:7px;z-index:3;height:20px;padding:0 8px;border-radius:4px;
  display:inline-flex;align-items:center;background:var(--orange);color:var(--ink);
  font-size:9.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}
.cat__flag--vip{background:#fff;color:#000}
.cat__body{display:block;margin-top:9px}
.cat__body b{display:block;font-size:13.5px;font-weight:700;letter-spacing:-.01em;transition:color .15s}
.cat:hover .cat__body b{color:var(--orange)}
.cat__body small{display:block;font-size:11.5px;color:var(--dim);margin-top:2px}
.cat--sm .cat__body b{font-size:13px}

/* ── arşiv: kategori bilgi şeridi ── */
.archnote{
  display:flex;align-items:center;gap:12px;margin:0 0 18px;padding:12px 14px;border-radius:11px;
  background:linear-gradient(100deg,var(--o08),var(--panel) 46%);
  box-shadow:inset 0 0 0 1px var(--o40);
}
.archnote__ico{
  flex:none;width:38px;height:38px;border-radius:10px;display:grid;place-items:center;
  background:var(--orange);color:var(--ink);
}
.archnote__ico svg{width:19px;height:19px;stroke:currentColor;fill:none;stroke-width:1.9}
.archnote b{display:block;font-size:14.5px;font-weight:800;letter-spacing:-.015em}
.archnote small{display:block;font-size:11.5px;color:var(--muted);margin-top:2px}
.archnote__x{
  margin-left:auto;flex:none;height:32px;padding:0 13px;border-radius:7px;
  background:var(--raised);color:#CDCCCA;font-size:12px;font-weight:600;transition:.15s;
}
.archnote__x:hover{background:#1E1E1E;color:#fff}

/* iskelet video kartı */
.vid--skel span{display:block;aspect-ratio:16/9;border-radius:6px;background:linear-gradient(100deg,#0E0E0E 30%,#161616 50%,#0E0E0E 70%);background-size:200% 100%;animation:shimmer 1.2s linear infinite}
.vid--skel i{display:block;height:11px;border-radius:4px;margin-top:9px;background:#131313}
.vid--skel i.short{width:55%;margin-top:6px}

/* ════════════════ KATEGORİLER SAYFASI ════════════════ */
.cats__head{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;flex-wrap:wrap;margin:6px 0 24px}
.cats__title{font-family:var(--f-display);font-size:clamp(26px,3.4vw,38px);font-weight:800;letter-spacing:-.035em;margin:6px 0 0}
.cats__sub{margin:10px 0 0;font-size:13.5px;color:var(--muted);max-width:60ch;line-height:1.6}
.cats__tools{display:flex;align-items:center;gap:9px;flex-wrap:wrap}
.cats__search{
  display:flex;align-items:center;gap:9px;height:40px;padding:0 13px;border-radius:8px;
  background:var(--raised);min-width:220px;transition:box-shadow .16s;
}
.cats__search:focus-within{box-shadow:inset 0 0 0 1.5px var(--o40)}
.cats__search svg{width:15px;height:15px;stroke:var(--dim);fill:none;stroke-width:2;flex:none}
.cats__search input{flex:1;min-width:0;background:none;border:0;outline:none;color:var(--text);font:inherit;font-size:13.5px}
.cats__search input::placeholder{color:var(--dim)}
.cats__search button{width:22px;height:22px;flex:none;border-radius:50%;background:#242424;color:var(--muted);font-size:15px;line-height:1}
.cats__search button:hover{background:var(--orange);color:var(--ink)}

/* öne çıkan büyük kartlar */
.cats__hot{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:22px}
.cathero{
  position:relative;display:block;aspect-ratio:16/8.2;border-radius:14px;overflow:hidden;
  background:var(--surface);box-shadow:inset 0 0 0 1px var(--line);transition:transform .25s var(--ease),box-shadow .25s;
}
.cathero:hover{transform:translateY(-3px);box-shadow:inset 0 0 0 1px var(--o40),0 22px 50px -26px #000}
.cathero img{width:100%;height:100%;object-fit:cover;filter:brightness(.6) saturate(1.08);transition:transform .5s var(--ease),filter .3s}
.cathero:hover img{transform:scale(1.05);filter:brightness(.72)}
.cathero__fade{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 30%,rgba(4,4,4,.88)),
             radial-gradient(70% 80% at 12% 100%,rgba(255,144,0,.24),transparent 62%);
}
.cathero__ico{
  position:absolute;top:14px;left:14px;width:40px;height:40px;border-radius:11px;
  display:grid;place-items:center;background:rgba(0,0,0,.55);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);color:var(--orange);transition:.25s var(--ease);
}
.cathero__ico svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.9}
.cathero:hover .cathero__ico{background:var(--orange);color:var(--ink)}
.cathero__body{position:absolute;left:16px;right:16px;bottom:14px}
.cathero__body b{display:block;font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em}
.cathero__body small{display:block;font-size:12px;color:#B9B8B6;margin-top:3px}
.cathero .cat__flag{top:14px;right:14px;left:auto}

.cats__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.cats__foot{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  margin-top:34px;padding:20px;border-radius:14px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.cats__foot span{display:inline-flex;align-items:center;gap:9px;font-size:13.5px;font-weight:600;color:var(--muted)}
.cats__foot svg{width:17px;height:17px;stroke:var(--orange);fill:none;stroke-width:1.9}

/* ════════════════════════════════════════════════════════════
   MODELLER LİSTESİ  (/modeller)
   ════════════════════════════════════════════════════════════ */
.mdl__on{color:var(--orange);font-weight:700}

/* ── şehir şeridi ── */
.cityrow{
  display:flex;gap:7px;flex-wrap:wrap;margin:0 0 26px;padding-bottom:2px;
}
.citypill{
  display:inline-flex;align-items:center;gap:7px;padding:8px 13px;border-radius:6px;
  background:var(--raised);color:#C5C4C2;font-size:12.5px;font-weight:600;
  transition:background .15s,color .15s;white-space:nowrap;
}
.citypill svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8}
.citypill i{font-style:normal;font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.citypill:hover{background:#1E1E1E;color:#fff}
.citypill.on{background:var(--orange);color:var(--ink)}
.citypill.on i{color:rgba(0,0,0,.55)}

/* ── ızgara iskeleti ── */
.model--skel{pointer-events:none}
.model--skel .model__ph{
  background:linear-gradient(100deg,#0E0E0E 30%,#161616 50%,#0E0E0E 70%);
  background-size:200% 100%;animation:shimmer 1.2s linear infinite;
}
.model--skel i{display:block;height:11px;border-radius:4px;margin-top:10px;background:#131313}
.model--skel i.short{width:52%;height:9px;margin-top:6px}

/* ── mobil ── */
@media (max-width:700px){
  .cityrow{
    flex-wrap:nowrap;overflow-x:auto;scroll-snap-type:x proximity;
    margin:0 calc(var(--pad)*-1) 20px;padding:0 var(--pad) 4px;scrollbar-width:none;
  }
  .cityrow::-webkit-scrollbar{display:none}
  .citypill{flex:none;scroll-snap-align:start;height:36px}

  /* filtre sekmeleri: sarmak yerine yatay şerit */
  .mdl .section__head .tabs{
    width:100%;flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;
    margin:0 calc(var(--pad)*-1);padding:0 var(--pad) 2px;
  }
  .mdl .section__head .tabs::-webkit-scrollbar{display:none}
  .mdl .section__head .chip{flex:none;height:36px;display:inline-flex;align-items:center}
}

/* ════════════════════════════════════════════════════════════
   ORTAKLIK  (/ortaklik)
   ════════════════════════════════════════════════════════════ */
.af{max-width:var(--maxw);margin:0 auto;width:100%}
.af__hero{max-width:680px;padding:clamp(8px,2vw,22px) 0 6px}
.af__hero h1{
  font-family:var(--f-display);font-size:clamp(30px,4.8vw,50px);font-weight:800;
  letter-spacing:-.04em;line-height:1.04;margin:10px 0 0;text-wrap:balance;
}
.af__hero h1 em{font-style:normal;color:var(--orange)}
.af__lead{margin:14px 0 0;font-size:14.5px;color:var(--muted);line-height:1.7;max-width:56ch}
.af__lead b{color:var(--orange)}
.af__cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.af__cta .btn{height:48px;min-width:170px}
.af__nums{margin-top:30px}

.plans--two{grid-template-columns:repeat(2,1fr);max-width:840px}

/* başvuru bloğu */
.af__apply{
  margin-top:8px;padding:clamp(22px,3.4vw,36px);border-radius:16px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--o40);
  position:relative;isolation:isolate;overflow:hidden;
}
.af__apply::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(80% 120% at 100% 0,var(--o08),transparent 65%);
}
.af__formhead{margin-bottom:18px}
.af__formhead h2{font-family:var(--f-display);font-size:clamp(21px,2.8vw,28px);font-weight:800;letter-spacing:-.025em;margin:7px 0 0}
.af__formhead > p:last-child{margin:9px 0 0;font-size:13px;color:var(--muted);line-height:1.6}
.af__row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:15px}
.af__apply .field input{
  width:100%;height:46px;border-radius:10px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font:inherit;font-size:14px;padding:0 14px;transition:border-color .16s,background .16s;
}
.af__apply .field input::placeholder{color:#5A5957}
.af__apply .field input:focus{outline:none;background:var(--raised);border-color:var(--o40)}
.af__send{height:50px;min-width:220px;font-size:14.5px}
.af__send.is-busy{opacity:.9}
.af__done{margin:0 auto;box-shadow:none;background:none;padding:10px 0}
.af__done h2{font-family:var(--f-display);font-size:24px;font-weight:800;letter-spacing:-.025em}

@media (max-width:900px){
  .plans--two{grid-template-columns:1fr;max-width:520px}
}
@media (max-width:700px){
  .af__cta .btn{flex:1;min-width:0;justify-content:center}
  .af__row{grid-template-columns:1fr}
  .af__send{width:100%}
  .af__apply .field input{height:48px;font-size:16px}
}

/* ════════════════════════════════════════════════════════════
   BİLDİRİMLER  (/bildirimler)
   ════════════════════════════════════════════════════════════ */
.nt{max-width:860px;margin:0 auto;width:100%}
.nt__head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;flex-wrap:wrap;margin-bottom:20px}
.nt__head h1{
  font-family:var(--f-display);font-size:clamp(26px,3.8vw,38px);font-weight:800;
  letter-spacing:-.035em;line-height:1.08;margin:8px 0 0;
}
.nt__sub{margin:11px 0 0;font-size:13.5px;color:var(--muted);line-height:1.6}
.nt__sub b{color:var(--orange)}
.nt__acts{display:flex;gap:9px;flex-wrap:wrap}
.nt__acts .btn{height:42px;padding:0 16px;font-size:13px}
.nt__acts svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.nt__seg{margin-bottom:24px}
.nt__seg button i{font-style:normal;font-family:var(--f-mono);font-size:10.5px;opacity:.7}
.nt__seg button:disabled{opacity:.35;cursor:not-allowed}
.nt__g{margin-bottom:24px}

.nt__list{display:grid;gap:8px}
.ntrow{
  display:flex;align-items:stretch;border-radius:11px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);overflow:hidden;transition:box-shadow .16s;
}
.ntrow:hover{box-shadow:inset 0 0 0 1px #262625}
.ntrow.unread{background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40)}
.ntrow__main{
  display:flex;align-items:center;gap:13px;flex:1;min-width:0;padding:13px 15px;text-align:left;
}
.ntrow__ava{width:42px;height:42px;flex:none;border-radius:50%;object-fit:cover}
.ntrow__sys{
  width:42px;height:42px;flex:none;border-radius:50%;background:var(--surface);color:var(--orange);
  display:grid;place-items:center;
}
.ntrow__sys svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8}
.ntrow__b{flex:1;min-width:0}
.ntrow__b em{
  display:flex;align-items:baseline;gap:7px;font-style:normal;font-size:13.5px;color:#CDCCCA;line-height:1.5;
}
.ntrow__b em b{color:#F1F0EE;font-weight:700;white-space:nowrap}
.ntrow.unread .ntrow__b em{color:#E9E8E6}
.ntrow__dot{width:7px;height:7px;flex:none;border-radius:50%;background:var(--orange);align-self:center}
.ntrow__b small{
  display:flex;align-items:center;gap:6px;margin-top:4px;font-size:11px;color:var(--dim);
}
.ntrow__b small svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:1.8;flex:none}
.ntrow__go{width:15px;height:15px;flex:none;stroke:var(--dim);fill:none;stroke-width:2.2;transition:.15s}
.ntrow__main:hover .ntrow__go{stroke:var(--orange);transform:translateX(2px)}
.ntrow__x{
  width:46px;flex:none;display:grid;place-items:center;color:var(--dim);
  border-left:1px solid var(--line);transition:.15s;
}
.ntrow__x svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2}
.ntrow__x:hover{background:rgba(255,31,61,.1);color:#FF6A80}

/* ════════════════════════════════════════════════════════════
   ETİKET  (/etiket/:tag)
   ════════════════════════════════════════════════════════════ */
.tg{max-width:var(--maxw);margin:0 auto;width:100%}
.tg__head{display:flex;align-items:center;gap:17px;flex-wrap:wrap;margin-bottom:18px}
.tg__mark{
  width:62px;height:62px;flex:none;border-radius:16px;background:var(--o08);
  display:grid;place-items:center;font-family:var(--f-display);font-size:32px;font-weight:800;
  color:var(--orange);box-shadow:inset 0 0 0 1px var(--o40);
}
.tg__id{min-width:0;flex:1}
.tg__id h1{
  font-family:var(--f-display);font-size:clamp(25px,3.6vw,36px);font-weight:800;
  letter-spacing:-.03em;line-height:1.05;margin:5px 0 0;word-break:break-word;
}
.tg__sub{margin:8px 0 0;font-size:13px;color:var(--muted)}
.tg__sub b{color:var(--orange)}
.tg__sub a{color:var(--muted);font-weight:600}
.tg__sub a:hover{color:var(--orange)}
.tg__sort{flex:none}
.tg__rel{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:26px}
.tagx--big{
  display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 14px;font-size:13px;
}
.tagx--big i{font-style:normal;font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}

@media (max-width:700px){
  .nt__head{gap:12px}
  .nt__acts{width:100%}
  .nt__acts .btn{flex:1;justify-content:center;height:44px}
  .nt__seg{overflow-x:auto;scrollbar-width:none;display:flex;width:auto;
    margin:0 calc(var(--pad)*-1) 22px;padding:3px var(--pad)}
  .nt__seg::-webkit-scrollbar{display:none}
  .nt__seg button{flex:none}
  .ntrow__main{padding:12px 13px;gap:11px}
  .ntrow__ava,.ntrow__sys{width:38px;height:38px}
  .ntrow__b em{font-size:13px;flex-wrap:wrap}
  .ntrow__x{width:44px}

  .tg__mark{width:52px;height:52px;border-radius:13px;font-size:27px}
  .tg__sort{width:100%}
  .tg__rel{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;
    margin:0 calc(var(--pad)*-1) 22px;padding:0 var(--pad) 4px}
  .tg__rel::-webkit-scrollbar{display:none}
  .tagx--big{flex:none;height:40px}
}

/* ════════════════════════════════════════════════════════════
   İLETİŞİM  (/iletisim)
   ════════════════════════════════════════════════════════════ */
.ct__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:26px}
.ctcard{
  display:grid;justify-items:start;gap:7px;padding:19px;border-radius:13px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);transition:.2s var(--ease);
}
.ctcard:hover{box-shadow:inset 0 0 0 1px var(--o40);transform:translateY(-2px)}
.ctcard__ico{
  width:36px;height:36px;border-radius:10px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;margin-bottom:5px;
}
.ctcard__ico svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8}
.ctcard > b{font-size:15px;font-weight:700;letter-spacing:-.01em;color:#EDECEA}
.ctcard > p{margin:0;font-size:12.5px;color:var(--muted);line-height:1.6}
.ctcard__d{display:inline-flex;align-items:center;gap:6px;font-size:11px;color:var(--dim)}
.ctcard__d svg{width:12px;height:12px;stroke:var(--orange);fill:none;stroke-width:1.8}
.ctcard__go{margin-top:6px;height:40px;padding:0 16px;font-size:13px}
.ctcard__mail{
  display:inline-flex;align-items:center;gap:8px;margin-top:6px;height:40px;padding:0 14px;
  border-radius:8px;background:var(--surface);font-family:var(--f-mono);font-size:12px;
  color:var(--orange);transition:.16s;
}
.ctcard__mail svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.6}
.ctcard__mail:hover{background:var(--o08)}
.ctcard__mail.ok{background:rgba(76,194,107,.12);color:#7BE39A}

.ct__meta{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px;align-items:start;margin-bottom:8px}
.ct__meta .apanel{margin-bottom:0}
.ct__firm{padding:13px 15px;display:grid;gap:9px}
.ct__firm p{margin:0;font-size:12.5px;color:var(--muted);line-height:1.6}
.ct__firm p b{color:#E9E8E6}
.ct__firmnote{font-size:11px !important;color:var(--dim) !important}

@media (max-width:1000px){
  .ct__grid{grid-template-columns:1fr 1fr}
  .ct__meta{grid-template-columns:1fr}
}
@media (max-width:640px){
  .ct__grid{grid-template-columns:1fr;gap:9px}
  .ctcard{padding:16px}
  .ctcard__go,.ctcard__mail{width:100%;justify-content:center;height:44px}
}

/* ════════════════════════════════════════════════════════════
   ARAMA  (/arama)
   ════════════════════════════════════════════════════════════ */
.sr{max-width:var(--maxw);margin:0 auto;width:100%}

.sr__head{margin-bottom:24px}
.sr__head h1{
  font-family:var(--f-display);font-size:clamp(26px,3.8vw,38px);font-weight:800;
  letter-spacing:-.035em;line-height:1.08;margin:8px 0 0;text-wrap:balance;
}
.sr__form{display:flex;gap:9px;margin-top:20px}
.sr__form .hp__search{flex:1;min-width:0;margin-top:0}
.sr__go{height:52px;padding:0 28px;font-size:15px;flex:none}
.sr__count{
  margin:13px 0 0;font-size:13px;color:var(--dim);
}
.sr__count b{color:var(--orange);font-weight:700}

/* araç çubuğu */
.sr__bar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:26px}
.sr__bar .seg button:disabled{opacity:.35;cursor:not-allowed}
.sr__bar .seg button i{font-style:normal;font-family:var(--f-mono);font-size:10.5px;opacity:.7}
.sr__bar .sort{margin-left:auto}

.sr__sec{margin-bottom:34px}

/* boşta ekranı */
.sr__idle{display:grid;gap:32px}
.sr__block h2.sr__bh{
  display:flex;align-items:center;gap:9px;margin:0 0 14px;
  font-family:var(--f-display);font-size:18px;font-weight:800;letter-spacing:-.02em;
}
.sr__bh svg{width:16px;height:16px;stroke:var(--orange);fill:none;stroke-width:1.9}
.sr__chips{display:flex;gap:8px;flex-wrap:wrap}
.srchip{
  display:inline-flex;align-items:center;height:38px;padding:0 16px;border-radius:8px;
  background:var(--surface);color:#C5C4C2;font-size:13px;font-weight:600;transition:.16s var(--ease);
}
.srchip:hover{background:var(--orange);color:var(--ink);transform:translateY(-2px)}

/* ── mobil ── */
@media (max-width:700px){
  .sr__form{flex-wrap:wrap;gap:8px}
  .sr__form .hp__search{flex-basis:100%;height:48px}
  .sr__go{width:100%;height:46px}
  .sr__bar{gap:9px}
  /* 4 sekme + sayaç mobilde sığmaz: şeridi kaydırmalı yap */
  .sr__bar .seg{width:100%;overflow-x:auto;scrollbar-width:none}
  .sr__bar .seg::-webkit-scrollbar{display:none}
  .sr__bar .seg button{flex:none}
  .sr__bar .sort{margin-left:0;width:100%}
  .sr__idle{gap:26px}
  .srchip{height:40px}
}

/* ════════════════════════════════════════════════════════════
   ŞİFREMİ UNUTTUM  (/sifremi-unuttum) — auth kabuğunu kullanır
   ════════════════════════════════════════════════════════════ */
.fp__done{display:grid;justify-items:start}
.fp__done .spdone__ico{width:48px;height:48px;margin-bottom:14px}
.fp__done .spdone__ico svg{width:20px;height:20px}
.fp__done .auth__sub b{color:var(--orange);font-weight:700}
.fp__steps{
  list-style:none;margin:4px 0 22px;padding:0;display:grid;gap:11px;width:100%;
}
.fp__steps li{
  display:flex;align-items:flex-start;gap:11px;font-size:12.5px;color:var(--muted);line-height:1.5;
}
.fp__steps li b{
  flex:none;width:20px;height:20px;border-radius:50%;background:var(--o14);color:var(--orange);
  display:grid;place-items:center;font-family:var(--f-mono);font-size:10.5px;font-weight:700;
}
.fp__steps em{font-style:normal;color:#E9E8E6;font-weight:600}
.fp__done .auth__go:disabled{opacity:.5;cursor:not-allowed}

/* ════════════════════════════════════════════════════════════
   YAYIN TAKVİMİ  (/yayin-takvimi)
   Sitenin satır dili: gün grupları + tam genişlik yayın satırları.
   ════════════════════════════════════════════════════════════ */
.sc{max-width:var(--maxw);margin:0 auto;width:100%}

/* ── başlık + sonraki yayın ── */
.sc__hero{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:22px;align-items:start;margin-bottom:24px}
.sc__id h1{
  font-family:var(--f-display);font-size:clamp(27px,4vw,40px);font-weight:800;
  letter-spacing:-.035em;line-height:1.05;margin:8px 0 0;
}
.sc__lead{margin:13px 0 0;font-size:14px;color:var(--muted);line-height:1.7;max-width:56ch}

.sc__next{
  position:relative;isolation:isolate;overflow:hidden;display:grid;gap:5px;
  padding:19px 20px;border-radius:14px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--o40);
}
.sc__next::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(90% 100% at 100% 0,var(--o14),transparent 68%);
}
.sc__nextk{
  display:flex;align-items:center;gap:8px;margin:0;
  font-family:var(--f-mono);font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--orange);
}
.sc__nextk i{width:6px;height:6px;border-radius:50%;background:var(--red);animation:beat 1.6s infinite}
.sc__nextt{font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em;line-height:1.2}
.sc__next > small{font-size:12px;color:var(--dim)}
.sc__cd{display:flex;align-items:center;gap:7px;margin:10px 0 4px}
.sc__cd span{display:grid;justify-items:center;flex:1;padding:9px 4px;border-radius:9px;background:var(--surface)}
.sc__cd b{font-family:var(--f-mono);font-size:21px;font-weight:700;color:var(--orange);line-height:1}
.sc__cd small{font-size:9.5px;color:var(--dim);margin-top:4px;letter-spacing:.06em;text-transform:uppercase}
.sc__cd i{font-style:normal;color:var(--dim)}
.sc__next .btn{margin-top:6px;height:42px;justify-content:center}

/* ── hafta gezinme çubuğu ── */
.sc__bar{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:16px}
.scnav{display:flex;align-items:center;gap:4px;padding:4px;border-radius:11px;background:var(--surface)}
.scnav__b{width:38px;height:38px;flex:none;border-radius:8px;color:#C5C4C2;display:grid;place-items:center;transition:.15s}
.scnav__b svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.2}
.scnav__b:hover:not(:disabled){background:var(--raised);color:#fff}
.scnav__b:disabled{opacity:.3;cursor:not-allowed}
.scnav__now{display:grid;justify-items:center;gap:1px;min-width:154px;padding:0 6px}
.scnav__now b{font-size:13.5px;font-weight:700;color:#EDECEA}
.scnav__now small{font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.sc__tools{display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin-left:auto}
.sc__ics{height:44px;padding:0 16px;font-size:13px}
.sc__ics svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}

/* ── gün şeridi (hafta özeti + atlama) ── */
.scstrip{
  display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:7px;margin-bottom:26px;
}
.scpill{
  display:grid;justify-items:center;gap:2px;padding:11px 6px;border-radius:10px;
  background:var(--surface);transition:.16s var(--ease);
}
.scpill b{font-size:12px;font-weight:700;color:#CDCCCA}
.scpill em{font-style:normal;font-family:var(--f-mono);font-size:17px;color:#EDECEA;line-height:1.1}
.scpill i{font-style:normal;font-size:10px;color:var(--dim)}
.scpill:hover:not(:disabled){background:var(--raised);transform:translateY(-2px)}
.scpill.today{background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40)}
.scpill.today b,.scpill.today em{color:var(--orange)}
.scpill.empty{opacity:.45;cursor:default}

/* ── gün grubu ── */
.sc__list{display:grid;gap:26px}
.scday{scroll-margin-top:92px}
.scday__h{
  display:flex;align-items:center;gap:12px;margin:0 0 12px;padding-bottom:11px;
  border-bottom:1px solid var(--line);
}
.scday__num{
  font-family:var(--f-display);font-size:26px;font-weight:800;letter-spacing:-.04em;
  color:#3A3A38;line-height:1;flex:none;
}
.scday.today .scday__num{color:var(--orange)}
.scday__name{
  display:flex;align-items:center;gap:9px;flex-wrap:wrap;min-width:0;flex:1;
  font-family:var(--f-display);font-size:17px;font-weight:800;letter-spacing:-.02em;
}
.scday__name i{
  font-style:normal;padding:3px 8px;border-radius:4px;background:var(--orange);color:var(--ink);
  font-family:var(--f-body);font-size:9.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}
.scday__name u{
  text-decoration:none;padding:3px 8px;border-radius:4px;background:var(--raised);color:var(--muted);
  font-family:var(--f-body);font-size:9.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
}
.scday__h small{font-family:var(--f-mono);font-size:11px;color:var(--dim);flex:none}
.scday__off{margin:0;padding:14px 2px;font-size:13px;color:#5A5957}

/* ── yayın satırı ── */
.scrows{display:grid;gap:9px}
.scrow{
  display:flex;align-items:center;gap:18px;padding:15px 18px;border-radius:11px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
  transition:box-shadow .18s,transform .18s var(--ease);
}
.scrow:hover{box-shadow:inset 0 0 0 1px #262625;transform:translateX(2px)}
.scrow.live{background:rgba(255,31,61,.06);box-shadow:inset 0 0 0 1px rgba(255,31,61,.32)}
.scrow.done{opacity:.78}
.scrow.done:hover{opacity:1}

.scrow__time{display:grid;justify-items:start;gap:2px;flex:none;width:74px}
.scrow__time b{font-family:var(--f-mono);font-size:19px;font-weight:700;color:var(--orange);line-height:1}
.scrow__time small{font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.scrow.done .scrow__time b{color:var(--muted)}

.scrow__b{flex:1;min-width:0}
.scrow__b h3{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0;
  font-size:15.5px;font-weight:700;letter-spacing:-.015em;color:#EDECEA;line-height:1.3;
}
.scrow__tag{
  flex:none;padding:3px 9px;border-radius:4px;background:var(--raised);color:var(--muted);
  font-size:10px;font-weight:700;white-space:nowrap;
}
.scrow__tag.prem{background:var(--o14);color:var(--orange)}
.scrow__tag.live{background:var(--red);color:#fff}
.scrow__b > p{margin:5px 0 0;font-size:12.5px;color:var(--dim);line-height:1.5}
.scrow__meta{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:9px;font-size:11.5px;color:var(--dim)}
.scrow__meta > span{display:inline-flex;align-items:center;gap:6px}
.scrow__meta svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:1.8}
.scrow__lock{color:var(--orange)}
.scrow__lock svg{stroke:none;fill:currentColor}

/* oyuncular */
.scrow__cast{display:inline-flex;align-items:center;gap:9px;min-width:0}
.scrow__faces{display:inline-flex;flex:none}
.scrow__faces a{display:block}
.scrow__faces a:not(:first-child){margin-left:-8px}
.scrow__faces img{
  width:24px;height:24px;border-radius:50%;object-fit:cover;
  box-shadow:0 0 0 2px var(--panel);transition:transform .15s,box-shadow .15s;
}
.scrow__faces a:hover img{transform:translateY(-2px);box-shadow:0 0 0 2px var(--orange);position:relative;z-index:1}
.scrow__cast em{font-style:normal;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* aksiyon */
.scrow__act{flex:none}
.scrow__act .btn{height:40px;padding:0 18px;font-size:13px;justify-content:center;min-width:148px}
.scrow__act svg{width:13px;height:13px}
.scrow__bell svg{stroke:currentColor;fill:none;stroke-width:1.8}
.scrow__bell.on{background:var(--o14);color:var(--orange)}
.scrow__bell.on svg{fill:var(--orange);stroke:var(--orange)}
.scrow__live{background:var(--red);color:#fff;gap:9px}
.scrow__live i{width:7px;height:7px;border-radius:50%;background:#fff;animation:beat 1.4s infinite}
.scrow__live:hover{background:#E01634;color:#fff}

/* ── bilgi baloncuğu ── */
.sctoast{
  position:fixed;left:50%;bottom:24px;z-index:80;display:inline-flex;align-items:center;gap:10px;
  padding:12px 18px;border-radius:11px;background:rgba(9,9,9,.96);backdrop-filter:blur(14px);
  box-shadow:inset 0 0 0 1px var(--line),0 20px 50px -20px #000;
  font-size:13px;font-weight:600;color:#E9E8E6;white-space:nowrap;
  transform:translate(-50%,90px);opacity:0;transition:.3s var(--ease);pointer-events:none;
}
.sctoast.show{transform:translate(-50%,0);opacity:1}
.sctoast svg{width:14px;height:14px;flex:none;stroke:var(--orange);fill:none;stroke-width:3}

/* ── tablet ── */
@media (max-width:1000px){
  .sc__hero{grid-template-columns:1fr}
  .sc__next{order:-1}
  .scrow__act .btn{min-width:0;padding:0 15px}
}

/* ── mobil ── */
@media (max-width:700px){
  .sc__hero{gap:16px;margin-bottom:20px}
  .sc__next{padding:16px}
  .sc__cd b{font-size:19px}
  .sc__bar{gap:10px}
  .scnav{width:100%;justify-content:space-between}
  .scnav__now{flex:1}
  .scnav__b{width:42px;height:42px}
  .sc__tools{width:100%;margin-left:0;gap:8px}
  .sc__tools .seg{flex:1}
  .sc__ics{flex:none;padding:0 14px}

  /* gün şeridi: yatay kaydırma, kenardan kenara */
  .scstrip{
    grid-template-columns:none;grid-auto-flow:column;grid-auto-columns:64px;
    gap:6px;overflow-x:auto;scrollbar-width:none;
    margin:0 calc(var(--pad)*-1) 22px;padding:0 var(--pad) 4px;
  }
  .scstrip::-webkit-scrollbar{display:none}
  .scpill{padding:9px 4px}
  .scpill em{font-size:16px}

  .sc__list{gap:22px}
  .scday{scroll-margin-top:116px}
  .scday__h{gap:10px;margin-bottom:10px;padding-bottom:9px}
  .scday__num{font-size:22px}
  .scday__name{font-size:15px;gap:7px}
  .scday__h small{display:none}

  /* satır: dikey yığın */
  .scrow{flex-wrap:wrap;gap:10px 12px;padding:13px 14px}
  .scrow__time{
    flex-direction:row;align-items:baseline;gap:8px;width:auto;
  }
  .scrow__time b{font-size:16px}
  .scrow__b{flex-basis:100%;order:2}
  .scrow__b h3{font-size:14.5px}
  .scrow__meta{gap:10px 14px;margin-top:8px}
  .scrow__act{order:3;flex-basis:100%}
  .scrow__act .btn{width:100%;height:44px}
  /* etiket saatin yanına çıksın */
  .scrow__b h3 .scrow__tag{order:-1}
}

/* ════════════════════════════════════════════════════════════
   YARDIM · SSS · DESTEK  (/sss · /destek)
   ════════════════════════════════════════════════════════════ */
.hp{max-width:920px;margin:0 auto;width:100%}

.hp__hero{margin-bottom:26px}
.hp__hero h1{
  font-family:var(--f-display);font-size:clamp(27px,4vw,40px);font-weight:800;
  letter-spacing:-.035em;line-height:1.05;margin:8px 0 0;
}
.hp__lead{margin:12px 0 0;font-size:14px;color:var(--muted);line-height:1.7;max-width:60ch}
.hp__lead a{color:var(--orange);font-weight:700}
.hp__lead a:hover{text-decoration:underline}

.hp__search{
  display:flex;align-items:center;gap:11px;height:52px;margin-top:22px;padding:0 17px;
  border-radius:11px;background:var(--surface);transition:box-shadow .18s;
}
.hp__search:focus-within{box-shadow:inset 0 0 0 1.5px var(--o40)}
.hp__search svg{width:17px;height:17px;flex:none;stroke:var(--dim);fill:none;stroke-width:2}
.hp__search input{flex:1;min-width:0;background:none;border:0;outline:none;color:var(--text);font:inherit;font-size:14.5px}
.hp__search input::placeholder{color:#5A5957}
.hp__search button{
  width:30px;height:30px;flex:none;border-radius:50%;background:#242424;color:var(--muted);
  font-size:16px;line-height:1;transition:.15s;
}
.hp__search button:hover{background:var(--orange);color:var(--ink)}
.hp__count{margin:11px 0 0;font-family:var(--f-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--orange)}

/* kategori şeridi */
.hp__cats{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:30px}
.hpcat{
  display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:8px;
  background:var(--surface);color:#C5C4C2;font-size:13px;font-weight:600;transition:.16s;
}
.hpcat svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8}
.hpcat i{font-style:normal;font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.hpcat:hover{background:var(--raised);color:#fff}
.hpcat.on{background:var(--orange);color:var(--ink)}
.hpcat.on i{color:rgba(0,0,0,.55)}

/* grup başlığı */
.hp__g{margin-bottom:34px}
.hp__gh{
  display:flex;align-items:center;gap:11px;margin:0 0 6px;
  font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em;
}
.hp__gh small{font-family:var(--f-body);font-size:11.5px;font-weight:600;color:var(--dim);margin-left:auto}
.hp__gico{
  width:32px;height:32px;flex:none;border-radius:9px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;
}
.hp__gico svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}

.hp__emptyacts{display:flex;gap:9px;flex-wrap:wrap;justify-content:center;margin-top:10px}

/* alt yönlendirme */
.hp__foot{
  display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
  margin-top:10px;padding:20px 22px;border-radius:13px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);
}
.hp__foot b{display:block;font-size:15px;font-weight:700;letter-spacing:-.01em}
.hp__foot small{display:block;font-size:12.5px;color:var(--dim);margin-top:4px}

/* ── destek formu ── */
.sp{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:22px;align-items:start}
.sp__form{min-width:0}
.sp__fs{border:0;padding:0;margin:0 0 18px}
.sp__fs legend{padding:0;margin-bottom:9px}
.sptopics{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}
.sptopic{
  display:grid;justify-items:start;gap:2px;padding:14px;border-radius:11px;text-align:left;
  background:var(--surface);box-shadow:inset 0 0 0 1px transparent;transition:.16s var(--ease);
}
.sptopic svg{width:18px;height:18px;stroke:var(--dim);fill:none;stroke-width:1.8;margin-bottom:6px;transition:stroke .16s}
.sptopic b{font-size:13.5px;font-weight:700;color:#CDCCCA}
.sptopic small{font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.sptopic:hover{background:var(--raised)}
.sptopic.on{background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40)}
.sptopic.on svg{stroke:var(--orange)}
.sptopic.on b{color:var(--orange)}

.sp__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sp .field input,.sp .field textarea{
  width:100%;border-radius:10px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font:inherit;font-size:14px;padding:13px 14px;transition:border-color .16s,background .16s;
}
.sp .field input{height:46px;padding:0 14px}
.sp .field textarea{resize:vertical;min-height:130px;line-height:1.6}
.sp .field input::placeholder,.sp .field textarea::placeholder{color:#5A5957}
.sp .field input:focus,.sp .field textarea:focus{outline:none;background:var(--raised);border-color:var(--o40)}
.sp__cnt{font-style:normal;font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.sp__cnt.warn{color:var(--orange)}

.spfiles{display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin:4px 0 18px}
.spfiles__add{
  display:inline-flex;align-items:center;gap:8px;height:44px;padding:0 16px;border-radius:8px;
  background:var(--raised);font-size:12.5px;font-weight:700;color:#CDCCCA;cursor:pointer;transition:.15s;
}
.spfiles__add svg{width:14px;height:14px;stroke:var(--orange);fill:none;stroke-width:1.8}
.spfiles__add:hover{background:#1E1E1E;color:#fff}
.spfiles > small{font-size:11px;color:var(--dim)}
.spfile{
  display:inline-flex;align-items:center;gap:8px;padding:7px 8px 7px 12px;border-radius:7px;
  background:var(--surface);font-size:12px;color:#CDCCCA;
}
.spfile em{font-style:normal;font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.spfile button{
  width:20px;height:20px;border-radius:50%;background:#242424;color:var(--muted);
  font-size:14px;line-height:1;transition:.15s;
}
.spfile button:hover{background:var(--red);color:#fff}

.sp__send{width:100%;height:50px;font-size:15px}
.sp__send.is-busy{opacity:.9}
.sp__fine{margin:13px 0 0;font-size:11.5px;color:var(--dim);line-height:1.6}
.sp__fine a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}
.sp__fine a:hover{color:var(--orange)}

.spquick{display:grid}
.spquick__i{
  display:grid;gap:3px;padding:13px 15px;border-bottom:1px solid var(--line);transition:background .14s;
}
.spquick__i:last-child{border-bottom:0}
.spquick__i:hover{background:rgba(255,255,255,.025)}
.spquick__i b{font-size:13px;font-weight:700;color:#E9E8E6}
.spquick__i small{font-size:11.5px;color:var(--dim);line-height:1.5}

/* gönderildi ekranı */
.spdone{
  display:grid;justify-items:center;text-align:center;gap:11px;max-width:560px;margin:20px auto 0;
  padding:44px 26px;border-radius:15px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.spdone__ico{
  width:56px;height:56px;border-radius:50%;background:var(--o14);color:var(--orange);
  display:grid;place-items:center;margin-bottom:4px;
}
.spdone__ico svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:3}
.spdone h1{font-family:var(--f-display);font-size:26px;font-weight:800;letter-spacing:-.03em}
.spdone > p{margin:0;font-size:13.5px;color:var(--muted);line-height:1.7;max-width:46ch}
.spdone > p b{color:var(--orange);font-family:var(--f-mono);font-size:13px}
.spdone__box{
  display:grid;gap:1px;width:100%;margin-top:8px;border-radius:11px;overflow:hidden;background:var(--line);
}
.spdone__box span{display:grid;gap:2px;padding:12px 15px;background:var(--surface);text-align:left}
.spdone__box small{font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--dim)}
.spdone__box b{font-size:13px;font-weight:700;color:#E9E8E6}
.spdone__acts{display:flex;gap:9px;flex-wrap:wrap;justify-content:center;margin-top:8px}

/* ════════════════════════════════════════════════════════════
   HUKUKİ SAYFALAR  (/kosullar · /gizlilik)
   ════════════════════════════════════════════════════════════ */
.lg{max-width:1000px;margin:0 auto;width:100%}
.lg__hero{padding-bottom:24px;margin-bottom:26px;border-bottom:1px solid var(--line)}
.lg__hero h1{
  font-family:var(--f-display);font-size:clamp(27px,4vw,40px);font-weight:800;
  letter-spacing:-.035em;line-height:1.05;margin:8px 0 0;
}
.lg__lead{margin:13px 0 0;font-size:14.5px;color:var(--muted);line-height:1.7;max-width:64ch}
.lg__upd{
  display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin:16px 0 0;
  font-size:12px;color:var(--dim);
}
.lg__upd svg{width:14px;height:14px;stroke:var(--orange);fill:none;stroke-width:1.8}
.lg__upd b{color:#CDCCCA;font-weight:700}
.lg__upd i{width:3px;height:3px;border-radius:50%;background:#2C2C2B}

.lg__grid{display:grid;grid-template-columns:236px minmax(0,1fr);gap:34px;align-items:start}

/* içindekiler */
.lg__toc{position:sticky;top:86px}
.lg__tocin{display:grid;gap:3px}
.lg__tocin > b{
  font-family:var(--f-mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--dim);margin-bottom:8px;
}
.lg__tocin nav{display:grid;gap:1px}
.lg__tocin a{
  padding:8px 12px;border-left:2px solid var(--line);font-size:12.5px;color:var(--muted);
  line-height:1.45;transition:.15s;
}
.lg__tocin a:hover{color:#fff;border-left-color:#3A3A38}
.lg__tocin a.on{color:var(--orange);border-left-color:var(--orange);background:var(--o08)}
.lg__docs{display:grid;gap:6px;margin-top:16px}
.lg__other{
  margin-top:0;padding:11px 13px;border-radius:9px;background:var(--surface);
  font-size:12.5px;font-weight:700;color:var(--orange);text-align:center;transition:background .15s;
}
.lg__other:hover{background:var(--o08)}

/* metin gövdesi */
.lg__body{min-width:0}
.lg__body section{margin-bottom:30px;scroll-margin-top:92px}
.lg__body h2{
  font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em;
  margin:0 0 11px;padding-bottom:9px;border-bottom:1px solid var(--line);
}
.lg__body p{margin:0 0 12px;font-size:14px;color:var(--muted);line-height:1.85;max-width:70ch}
.lg__body p:last-child{margin-bottom:0}

.lg__foot{
  display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
  margin-top:34px;padding:20px 22px;border-radius:13px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);
}
.lg__foot b{display:block;font-size:15px;font-weight:700;letter-spacing:-.01em}
.lg__foot small{display:block;font-size:12.5px;color:var(--dim);margin-top:4px}

/* ════════════════════════════════════════════════════════════
   404
   ════════════════════════════════════════════════════════════ */
.nf{max-width:var(--maxw);margin:0 auto;width:100%}
.nf__top{
  position:relative;isolation:isolate;overflow:hidden;text-align:center;
  padding:clamp(40px,7vw,76px) var(--pad) clamp(34px,5vw,54px);
  border-radius:16px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.nf__top::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(60% 90% at 50% 0,var(--o08),transparent 70%);
}
.nf__code{
  display:block;font-family:var(--f-display);font-size:clamp(74px,13vw,132px);font-weight:800;
  letter-spacing:-.06em;line-height:.86;user-select:none;
  /* hayalet rakam: turuncu konturlu, temanın rengiyle bağlı */
  color:transparent;-webkit-text-stroke:1.5px rgba(255,144,0,.28);
  text-shadow:0 0 46px rgba(255,144,0,.09);
}
.nf__top h1{
  font-family:var(--f-display);font-size:clamp(24px,3.6vw,34px);font-weight:800;
  letter-spacing:-.03em;margin:12px 0 0;
}
.nf__top p{margin:12px 0 0;font-size:14px;color:var(--muted);line-height:1.7}
.nf__top code{
  display:inline-block;margin-top:9px;padding:5px 11px;border-radius:6px;background:var(--surface);
  font-family:var(--f-mono);font-size:12px;color:var(--orange);
}
.nf__acts{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:24px}
.nf__acts .btn{height:46px;min-width:160px}

.nf__links{display:grid;grid-template-columns:repeat(4,1fr);gap:11px;margin:16px 0 8px}
.nflink{
  display:grid;justify-items:start;gap:2px;padding:16px 17px;border-radius:12px;
  background:var(--surface);transition:.18s var(--ease);
}
.nflink:hover{background:var(--raised);transform:translateY(-2px)}
.nflink__ico{
  width:34px;height:34px;border-radius:9px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;margin-bottom:8px;
}
.nflink__ico svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8}
.nflink b{font-size:14px;font-weight:700;color:#EDECEA}
.nflink small{font-size:11.5px;color:var(--dim)}

/* ── tablet ── */
@media (max-width:1000px){
  .lg__grid{grid-template-columns:1fr;gap:20px}
  .lg__toc{position:static}
  .lg__tocin nav{
    display:flex;gap:6px;overflow-x:auto;scrollbar-width:none;
    margin:0 calc(var(--pad)*-1);padding:0 var(--pad) 4px;
  }
  .lg__tocin nav::-webkit-scrollbar{display:none}
  .lg__tocin a{
    display:flex;align-items:center;flex:none;height:42px;border-left:0;border-radius:7px;
    background:var(--surface);white-space:nowrap;padding:0 14px;
  }
  .lg__tocin a.on{background:var(--orange);color:var(--ink)}
  .lg__other{display:none}
  .sp{grid-template-columns:1fr}
  .sp__side{order:2}
  .nf__links{grid-template-columns:1fr 1fr}
}

/* ── mobil ── */
@media (max-width:700px){
  .hp__search{height:48px;padding:0 14px}
  .hp__cats{gap:6px;flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;margin:0 calc(var(--pad)*-1) 26px;padding:0 var(--pad) 4px}
  .hp__cats::-webkit-scrollbar{display:none}
  .hpcat{flex:none;height:42px;padding:0 15px}
  /* iç sayfa başlıkları mobil header'ın altında kalmasın */
  .lg__body section{scroll-margin-top:116px}
  .hp__gh{font-size:17px}
  .hp__foot,.lg__foot{flex-direction:column;align-items:stretch;text-align:center;padding:18px}
  .hp__foot .btn,.lg__foot .btn{width:100%;justify-content:center;height:46px}

  .sptopics{grid-template-columns:1fr 1fr;gap:8px}
  .sptopic{padding:12px}
  .sp__row{grid-template-columns:1fr}
  .sp .field input{height:48px}
  /* iOS zoom engeli: sayfa-özel kural globali yenmesin */
  .sp .field input,.sp .field textarea,.cats__search input{font-size:16px}
  .spdone{padding:34px 18px}
  .spdone__acts .btn{flex:1;justify-content:center;min-width:140px}

  .lg__body h2{font-size:17px}
  .lg__body p{font-size:13.5px;line-height:1.8}

  .nf__links{grid-template-columns:1fr;gap:8px}
  .nflink{display:flex;align-items:center;gap:13px;padding:13px 15px}
  .nflink__ico{margin-bottom:0;width:38px;height:38px;flex:none}
  .nflink b{flex-basis:100%}
  .nf__acts .btn{flex:1;min-width:0}
}

/* ════════════════════════════════════════════════════════════
   HESAP KABUĞU v2  (/profil · /favoriler · /izleme-gecmisi · /mesajlar · /cuzdan · /ayarlar)
   ════════════════════════════════════════════════════════════ */
.acc{max-width:var(--maxw);margin:0 auto;width:100%}

/* ── kimlik paneli ── */
.acc__hero{
  position:relative;isolation:isolate;overflow:hidden;border-radius:15px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);margin-bottom:16px;
}
.acc__hero::before{
  content:"";position:absolute;top:-70%;left:-6%;width:46%;height:240%;z-index:-1;
  background:radial-gradient(closest-side,var(--o08),transparent 72%);pointer-events:none;
}
.acc__hero.is-prem::before{background:radial-gradient(closest-side,var(--o14),transparent 72%)}
.acc__heroin{display:flex;align-items:center;gap:17px;padding:clamp(18px,2.6vw,26px)}
.acc__avawrap{position:relative;flex:none}
.acc__ava{
  width:76px;height:76px;border-radius:50%;object-fit:cover;display:block;
  box-shadow:0 0 0 2px var(--o40),0 14px 34px -16px #000;
}
.acc__star{
  position:absolute;right:-3px;bottom:-3px;width:26px;height:26px;border-radius:50%;
  background:var(--orange);color:var(--ink);display:grid;place-items:center;
  box-shadow:0 0 0 3px var(--panel);
}
.acc__star svg{width:13px;height:13px}
.acc__id{min-width:0;flex:1}
.acc__id h1{
  font-family:var(--f-display);font-size:clamp(23px,3vw,32px);font-weight:800;
  letter-spacing:-.035em;margin:0;line-height:1.05;
}
.acc__who{display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin:8px 0 0;font-size:12.5px;color:var(--muted)}
.acc__who b{color:#EDECEA;font-weight:700}
.acc__who i{width:3px;height:3px;border-radius:50%;background:#2C2C2B}
.acc__idno{font-family:var(--f-mono);font-size:11px;color:var(--dim);letter-spacing:.04em}
.acc__sub{display:block;margin-top:5px;font-size:11.5px;color:var(--dim)}

.acc__chips{display:flex;align-items:stretch;gap:9px;flex:none}
.acc__chip{
  display:flex;align-items:center;gap:10px;padding:10px 15px;border-radius:10px;
  background:var(--surface);transition:.16s var(--ease);
}
.acc__chip:hover{background:var(--raised);transform:translateY(-1px)}
.acc__chip svg{width:17px;height:17px;flex:none;stroke:var(--orange);fill:none;stroke-width:1.8}
.acc__chip--prem{background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40)}
.acc__chip--prem svg{fill:var(--orange);stroke:none}
.acc__chip b{display:block;font-size:13px;font-weight:700;color:#F1F0EE;line-height:1.15}
.acc__chip small{display:block;font-size:10.5px;color:var(--dim);margin-top:1px}
.acc__chips .btn{align-self:center}

/* istatistik şeridi — panelin altına gömülü */
.acc__strip{
  display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);
  background:rgba(255,255,255,.012);
}
.acc__stat{
  display:grid;grid-template-columns:auto 1fr;align-items:center;gap:2px 12px;
  padding:14px clamp(16px,2.4vw,24px);border-right:1px solid var(--line);
  transition:background .15s;
}
.acc__stat:last-child{border-right:0}
.acc__stat:hover{background:var(--o08)}
.acc__stat svg{grid-row:span 2;width:18px;height:18px;stroke:var(--orange);fill:none;stroke-width:1.8}
.acc__stat b{font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em;color:#fff;line-height:1}
.acc__stat small{font-size:11px;color:var(--dim)}

/* ── yapışkan sekmeler ── */
.acc__tabs{
  position:sticky;top:61px;z-index:25;margin:0 calc(var(--pad)*-1) 26px;
  background:rgba(4,4,4,.86);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.acc__tabsin{display:flex;gap:4px;max-width:var(--maxw);margin:0 auto;padding:0 var(--pad)}
.acc__tab{
  display:inline-flex;align-items:center;gap:8px;padding:13px 15px;
  font-size:13.5px;font-weight:600;color:var(--muted);border-bottom:2px solid transparent;
  margin-bottom:-1px;transition:color .15s,border-color .15s;white-space:nowrap;
}
.acc__tab svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.acc__tab:hover{color:#fff}
.acc__tab.on{color:var(--orange);border-bottom-color:var(--orange)}
.acc__tab em{
  font-style:normal;min-width:17px;height:17px;padding:0 5px;border-radius:9px;
  background:var(--orange);color:var(--ink);font-size:10.5px;font-weight:700;
  display:inline-grid;place-items:center;
}

/* ── parçalı denetim (segmented) ── */
.seg{display:inline-flex;gap:3px;padding:3px;border-radius:9px;background:var(--surface)}
.seg button{
  display:inline-flex;align-items:center;gap:7px;padding:8px 14px;border-radius:7px;
  font-size:13px;font-weight:700;color:#B6B4B1;transition:.16s;white-space:nowrap;
}
.seg button:hover{color:#fff}
.seg button.on{background:var(--orange);color:var(--ink)}
.seg button i{
  font-style:normal;font-family:var(--f-mono);font-size:10.5px;opacity:.75;
}
.seg--sm button{padding:6px 11px;font-size:12px}

/* ── araç çubuğu ── */
.favbar{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:18px}
.favbar__q{flex:1;min-width:200px;max-width:330px;height:41px}

/* ── iki sütun ── */
.acc__cols{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:22px;align-items:start}
.acc__main{min-width:0}
.asec{margin-bottom:30px}
.vids--two{grid-template-columns:repeat(2,1fr)}
.apanel__hint{font-family:var(--f-mono);font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--dim)}

/* devam kartı — kalan süre etiketi */
.contwrap{position:relative}
.contwrap__left{
  position:absolute;left:9px;top:9px;z-index:2;display:inline-flex;align-items:center;gap:6px;
  padding:5px 9px;border-radius:5px;background:rgba(8,8,8,.78);backdrop-filter:blur(6px);
  font-size:10.5px;font-weight:700;color:#EDECEA;pointer-events:none;
}
.contwrap__left svg{width:11px;height:11px;stroke:var(--orange);fill:none;stroke-width:2}

/* online favori sırası */
.arow{display:grid;grid-template-columns:repeat(4,1fr);gap:13px}
.arow__p{display:block;transition:transform .2s var(--ease)}
.arow__p:hover{transform:translateY(-2px)}
.arow__ph{position:relative;display:block;aspect-ratio:1;border-radius:10px;overflow:hidden;background:var(--surface)}
.arow__ph img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease),filter .25s}
.arow__p:hover .arow__ph img{transform:scale(1.06);filter:brightness(.75)}
.arow__ph i{
  position:absolute;right:7px;top:7px;width:9px;height:9px;border-radius:50%;
  background:#4CC26B;box-shadow:0 0 0 3px rgba(4,4,4,.65);
}
.arow__ph em{
  position:absolute;left:50%;bottom:10px;transform:translate(-50%,6px);
  padding:6px 12px;border-radius:6px;background:var(--orange);color:var(--ink);
  font-style:normal;font-size:11px;font-weight:700;white-space:nowrap;
  opacity:0;transition:.2s var(--ease);
}
@media (hover:hover){ .arow__p:hover .arow__ph em{opacity:1;transform:translate(-50%,0)} }
.arow__p b{display:block;font-size:13px;font-weight:700;color:#E9E8E6;margin-top:8px}
.arow__p small{display:block;font-size:11px;color:var(--dim);margin-top:1px}

/* yan panel */
.apanel{border-radius:12px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);overflow:hidden;margin-bottom:14px}
.apanel__h{display:flex;align-items:center;justify-content:space-between;padding:13px 15px;border-bottom:1px solid var(--line)}
.apanel__h b{font-size:13.5px;font-weight:700}

/* zaman çizgili etkinlik akışı */
.tl{position:relative;padding:6px 0}
.tl::before{content:"";position:absolute;left:29px;top:14px;bottom:14px;width:1px;background:var(--line)}
.tl__i{
  position:relative;display:flex;gap:12px;padding:9px 15px;transition:background .14s;
  animation:tlIn .4s var(--ease) both;animation-delay:calc(var(--d)*60ms);
}
@keyframes tlIn{from{opacity:0;transform:translateY(5px)}to{opacity:1;transform:none}}
.tl__i:hover{background:rgba(255,255,255,.025)}
.tl__ico{
  width:28px;height:28px;flex:none;border-radius:50%;background:var(--surface);color:var(--orange);
  display:grid;place-items:center;box-shadow:0 0 0 3px var(--panel);z-index:1;
}
.tl__ico svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:1.9}
.tl__b{min-width:0}
.tl__b em{display:block;font-style:normal;font-size:12.5px;color:#CDCCCA;line-height:1.45}
.tl__b small{display:block;font-size:11px;color:var(--dim);margin-top:2px}

/* premium çağrısı */
.apromo{
  position:relative;display:grid;gap:6px;padding:17px;border-radius:12px;background:var(--o08);
  box-shadow:inset 0 0 0 1px var(--o40);transition:background .18s;overflow:hidden;
}
.apromo:hover{background:var(--o14)}
.apromo__badge{
  justify-self:start;padding:4px 9px;border-radius:4px;background:var(--red);color:#fff;
  font-size:10px;font-weight:800;letter-spacing:.02em;
}
.apromo b{font-size:14.5px;font-weight:700;color:#F4F3F1;letter-spacing:-.01em}
.apromo small{font-size:12px;color:var(--muted);line-height:1.55}
.apromo__cta{font-size:12.5px;font-weight:700;color:var(--orange);margin-top:4px}

/* ── hesap yardım şeridi — her hesap sayfasının altında ── */
.acc__help{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  margin-top:30px;padding:18px 20px;border-radius:13px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);
}
.acc__help > span b{display:block;font-size:14px;font-weight:700;letter-spacing:-.01em}
.acc__help > span small{display:block;font-size:12px;color:var(--dim);margin-top:3px}
.acc__helplinks{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.acc__helplinks a{
  display:inline-flex;align-items:center;gap:8px;height:40px;padding:0 15px;border-radius:8px;
  background:var(--surface);font-size:12.5px;font-weight:700;color:#C5C4C2;transition:.15s;
}
.acc__helplinks a svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8}
.acc__helplinks a:hover{background:var(--raised);color:#fff}
.acc__helplinks .acc__helpcta{background:var(--orange);color:var(--ink)}
.acc__helplinks .acc__helpcta:hover{background:var(--orange);color:var(--ink);filter:brightness(1.1)}
@media (max-width:700px){
  .acc__help{flex-direction:column;align-items:stretch;text-align:center;padding:16px}
  .acc__helplinks{width:100%}
  .acc__helplinks a{flex:1;justify-content:center;height:44px;min-width:110px}
}

/* ── boş durum ── */
.accempty{
  display:grid;justify-items:center;gap:8px;text-align:center;
  padding:52px 20px;border-radius:13px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.accempty > svg{width:34px;height:34px;stroke:var(--dim);fill:none;stroke-width:1.6;margin-bottom:4px}
.accempty b{font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em}
.accempty p{margin:0;font-size:13px;color:var(--muted);max-width:40ch;line-height:1.6}
.accempty .btn{margin-top:10px}

/* ── favoriler: kalp / seçim / aksiyon çubuğu ── */
.favwrap{position:relative}
.fav__x{
  position:absolute;top:9px;right:9px;z-index:2;width:34px;height:34px;border-radius:50%;
  background:rgba(8,8,8,.72);backdrop-filter:blur(6px);color:var(--orange);
  display:grid;place-items:center;transition:.16s;
}
.fav__x svg{width:16px;height:16px}
.fav__x:hover{background:var(--red);color:#fff}
.fav__pick{
  position:absolute;top:9px;right:9px;z-index:2;width:30px;height:30px;border-radius:8px;
  background:rgba(8,8,8,.78);backdrop-filter:blur(6px);color:transparent;
  box-shadow:inset 0 0 0 1.5px #4A4A48;display:grid;place-items:center;transition:.15s;
}
.fav__pick svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:3}
.favwrap.picked .fav__pick{background:var(--orange);color:var(--ink);box-shadow:none}
.favwrap.picked .model__ph,.favwrap.picked .vid__frame{outline:2px solid var(--orange);outline-offset:2px;border-radius:8px}
.is-edit .model,.is-edit .vid{opacity:.9}
.favact{
  position:sticky;bottom:14px;z-index:20;display:flex;align-items:center;gap:14px;
  margin-top:20px;padding:11px 12px 11px 18px;border-radius:12px;
  background:rgba(9,9,9,.94);backdrop-filter:blur(14px);box-shadow:inset 0 0 0 1px var(--line),0 18px 44px -20px #000;
}
.favact span{flex:1;font-size:13px;font-weight:600;color:var(--muted)}
.favact__del{background:rgba(255,31,61,.14);color:#FF6A80;height:42px}
.favact__del:not(:disabled):hover{background:var(--red);color:#fff}
.favact__del:disabled{opacity:.45;cursor:not-allowed}

/* ── izleme geçmişi ── */
.hgroup{margin-bottom:26px}
.hgroup__day{
  position:sticky;top:107px;z-index:15;display:flex;align-items:baseline;gap:10px;
  margin:0 0 12px;padding:8px 0;background:linear-gradient(180deg,var(--bg) 78%,transparent);
  font-family:var(--f-display);font-size:17px;font-weight:800;letter-spacing:-.02em;
}
.hgroup__day small{font-family:var(--f-body);font-size:11.5px;font-weight:600;color:var(--dim)}
.hlist{display:grid;gap:10px}
.hrow{
  display:flex;gap:14px;padding:11px;border-radius:11px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);transition:box-shadow .18s;
}
.hrow:hover{box-shadow:inset 0 0 0 1px #262625}
.hrow__ph{
  position:relative;flex:none;width:172px;aspect-ratio:16/9;border-radius:7px;overflow:hidden;background:var(--surface);
}
.hrow__ph img{width:100%;height:100%;object-fit:cover;transition:transform .35s var(--ease)}
.hrow__ph:hover img{transform:scale(1.05)}
.hrow__ph em{
  position:absolute;right:6px;top:6px;font-style:normal;font-family:var(--f-mono);font-size:10px;
  background:rgba(4,4,4,.8);color:#DAD8D5;border-radius:3px;padding:2px 6px;
}
.hrow__play{
  position:absolute;inset:0;display:grid;place-items:center;color:#fff;
  background:rgba(4,4,4,.25);opacity:0;transition:opacity .18s;
}
.hrow__play svg{width:26px;height:26px;filter:drop-shadow(0 4px 10px rgba(0,0,0,.6))}
.hrow__ph:hover .hrow__play{opacity:1}
.hrow__bar{position:absolute;left:0;right:0;bottom:0;height:3px;background:rgba(255,255,255,.14)}
.hrow__bar b{display:block;height:100%;background:var(--orange)}
.hrow__b{min-width:0;flex:1;display:grid;align-content:center;gap:6px}
.hrow__t{
  font-size:14.5px;font-weight:700;letter-spacing:-.01em;color:#EDECEA;line-height:1.35;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color .14s;
}
.hrow__t:hover{color:var(--orange)}
.hrow__m{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:0;font-size:12px;color:var(--dim)}
.hrow__m a{color:var(--muted);font-weight:600}
.hrow__m a:hover{color:var(--orange)}
.hrow__m i{width:3px;height:3px;border-radius:50%;background:#2C2C2B}
.hrow__done{color:#7BE39A}
.hrow__acts{display:flex;align-items:center;gap:8px}
.hrow__go{
  display:inline-flex;align-items:center;gap:7px;padding:7px 13px;border-radius:6px;
  background:var(--raised);color:#E9E8E6;font-size:12px;font-weight:700;transition:.15s;
}
.hrow__go svg{width:11px;height:11px}
.hrow__go:hover{background:var(--orange);color:var(--ink)}
.hrow__del{
  width:32px;height:32px;border-radius:6px;color:var(--dim);display:grid;place-items:center;transition:.15s;
}
.hrow__del svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.hrow__del:hover{background:rgba(255,31,61,.12);color:#FF6A80}

/* ── mesajlar ── */
.msg{display:grid;grid-template-columns:330px minmax(0,1fr);gap:16px;align-items:start}
.msg__list{
  display:flex;flex-direction:column;border-radius:12px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);overflow:hidden;
}
.msg__tools{display:grid;gap:8px;padding:10px 10px 8px;border-bottom:1px solid var(--line)}
.msg__search{height:40px}
.msg__tools .seg{justify-self:start}
.msg__rows{display:grid;max-height:472px;overflow-y:auto;scrollbar-width:thin}
.msg__rows::-webkit-scrollbar{width:6px}
.msg__rows::-webkit-scrollbar-thumb{background:#1E1E1E;border-radius:3px}
.mrow{
  display:flex;align-items:center;gap:11px;padding:11px 13px;text-align:left;
  border-left:2px solid transparent;transition:background .14s;
}
.mrow:hover{background:rgba(255,255,255,.025)}
.mrow.on{background:var(--o08);border-left-color:var(--orange)}
.mrow__ava{position:relative;flex:none}
.mrow__ava img{width:42px;height:42px;border-radius:50%;object-fit:cover}
.mrow__ava i{
  position:absolute;right:0;bottom:1px;width:10px;height:10px;border-radius:50%;
  background:#4CC26B;box-shadow:0 0 0 2.5px var(--panel);
}
.mrow__b{min-width:0;flex:1}
.mrow__b b{display:flex;align-items:center;gap:5px;font-size:13.5px;font-weight:700;color:#EDECEA}
.mrow__b .verif{width:12px;height:12px;flex:none}
.mrow__pin{display:inline-grid;place-items:center;color:var(--orange)}
.mrow__pin svg{width:11px;height:11px}
.mrow__b small{
  display:flex;align-items:center;gap:5px;font-size:12px;color:var(--dim);margin-top:2px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.mrow__b small svg{width:12px;height:12px;flex:none;stroke:var(--orange);fill:none;stroke-width:1.8}
.mrow.unread .mrow__b small{color:#CDCCCA;font-weight:600}
.mrow.on .mrow__b small{color:var(--muted)}
.mrow__meta{display:grid;justify-items:end;gap:5px;flex:none}
.mrow__meta time{font-size:10.5px;color:var(--dim)}
.mrow__meta em{
  font-style:normal;min-width:17px;height:17px;padding:0 5px;border-radius:9px;
  background:var(--orange);color:var(--ink);font-size:10.5px;font-weight:700;
  display:inline-grid;place-items:center;
}
.msg__new{
  display:flex;align-items:center;justify-content:center;gap:8px;padding:13px;
  border-top:1px solid var(--line);font-size:12.5px;font-weight:700;color:var(--orange);
  transition:background .15s;
}
.msg__new svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.msg__new:hover{background:var(--o08)}

/* gömülü sohbet */
.msg__thread{min-width:0}
.msg__topbar{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.msg__prof{
  display:inline-flex;align-items:center;gap:7px;margin-left:auto;padding:8px 13px;border-radius:7px;
  background:var(--raised);font-size:12.5px;font-weight:700;color:#CDCCCA;transition:.15s;
}
.msg__prof svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.2}
.msg__prof:hover{background:var(--orange);color:var(--ink)}
.msg__thread .chat{
  position:static;width:100%;height:520px;animation:none;border-radius:12px;
  box-shadow:inset 0 0 0 1px var(--line);
}
.msg__thread .chat__x{display:none}
.msg__back{display:none}
.msg__note{
  display:flex;align-items:center;gap:8px;margin:10px 2px 0;font-size:11.5px;color:var(--dim);
}
.msg__note svg{width:13px;height:13px;flex:none;stroke:var(--dim);fill:none;stroke-width:1.8}

/* ── cüzdan ── */
.wcards{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:28px}
.wcard{
  display:grid;justify-items:start;gap:7px;padding:19px 20px;border-radius:13px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.wcard--cr{background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40)}
.wcard__k{
  display:flex;align-items:center;gap:8px;margin:0;font-family:var(--f-mono);font-size:10.5px;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted);
}
.wcard__k svg{width:15px;height:15px;stroke:var(--orange);fill:none;stroke-width:1.8}
.wcard__n{
  display:flex;align-items:baseline;gap:7px;
  font-family:var(--f-display);font-size:40px;font-weight:800;letter-spacing:-.04em;line-height:1;color:#fff;
}
.wcard__n em{font-style:normal;font-size:14px;font-weight:700;color:var(--muted);letter-spacing:0}
.wcard__n--sm{font-size:24px}
.wcard small{font-size:12px;color:var(--dim)}
.wcard .btn{margin-top:8px;height:40px;padding:0 18px}
.wmeter{
  width:100%;height:5px;border-radius:3px;background:rgba(255,255,255,.09);overflow:hidden;margin-top:6px;
}
.wmeter i{display:block;height:100%;border-radius:3px;background:var(--orange);transition:width .5s var(--ease)}
.wmeter__l{margin-top:-2px}
.wcard__ask{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:8px;font-size:12.5px;color:var(--muted)}
.wcard__ask button{
  padding:8px 13px;border-radius:6px;background:var(--raised);color:#E9E8E6;font-size:12px;font-weight:700;transition:.15s;
}
.wcard__ask button:first-of-type{background:rgba(255,31,61,.14);color:#FF6A80}
.wcard__ask button:first-of-type:hover{background:var(--red);color:#fff}
.wcard__ask button:last-of-type:hover{background:#1E1E1E}

.wtx{border-radius:12px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);overflow:hidden}
.wtx__r{display:flex;align-items:center;gap:13px;padding:13px 16px;border-bottom:1px solid var(--line)}
.wtx__r:last-child{border-bottom:0}
.wtx__ico{
  width:34px;height:34px;flex:none;border-radius:9px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;
}
.wtx__ico svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.wtx__b{min-width:0;flex:1}
.wtx__b b{display:block;font-size:13.5px;font-weight:700;color:#E9E8E6}
.wtx__b small{display:block;font-size:11.5px;color:var(--dim);margin-top:2px}
.wtx__amt{display:grid;justify-items:end;gap:2px;flex:none}
.wtx__amt b{font-size:13.5px;font-weight:700;color:#E9E8E6}
.wtx__amt em{font-style:normal;font-family:var(--f-mono);font-size:11.5px;color:var(--dim)}
.wtx__amt em.up{color:#7BE39A}
.wtx__inv{font-size:10.5px;font-weight:700;color:var(--dim);text-decoration:underline;text-underline-offset:2px}
.wtx__inv:hover{color:var(--orange)}

.wpacks{display:grid}
.wpack{
  position:relative;display:grid;justify-items:start;gap:3px;padding:14px 15px;text-align:left;
  border-bottom:1px solid var(--line);transition:background .15s;
}
.wpack:last-child{border-bottom:0}
.wpack:hover{background:rgba(255,255,255,.025)}
.wpack.best{background:var(--o08)}
.wpack em{
  font-style:normal;font-family:var(--f-mono);font-size:9px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--orange);
}
.wpack b{font-size:15px;font-weight:800;letter-spacing:-.01em;color:#F4F3F1}
.wpack small{font-size:11.5px;color:var(--dim)}
.wpack > span{
  position:absolute;right:15px;top:50%;transform:translateY(-50%);
  font-family:var(--f-display);font-size:17px;font-weight:800;color:var(--orange);
}
.wcost{list-style:none;margin:0;padding:8px 15px 12px;display:grid;gap:9px}
.wcost li{display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--muted)}
.wcost li b{margin-left:auto;color:#E9E8E6;font-weight:700}
.wcost svg{width:12px;height:12px;flex:none;stroke:var(--orange);fill:none;stroke-width:2.8}

/* ── ayarlar ── */
.aform__body{padding:16px}
.aform__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.aform .field{margin-bottom:13px}
.aform .field input{height:44px}
.field__pre--lbl{top:auto;bottom:0;height:44px}
.aform__foot{display:flex;align-items:center;gap:12px;margin-top:3px}
.aform__foot .btn{height:42px;padding:0 20px}

.avarow{display:flex;align-items:center;gap:14px;margin-bottom:17px;padding-bottom:16px;border-bottom:1px solid var(--line)}
.avarow img{width:56px;height:56px;flex:none;border-radius:50%;object-fit:cover;box-shadow:0 0 0 2px var(--line)}
.avarow__b{min-width:0;flex:1}
.avarow__b b{display:block;font-size:13.5px;font-weight:700;color:#E9E8E6}
.avarow__b small{display:block;font-size:11.5px;color:var(--dim);margin-top:2px}
.avarow__up{height:38px;padding:0 15px;cursor:pointer}

.linked{display:grid}
.linked__r{display:flex;align-items:center;gap:12px;padding:13px 15px;border-bottom:1px solid var(--line)}
.linked__r:last-child{border-bottom:0}
.linked__ico{
  width:34px;height:34px;flex:none;border-radius:9px;background:var(--surface);
  display:grid;place-items:center;font-size:15px;font-weight:800;color:#CDCCCA;
}
.linked__b{min-width:0;flex:1}
.linked__b b{display:block;font-size:13px;font-weight:700;color:#E9E8E6}
.linked__b small{display:block;font-size:11.5px;color:var(--dim);margin-top:1px}
.linked__on{font-style:normal;font-size:11px;font-weight:700;color:#7BE39A}
.linked__btn{
  padding:7px 13px;border-radius:6px;background:var(--raised);color:var(--muted);
  font-size:12px;font-weight:700;transition:.15s;
}
.linked__btn:hover{background:#1E1E1E;color:#fff}
.linked__btn--go{background:var(--o14);color:var(--orange)}
.linked__btn--go:hover{background:var(--orange);color:var(--ink)}

.opts{display:grid}
.opt{display:flex;align-items:center;gap:14px;padding:13px 16px;border-bottom:1px solid var(--line)}
.opt:last-child{border-bottom:0}
.opt__b{min-width:0;flex:1}
.opt__b b{display:block;font-size:13.5px;font-weight:700;color:#E9E8E6}
.opt__b small{display:block;font-size:11.5px;color:var(--dim);margin-top:2px}
.tgl{
  width:42px;height:24px;flex:none;border-radius:12px;background:#242423;position:relative;
  transition:background .18s;
}
.tgl i{
  position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#8E8D8B;
  transition:.18s var(--ease);
}
.tgl.on{background:var(--orange)}
.tgl.on i{left:21px;background:var(--ink)}
.tgl:focus-visible{outline:2px solid var(--orange);outline-offset:2px}

.adanger{box-shadow:inset 0 0 0 1px rgba(255,31,61,.28)}
.adanger .apanel__h b{color:#FF6A80}
.adanger__b{padding:15px 16px}
.adanger__b p{margin:0 0 13px;font-size:12.5px;color:var(--muted);line-height:1.6;max-width:60ch}
.adanger__row{display:flex;gap:9px;flex-wrap:wrap}
.adanger__row input{
  flex:1;min-width:200px;height:42px;border-radius:8px;background:var(--surface);
  border:1px solid transparent;color:var(--text);font:inherit;font-size:13px;padding:0 13px;
}
.adanger__row input:focus{outline:none;border-color:rgba(255,31,61,.4)}
.adanger__btn{background:rgba(255,31,61,.14);color:#FF6A80;height:42px}
.adanger__btn:not(:disabled):hover{background:var(--red);color:#fff}
.adanger__btn:disabled{opacity:.45;cursor:not-allowed}

.asess{display:grid}
.asess__r{display:flex;align-items:center;gap:11px;padding:13px 15px;border-bottom:1px solid var(--line)}
.asess__r:last-child{border-bottom:0}
.asess__r > svg{width:16px;height:16px;flex:none;stroke:var(--muted);fill:none;stroke-width:1.8}
.asess__r span{min-width:0;flex:1}
.asess__r b{display:block;font-size:12.5px;font-weight:700;color:#E9E8E6}
.asess__r small{display:block;font-size:11px;color:var(--dim);margin-top:1px}
.asess__r em{font-style:normal;font-size:10.5px;font-weight:700;color:#7BE39A}
.asess__r button{
  padding:6px 11px;border-radius:6px;background:var(--raised);color:var(--muted);
  font-size:11.5px;font-weight:700;transition:.15s;
}
.asess__r button:hover{background:#1E1E1E;color:#fff}
.ahelp{display:grid;padding:6px 0}
.ahelp a{padding:9px 15px;font-size:12.5px;color:var(--muted);transition:.14s}
.ahelp a:hover{color:var(--orange);background:rgba(255,255,255,.02)}

/* kaydedilmemiş değişiklik çubuğu */
.savebar{
  position:fixed;left:50%;bottom:18px;z-index:70;transform:translate(-50%,90px);
  display:flex;align-items:center;gap:18px;padding:10px 12px 10px 17px;border-radius:13px;
  background:rgba(9,9,9,.95);backdrop-filter:blur(16px);
  box-shadow:inset 0 0 0 1px var(--line),0 22px 55px -22px #000;
  transition:transform .3s var(--ease);pointer-events:none;
}
.savebar.show{transform:translate(-50%,0);pointer-events:auto}
.savebar > span{display:inline-flex;align-items:center;gap:9px;font-size:13px;font-weight:600;color:#DAD8D5;white-space:nowrap}
.savebar > span svg{width:15px;height:15px;stroke:var(--orange);fill:none;stroke-width:1.8}
.savebar__btns{display:flex;gap:8px}
.savebar .btn{height:40px;padding:0 17px;font-size:13px}

/* ── tablet/mobil ── */
@media (max-width:1000px){
  .acc__cols{grid-template-columns:1fr}
  .acc__side{order:2}
  .msg{grid-template-columns:1fr}
  .msg__thread{display:none}
  .msg--open .msg__list{display:none}
  .msg--open .msg__thread{display:block}
  .msg__back{
    display:inline-flex;align-items:center;gap:7px;padding:9px 13px 9px 9px;
    border-radius:7px;font-size:13px;font-weight:700;color:var(--muted);background:var(--raised);
  }
  .msg__back svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2.2}
  .msg__rows{max-height:none}
}
@media (max-width:700px){
  .acc__heroin{flex-wrap:wrap;gap:12px;padding:16px}
  .acc__ava{width:58px;height:58px}
  .acc__star{width:22px;height:22px}
  .acc__star svg{width:11px;height:11px}
  .acc__id{flex-basis:calc(100% - 72px)}
  .acc__chips{width:100%;gap:8px;flex-wrap:wrap}
  .acc__chip{flex:1;min-width:140px;padding:9px 12px}
  .acc__chips .btn{flex:1 1 100%;justify-content:center;height:auto;min-height:44px}
  .acc__strip{grid-template-columns:1fr 1fr}
  .acc__stat{border-right:0;border-top:1px solid var(--line);padding:12px 16px}
  .acc__stat:nth-child(odd){border-right:1px solid var(--line)}
  .acc__stat:nth-child(-n+2){border-top:0}
  .acc__strip{border-top:1px solid var(--line)}

  .acc__tabs{position:static;margin-bottom:20px}
  .acc__tabsin{gap:2px;overflow-x:auto;scrollbar-width:none}
  .acc__tabsin::-webkit-scrollbar{display:none}
  .acc__tab{flex:none;padding:12px 11px;font-size:13px}

  .favbar{gap:8px}
  .favbar__q{max-width:none;flex-basis:100%}
  .seg{width:100%;display:flex}
  .seg button{flex:1;justify-content:center;min-height:40px}
  .msg__tools .seg{width:100%}

  .vids--two{grid-template-columns:1fr}
  .arow{grid-template-columns:repeat(2,1fr)}
  .arow__ph em{opacity:1;transform:translate(-50%,0)}

  .hgroup__day{top:0;position:static;padding:0}
  .hrow{gap:11px;padding:9px}
  .hrow__ph{width:128px}
  .hrow__t{font-size:13px}
  .hrow__m{font-size:11px}
  /* dokunma hedefleri: gerçek kontroller 40px altına inmesin */
  .hrow__go{height:40px;padding:0 14px;font-size:12px}
  .hrow__del{width:40px;height:40px}
  .fav__x{width:40px;height:40px}
  .fav__pick{width:36px;height:36px}
  .wtx__inv{display:inline-block;padding:6px 2px;margin:-6px 0}
  /* anahtar: görünüm 48×28 kalsın, dokunma alanı 44px'e genişlesin */
  .tgl{position:relative;width:48px;height:28px}
  .tgl i{width:22px;height:22px}
  .tgl.on i{left:23px}
  .tgl::after{content:"";position:absolute;left:0;right:0;top:50%;height:44px;transform:translateY(-50%)}
  .linked__btn,.asess__r button{height:40px;padding:0 15px}
  .ahelp a{padding:12px 15px}

  .msg__thread .chat{height:calc(100vh - 250px);min-height:400px}

  .wcards{grid-template-columns:1fr;gap:9px}
  .wcard__n{font-size:33px}
  .wtx__r{padding:12px 13px;gap:10px}
  .wtx__b b{font-size:12.5px}

  .aform__row{grid-template-columns:1fr}
  .adanger__row .btn{width:100%}
  .savebar{left:14px;right:14px;transform:translateY(90px);width:auto;gap:10px;flex-wrap:wrap}
  .savebar.show{transform:none}
  .savebar > span{flex:1}
  .savebar__btns{margin-left:auto}
}

/* ════════════════════════════════════════════════════════════
   PREMIUM  (/premium) — satış sayfası, yassı ve iddialı
   ════════════════════════════════════════════════════════════ */
.pm{max-width:var(--maxw);margin:0 auto;width:100%}

/* ── kampanya çubuğu ── */
.pm__strip{
  display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;
  margin:0 calc(var(--pad)*-1);padding:11px var(--pad);
  background:var(--orange);color:var(--ink);text-align:center;
}
.pm__strip b{font-size:13.5px;font-weight:800;letter-spacing:-.01em}
.pm__strip span{font-size:12.5px;font-weight:600;color:rgba(0,0,0,.72)}
.pm__strip em{
  font-style:normal;font-family:var(--f-mono);font-weight:700;color:var(--ink);
  background:rgba(0,0,0,.14);border-radius:4px;padding:2px 7px;margin-left:3px;
}

/* ── hero ── */
.pm__hero{
  position:relative;isolation:isolate;overflow:hidden;text-align:center;
  margin:0 calc(var(--pad)*-1);padding:clamp(38px,6vw,74px) var(--pad) clamp(30px,4vw,46px);
  background:var(--bg-2);
}
.pm__shots{
  position:absolute;inset:0;z-index:-2;display:grid;grid-template-columns:repeat(6,1fr);gap:6px;
  padding:6px;opacity:.30;filter:blur(2px) saturate(.85);
}
.pm__shots span{display:block;overflow:hidden;border-radius:4px}
.pm__shots img{width:100%;height:100%;object-fit:cover}
.pm__hero::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(120% 90% at 50% 30%,rgba(4,4,4,.72),var(--bg) 78%);
}
.pm__hero .eyebrow{color:var(--orange)}
.pm__hero h1{
  font-family:var(--f-display);font-size:clamp(30px,5.4vw,58px);font-weight:800;letter-spacing:-.04em;
  line-height:1.02;margin:10px 0 0;text-wrap:balance;
}
.pm__hero h1 em{font-style:normal;color:var(--orange)}

.pm__price{display:flex;align-items:baseline;justify-content:center;gap:12px;flex-wrap:wrap;margin:26px 0 0}
.pm__price s{font-size:17px;color:#5C5B59;text-decoration-thickness:2px}
.pm__price b{
  font-family:var(--f-display);font-size:clamp(38px,6.6vw,64px);font-weight:800;
  letter-spacing:-.045em;line-height:1;color:#fff;
}
.pm__off{
  align-self:center;background:var(--red);color:#fff;border-radius:4px;padding:5px 10px;
  font-size:12px;font-weight:800;
}
.pm__day{margin:10px 0 0;font-size:13.5px;color:var(--muted)}
.pm__cta{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:24px}
.pm__cta .btn{height:50px;min-width:190px;font-size:15px}
.pm__active{
  display:inline-flex;align-items:center;gap:8px;margin:20px 0 0;padding:8px 14px;border-radius:6px;
  background:var(--o08);color:var(--orange);font-size:12.5px;font-weight:700;
}
.pm__active svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:3}

/* ── rakam şeridi ── */
.pm__nums{
  display:grid;grid-template-columns:repeat(4,1fr);
  margin:0 calc(var(--pad)*-1) 40px;padding:22px var(--pad);
  background:var(--panel);border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.pm__nums span{display:grid;justify-items:center;gap:3px;text-align:center;padding:0 8px}
.pm__nums b{font-family:var(--f-display);font-size:clamp(22px,3vw,30px);font-weight:800;letter-spacing:-.03em;color:var(--orange);line-height:1}
.pm__nums small{font-size:11.5px;color:var(--muted)}

/* ── kilitli arşiv ── */
.pm__lockcount{font-family:var(--f-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--dim)}
.pmlock{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}
.pmlock__t{
  position:relative;display:block;aspect-ratio:16/9;border-radius:6px;overflow:hidden;background:var(--surface);
}
.pmlock__t img{width:100%;height:100%;object-fit:cover;filter:blur(7px) brightness(.4) saturate(.7);transform:scale(1.1)}
.pmlock__t i{position:absolute;inset:0;display:grid;place-items:center;color:var(--orange)}
.pmlock__t i svg{width:20px;height:20px}
.pmlock__t em{
  position:absolute;right:7px;bottom:6px;font-style:normal;font-family:var(--f-mono);
  font-size:10.5px;color:#8E8D8B;
}
.pmlock__more{
  display:grid;place-content:center;justify-items:center;gap:2px;background:var(--o08);
  box-shadow:inset 0 0 0 1px var(--o40);transition:background .18s;
}
.pmlock__more:hover{background:var(--o14)}
.pmlock__more b{font-family:var(--f-display);font-size:22px;font-weight:800;letter-spacing:-.03em;color:var(--orange)}
.pmlock__more small{font-size:11px;color:var(--muted)}

/* ── süre kademeleri ── */
.tiers{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:18px}
@media (max-width:1080px){.tiers{grid-template-columns:repeat(2,1fr)}}
.tier{
  position:relative;display:grid;gap:5px;justify-items:start;text-align:left;padding:18px 18px 16px;
  border-radius:10px;background:var(--surface);box-shadow:inset 0 0 0 1px transparent;
  transition:.18s var(--ease);
}
.tier:hover{background:var(--raised)}
.tier.on{background:var(--o08);box-shadow:inset 0 0 0 2px var(--orange)}
.tier.best{padding-top:26px}
.tier__flag{
  position:absolute;top:0;left:0;right:0;padding:5px 10px;border-radius:10px 10px 0 0;
  background:var(--orange);color:var(--ink);font-family:var(--f-mono);font-size:9.5px;
  font-weight:700;letter-spacing:.14em;text-align:center;
}
.tier:not(.best) .tier__flag{background:var(--raised);color:var(--orange)}
.tier.on:not(.best) .tier__flag{background:var(--orange);color:var(--ink)}
.tier__len{font-family:var(--f-mono);font-size:11.5px;letter-spacing:.16em;color:var(--muted)}
.tier__per{font-family:var(--f-display);font-size:29px;font-weight:800;letter-spacing:-.035em;line-height:1.05;color:#fff}
.tier.on .tier__per{color:var(--orange)}
.tier__old{display:flex;align-items:center;gap:8px}
.tier__old s{font-size:12.5px;color:#5C5B59}
.tier__old em{font-style:normal;font-size:10.5px;font-weight:800;color:var(--red);background:rgba(255,31,61,.14);border-radius:3px;padding:2px 6px}
.tier__tot{font-size:11.5px;color:var(--dim);margin-top:2px}
.tier__pick{
  display:flex;align-items:center;gap:8px;margin-top:9px;padding-top:11px;width:100%;
  border-top:1px solid var(--line);font-size:12px;font-weight:700;color:var(--muted);
}
.tier__pick i{width:15px;height:15px;border-radius:50%;box-shadow:inset 0 0 0 1.5px #2E2E2C;transition:.16s}
.tier.on .tier__pick{color:var(--orange)}
.tier.on .tier__pick i{box-shadow:inset 0 0 0 5px var(--orange)}

/* satın al satırı */
.pm__buy{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:26px}
.pm__buy .btn{height:52px;min-width:280px;font-size:15px}
.pm__buy span{font-size:12px;color:var(--dim)}

/* güvence şeridi */
.pm__trust{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);
  border-radius:10px;overflow:hidden;
}
.pm__trust span{
  display:grid;grid-template-columns:auto 1fr;align-items:center;gap:4px 11px;
  padding:14px 15px;background:var(--panel);
}
.pm__trust svg{grid-row:span 2;width:18px;height:18px;stroke:var(--orange);fill:none;stroke-width:1.7}
.pm__trust b{font-size:12.5px;font-weight:700;color:#E9E8E6}
.pm__trust small{font-size:11px;color:var(--dim)}

/* ── karşılaştırma ── */
.mx{border-radius:10px;overflow:hidden;background:var(--panel)}
.mx__h,.mx__r{display:grid;grid-template-columns:minmax(0,1fr) 130px 130px;align-items:center}
.mx__h{background:var(--surface)}
.mx__h span{
  padding:11px 16px;font-family:var(--f-mono);font-size:10.5px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--dim);
}
.mx__h span.on{color:var(--orange);background:var(--o08)}
.mx__r span{padding:12px 16px;font-size:13.5px;color:#CDCCCA;border-top:1px solid var(--line)}
.mx__r span:not(:first-child){text-align:center}
.mx__r span.on{background:var(--o08)}
.mx__r:hover span{background:rgba(255,255,255,.02)}
.mx__r:hover span.on{background:var(--o14)}
.mx__y{display:inline-grid;place-items:center;width:20px;height:20px;border-radius:50%;background:var(--o14);color:var(--orange)}
.mx__y svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:3}
.mx__n{font-style:normal;color:#3A3A38}
.mx__t{font-style:normal;font-size:12.5px;font-weight:700;color:#E9E8E6}

/* ── ödeme kutusu ── */
.pay{display:grid;gap:8px;margin-bottom:16px}
.pay__m{
  display:flex;align-items:center;gap:11px;padding:12px 13px;border-radius:10px;text-align:left;
  background:var(--surface);box-shadow:inset 0 0 0 1px transparent;transition:.16s var(--ease);
}
.pay__m i{width:17px;height:17px;flex:none;border-radius:50%;box-shadow:inset 0 0 0 1.5px #2E2E2C;transition:.16s}
.pay__m.on{background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40)}
.pay__m.on i{box-shadow:inset 0 0 0 5px var(--orange)}
.pay__m:hover{background:var(--raised)}
.pay__m b{display:block;font-size:13.5px;font-weight:700;color:#E9E8E6}
.pay__m small{display:block;font-size:11.5px;color:var(--dim);margin-top:1px}

/* ── mobil sabit satın alma çubuğu ── */
.pm__bar{display:none}

/* ── tablet ── */
@media (max-width:1100px){
  .pmlock{grid-template-columns:repeat(3,1fr)}
  .pmlock__t:nth-child(7){display:none}
  .pm__trust{grid-template-columns:repeat(2,1fr)}
}

/* ── mobil ── */
@media (max-width:700px){
  .pm__strip{gap:7px;padding:9px var(--pad);flex-direction:column}
  .pm__strip b{font-size:13px}
  .pm__hero{padding:32px var(--pad) 28px}
  .pm__shots{grid-template-columns:repeat(3,1fr);opacity:.22}
  .pm__hero h1{font-size:29px;letter-spacing:-.035em}
  .pm__price{gap:9px;margin-top:20px}
  .pm__price b{font-size:42px}
  .pm__price s{font-size:15px}
  .pm__cta{gap:8px;margin-top:20px}
  .pm__cta .btn{flex:1;min-width:0;justify-content:center;height:48px;font-size:14px}

  .pm__nums{grid-template-columns:1fr 1fr;gap:18px 0;padding:18px var(--pad);margin-bottom:30px}

  .pmlock{grid-template-columns:repeat(2,1fr);gap:7px}
  .pmlock__t:nth-child(7){display:block}

  .tiers{grid-template-columns:1fr;gap:8px}
  .tier{grid-template-columns:1fr auto;align-items:center;padding:15px 15px 13px;column-gap:12px}
  .tier.best{padding-top:24px}
  .tier__len{grid-column:1;font-size:11px}
  .tier__per{grid-column:2;grid-row:1/span 2;font-size:25px;text-align:right}
  .tier__old{grid-column:1;grid-row:2}
  .tier__tot{grid-column:1/-1}
  .tier__pick{grid-column:1/-1}

  .pm__buy{display:none}
  .pm__trust{grid-template-columns:1fr;gap:1px}

  .mx__h,.mx__r{grid-template-columns:minmax(0,1fr) 78px 88px}
  .mx__h span,.mx__r span{padding:11px 12px;font-size:12.5px}
  .mx__t{font-size:11.5px}

  .pm__bar{
    position:fixed;left:0;right:0;bottom:0;z-index:60;display:flex;align-items:center;gap:12px;
    padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    background:rgba(9,9,9,.94);backdrop-filter:blur(14px);border-top:1px solid var(--line);
  }
  .pm__bar span{display:grid;flex:1;min-width:0}
  .pm__bar b{font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.03em;color:#fff;line-height:1.1}
  .pm__bar small{font-size:10.5px;color:var(--dim);margin-top:2px}
  .pm__bar .btn{height:44px;padding:0 20px}
  .pm{padding-bottom:24px}
  body.has-buybar footer{padding-bottom:76px}
}

/* ════════════════════════════════════════════════════════════
   CANLI YAYIN  (/canli-yayin)
   ════════════════════════════════════════════════════════════ */
.lp{max-width:var(--maxw);margin:0 auto;width:100%}
.lp__stage.is-off .lp__poster{filter:grayscale(.55) brightness(.42)}
.lp__stage.is-playing .lp__poster{animation:lpBreathe 9s ease-in-out infinite alternate}
@keyframes lpBreathe{to{transform:scale(1.035)}}
.lp__live.off{background:rgba(10,10,10,.82);color:var(--muted)}
.lp__live.off i{background:var(--dim);animation:none}
.lp__over .btn{margin-top:5px}
.lp__q button.on{background:var(--orange);color:var(--ink)}
.lp__id .verif{width:13px;height:13px}
.lpcam.on .lpcam__ph{box-shadow:inset 0 0 0 2px var(--orange)}
.lpcam.on .lpcam__ph img{filter:brightness(1)}
.lpcam.lock .lpcam__ph img{filter:brightness(.34) grayscale(.5)}
.lpcam.on b{color:var(--orange)}
.lpslot.today{box-shadow:inset 0 0 0 1px var(--o40);background:var(--o08)}
.lpslot__tag.prem{background:var(--o14);color:var(--orange)}
.lpslot__tag.live{background:var(--red);color:#fff}
.lc{
  display:flex;flex-direction:column;height:calc(100vh - 108px);max-height:720px;min-height:420px;
  border-radius:12px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);overflow:hidden;
}
.lc__dot.on{background:var(--red);animation:beat 1.5s infinite}
.lc__slow.on{background:var(--o14);color:var(--orange)}
.lc__m.mod b{color:var(--orange)}
.lc__m.mod em{
  font-style:normal;margin-left:5px;padding:1px 5px;border-radius:3px;
  background:var(--orange);color:var(--ink);font-size:9px;font-weight:700;vertical-align:1px;
}
.lc__m.me b{color:#7BE39A}
.lc__m.sys{padding:7px 9px;border-radius:7px;background:var(--surface);color:var(--dim);font-size:12px}
.lp__chat .lc{position:relative}
.lc__gate .btn{width:100%;justify-content:center;height:40px}

/* ── tablet ── */
@media (max-width:1180px){
}
@media (max-width:1000px){
  .lc{height:auto;max-height:none;min-height:0}
  .lp__tabs button.on{background:var(--orange);color:var(--ink)}
  .lp__pane.on{display:block}
  .lp__chat.on{margin-bottom:26px}
}

/* ── mobil ── */
@media (max-width:700px){
  .lp__acts .btn{flex:1;justify-content:center;height:42px}
}

/* ════════════════════════════════════════════════════════════
   MODEL PROFİL SAYFASI
   ════════════════════════════════════════════════════════════ */
.mp{max-width:var(--maxw,1360px);margin:0 auto;width:100%}

/* ══ HERO — sinematik kapak ══ */
.mp__hero{position:relative;margin:0 calc(var(--pad)*-1) 0;padding:0 var(--pad);isolation:isolate}
.mp__cover{
  position:absolute;inset:0 0 auto 0;height:clamp(230px,30vw,360px);overflow:hidden;z-index:-1;
}
.mp__cover>img{
  width:100%;height:100%;object-fit:cover;object-position:center 32%;
  filter:saturate(1.06) brightness(.72);
}
/* kapak altına taşan blur ışık — hero'yu sayfaya bağlar */
.mp__coverblur{
  position:absolute;inset:auto 0 -46% 0;height:70%;width:100%;object-fit:cover;
  filter:blur(58px) saturate(1.7) brightness(.55);opacity:.85;transform:scaleY(-1);
}
.mp__coverfade{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(4,4,4,.72) 0%,rgba(4,4,4,.25) 30%,rgba(4,4,4,.7) 68%,#040404 100%),
    radial-gradient(80% 90% at 12% 92%,rgba(255,144,0,.2),transparent 62%),
    radial-gradient(120% 120% at 50% 20%,transparent 45%,rgba(0,0,0,.55) 100%);
}
.mp__crumb{position:relative;z-index:3;padding-top:16px;margin:0}
.mp__crumb a,.mp__crumb span{text-shadow:0 1px 10px rgba(0,0,0,.95)}

.mp__badges{position:absolute;top:16px;right:var(--pad);z-index:3;display:flex;gap:7px}
.mp__rank{
  height:28px;padding:0 12px;border-radius:6px;display:inline-flex;align-items:center;
  background:var(--orange);color:var(--ink);font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}
/* demo: ziyaretçi ↔ model görünümü */
.mp__owner{
  height:28px;padding:0 13px;border-radius:6px;
  background:rgba(0,0,0,.6);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);
  color:#DAD9D7;font-size:11px;font-weight:700;transition:.16s;white-space:nowrap;
}
.mp__owner:hover{color:#fff}
.mp__owner.on{background:var(--orange);color:var(--ink);box-shadow:none}

.mp__headwrap{position:relative;z-index:3;padding-top:clamp(96px,13vw,168px)}

/* ── kimlik satırı ── */
.mp__head{display:flex;align-items:flex-end;gap:20px;flex-wrap:wrap;padding-bottom:2px}
.mp__ava{position:relative;flex:none;width:136px;height:136px}
.mp__ava img{
  width:100%;height:100%;border-radius:22px;object-fit:cover;
  box-shadow:0 0 0 4px var(--bg),0 0 0 5px rgba(255,144,0,.28),0 24px 50px -24px #000;
}
.mp__on{
  position:absolute;right:6px;bottom:6px;width:16px;height:16px;border-radius:50%;
  background:#4CC26B;border:3px solid var(--bg);
}
/* hızlı bilgi çipleri */
.mp__chips{display:flex;gap:7px;flex-wrap:wrap;margin-top:11px}
.mp__chips span{
  display:inline-flex;align-items:center;gap:6px;height:27px;padding:0 11px;border-radius:6px;
  background:rgba(0,0,0,.45);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  font-size:11.5px;font-weight:600;color:#C9C8C6;white-space:nowrap;
}
.mp__chips svg{width:12px;height:12px;stroke:var(--orange);fill:none;stroke-width:2}
.mp__id{flex:1;min-width:0;padding-bottom:6px}
.mp__name{
  display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin:0;
  font-family:var(--f-display);font-size:clamp(23px,3vw,34px);font-weight:800;letter-spacing:-.03em;
}
.mp__name .verif{width:19px;height:19px}
.mp__new{
  height:22px;padding:0 9px;border-radius:4px;display:inline-flex;align-items:center;
  background:#fff;color:#000;font-family:var(--f-body);font-size:10.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}
.mp__handle{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:7px 0 0;font-size:13.5px;color:var(--dim)}
.mp__handle i{width:3px;height:3px;border-radius:50%;background:#2A2A2A}
.mp__status{display:inline-flex;align-items:center;gap:6px;font-weight:600}
.mp__status::before{content:"";width:6px;height:6px;border-radius:50%;background:#3A3A3A}
.mp__status.on{color:#7ADB95}
.mp__status.on::before{background:#4CC26B;animation:beat 2s infinite}

.mp__acts{display:flex;align-items:center;gap:8px;padding-bottom:6px}
.mp__acts .btn{height:42px;padding:0 26px}
.mp__ico{
  width:42px;height:42px;flex:none;border-radius:9px;display:grid;place-items:center;
  background:var(--raised);color:var(--muted);transition:.16s;
}
.mp__ico svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8}
.mp__ico:hover{background:#1E1E1E;color:#fff}
.mp__ico.on{background:var(--o14);color:var(--orange)}
.mp__ico.on svg{fill:var(--orange);stroke:var(--orange)}

/* ── bio ── */
.mp__bio{margin:18px 0 0;font-size:14px;line-height:1.7;color:var(--muted);max-width:70ch}

/* ════════════════ GÖNDERİ OLUŞTURUCU ════════════════ */
.composer{
  border-radius:14px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
  padding:14px;transition:box-shadow .2s;
}
.composer.open{box-shadow:inset 0 0 0 1px var(--o40)}
.composer__top{display:flex;gap:11px;align-items:flex-start}
.composer__top img{width:40px;height:40px;border-radius:50%;object-fit:cover;flex:none}
.composer__ph{
  flex:1;height:40px;padding:0 14px;border-radius:10px;text-align:left;
  background:var(--raised);color:var(--dim);font-size:13.5px;transition:.15s;
}
.composer__ph:hover{background:#1E1E1E;color:var(--muted)}
.composer__top textarea{
  flex:1;min-height:76px;padding:11px 13px;border-radius:10px;resize:vertical;
  background:var(--surface);box-shadow:inset 0 0 0 1px var(--line);border:0;
  color:var(--text);font:inherit;font-size:13.5px;line-height:1.55;outline:none;transition:box-shadow .16s;
}
.composer__top textarea:focus{box-shadow:inset 0 0 0 1.5px var(--o40)}

.composer__media{display:grid;grid-template-columns:repeat(auto-fill,minmax(96px,1fr));gap:8px;margin:11px 0 0 51px}
.cmedia{position:relative;aspect-ratio:1;border-radius:9px;overflow:hidden;background:var(--surface)}
.cmedia img,.cmedia video{width:100%;height:100%;object-fit:cover}
.cmedia__tag{
  position:absolute;left:5px;bottom:5px;font-size:9.5px;font-weight:800;letter-spacing:.06em;
  background:rgba(0,0,0,.78);color:var(--orange);border-radius:4px;padding:2px 6px;
}
.cmedia__x{
  position:absolute;top:5px;right:5px;width:22px;height:22px;border-radius:50%;
  display:grid;place-items:center;background:rgba(0,0,0,.72);color:#fff;transition:.15s;
}
.cmedia__x svg{width:11px;height:11px}
.cmedia__x:hover{background:var(--red,#FF1F3D)}

.composer__bar{display:flex;align-items:center;gap:7px;flex-wrap:wrap;margin:12px 0 0 51px}
.composer__act{
  display:inline-flex;align-items:center;gap:7px;height:34px;padding:0 12px;border-radius:8px;
  background:var(--raised);color:#B9B8B6;font-size:12.5px;font-weight:600;transition:.16s;
}
.composer__act svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.9}
.composer__act:hover{background:#1E1E1E;color:#fff}
.composer__act.on{background:var(--o14);color:var(--orange);box-shadow:inset 0 0 0 1px var(--o40)}
.composer__act.on svg{fill:var(--orange);stroke:none}
.composer__act:disabled{opacity:.45;cursor:not-allowed}
.composer__price{
  display:inline-flex;align-items:center;gap:6px;height:34px;padding:0 11px;border-radius:8px;
  background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40);
  font-size:12px;font-weight:700;color:var(--orange);
}
.composer__price input{
  width:44px;background:none;border:0;outline:none;color:var(--orange);
  font:inherit;font-size:13px;font-weight:800;text-align:right;
}
.composer__count{margin-left:auto;font-size:11px;color:var(--dim);font-variant-numeric:tabular-nums}
.composer__cancel{height:34px;padding:0 12px;border-radius:8px;font-size:12.5px;font-weight:600;color:var(--dim);transition:.15s}
.composer__cancel:hover{color:#fff;background:var(--raised)}
.composer__go{height:34px;padding:0 18px;font-size:13px;gap:8px}
.composer__go:disabled{opacity:.45;cursor:not-allowed}

/* ════════════════ GÖNDERİ IZGARASI ════════════════ */
.pfilter{display:flex;align-items:center;gap:7px;flex-wrap:wrap;margin:18px 0 14px}
.pfilter .chip{display:inline-flex;align-items:center;gap:7px}
.pfilter .chip i{
  font-style:normal;font-size:10.5px;font-weight:800;color:var(--dim);
  background:rgba(0,0,0,.28);border-radius:4px;padding:1px 6px;
}
.pfilter .chip.on{background:var(--orange);color:var(--ink);font-weight:700}
.pfilter .chip.on i{background:rgba(0,0,0,.2);color:var(--ink)}
.pfilter__count{margin-left:auto;font-size:12px;color:var(--dim)}

.tiles{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.tilewrap{position:relative}
.tile{
  position:relative;display:block;width:100%;aspect-ratio:1;border-radius:10px;overflow:hidden;
  background:var(--surface);box-shadow:inset 0 0 0 1px var(--line);
  transition:transform .22s var(--ease),box-shadow .22s;
}
.tile:hover{transform:translateY(-2px);box-shadow:inset 0 0 0 1px var(--o40)}
.tile img,.tile video{width:100%;height:100%;object-fit:cover;transition:transform .45s var(--ease),filter .3s}
.tile:hover img,.tile:hover video{transform:scale(1.05)}
.tile.locked img,.tile.locked video{filter:blur(18px) brightness(.4) saturate(.6);transform:scale(1.12)}
.tile.skel{background:linear-gradient(100deg,#101011 30%,#151516 50%,#101011 70%);background-size:200% 100%;animation:shimmer 1.2s linear infinite;box-shadow:none}
/* medyasız gönderi karosu */
.tile--text{display:grid;place-items:center;padding:16px;background:var(--raised)}
.tile__txt{
  font-size:13px;line-height:1.5;color:#CDCCCA;text-align:center;
  display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;
}
.pmodal__media.is-empty{background:var(--surface);padding:32px}
.pmodal__notext{margin:0;font-size:16px;line-height:1.6;color:#CDCCCA;text-align:center;max-width:46ch}
@keyframes shimmer{to{background-position:-200% 0}}

.tile__pin{position:absolute;top:7px;left:7px;z-index:2;font-size:12px;filter:drop-shadow(0 1px 4px rgba(0,0,0,.8))}
.tile__badges{position:absolute;top:7px;right:7px;z-index:2;display:flex;gap:5px}
.tile__badges i{
  width:22px;height:22px;border-radius:6px;display:grid;place-items:center;
  background:rgba(0,0,0,.62);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);color:#fff;
}
.tile__badges svg{width:12px;height:12px}

/* hover'da sayaçlar */
.tile__hover{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:18px;
  background:rgba(0,0,0,.52);opacity:0;transition:opacity .2s;
  font-size:13px;font-weight:800;color:#fff;
}
.tile:hover .tile__hover{opacity:1}
.tile__hover span{display:inline-flex;align-items:center;gap:6px}
.tile__hover svg{width:16px;height:16px;stroke:currentColor;fill:currentColor}

/* kilitli karo */
.tile__lock{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
  color:var(--orange);text-align:center;
}
.tile__lock svg{width:20px;height:20px;fill:var(--orange);margin-bottom:3px}
.tile__lock b{font-size:12.5px;font-weight:800}
.tile__lock small{font-size:10.5px;color:#9C9B99}

/* sahip menüsü */
.tile__menu{
  position:absolute;bottom:7px;right:7px;z-index:3;width:26px;height:26px;border-radius:7px;
  display:grid;place-items:center;background:rgba(0,0,0,.66);color:#fff;transition:.15s;cursor:pointer;
}
.tile__menu:hover{background:var(--orange);color:var(--ink)}
.tile__menu svg{width:14px;height:14px}
.tile__pop{
  position:absolute;bottom:38px;right:6px;z-index:6;min-width:180px;padding:5px;
  background:var(--panel);border-radius:10px;
  box-shadow:inset 0 0 0 1px var(--line),0 22px 44px -18px #000;
}
.tile__pop button{
  display:block;width:100%;text-align:left;padding:9px 11px;border-radius:6px;
  font-size:12.5px;font-weight:600;color:#CDCCCA;transition:.14s;
}
.tile__pop button:hover{background:var(--raised);color:#fff}
.tile__pop .danger{color:#FF6A6A}
.tile__pop .danger:hover{background:rgba(255,31,61,.12);color:#FF8080}

.spin--line{border-color:rgba(255,255,255,.25);border-top-color:var(--orange)}

/* ════════════════ GÖNDERİ DETAY MODALI ════════════════ */
.pmodal{
  position:fixed;inset:0;z-index:105;display:grid;place-items:center;padding:24px;
  background:rgba(2,2,2,.9);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  animation:reelsIn .22s var(--ease);
}
.pmodal__box{
  position:relative;display:grid;grid-template-columns:minmax(0,1fr) 340px;
  width:min(1080px,100%);max-height:min(86vh,760px);border-radius:16px;overflow:hidden;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line),0 40px 90px -30px #000;
}
.pmodal__x{
  position:absolute;top:12px;right:12px;z-index:10;width:34px;height:34px;border-radius:9px;
  display:grid;place-items:center;background:rgba(0,0,0,.6);color:#fff;transition:.15s;
}
.pmodal__x:hover{background:var(--orange);color:var(--ink)}
.pmodal__x svg{width:17px;height:17px}

.pmodal__media{position:relative;background:#000;display:grid;place-items:center;min-height:320px}
.pmodal__media img,.pmodal__media video{width:100%;height:100%;max-height:min(86vh,760px);object-fit:contain}
.pmodal__media img.is-locked{filter:blur(28px) brightness(.36) saturate(.6);transform:scale(1.06)}
.pmodal__lock{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:11px;text-align:center;padding:24px;
}
.pmodal__lock>svg{width:30px;height:30px;fill:var(--orange)}
.pmodal__lock b{font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em}
.pmodal__nav{
  position:absolute;top:50%;translate:0 -50%;width:38px;height:38px;border-radius:50%;
  display:grid;place-items:center;background:rgba(0,0,0,.55);color:#fff;transition:.15s;
}
.pmodal__nav:hover{background:var(--orange);color:var(--ink)}
.pmodal__nav:disabled{opacity:.25;pointer-events:none}
.pmodal__nav svg{width:18px;height:18px}
.pmodal__nav.prev{left:12px}
.pmodal__nav.next{right:12px}
.pmodal__dots{position:absolute;left:50%;bottom:12px;translate:-50% 0;display:flex;gap:5px}
.pmodal__dots i{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.35)}
.pmodal__dots i.on{background:var(--orange)}

.pmodal__side{display:flex;flex-direction:column;min-width:0;border-left:1px solid var(--line)}
.pmodal__who{display:flex;align-items:center;gap:11px;padding:16px 16px 13px;border-bottom:1px solid var(--line-soft)}
.pmodal__who img{width:40px;height:40px;border-radius:50%;object-fit:cover}
.pmodal__who b{display:flex;align-items:center;gap:5px;font-size:14px;font-weight:700}
.pmodal__who .verif{width:13px;height:13px}
.pmodal__who small{display:block;font-size:11.5px;color:var(--dim);margin-top:2px}
.pmodal__text{margin:0;padding:14px 16px;font-size:13.5px;line-height:1.6;color:#CDCCCA}
.pmodal__acts{display:flex;align-items:center;gap:5px;padding:0 12px 12px;border-bottom:1px solid var(--line-soft)}
.pmodal__acts button{
  display:inline-flex;align-items:center;gap:7px;height:34px;padding:0 11px;border-radius:8px;
  color:var(--muted);font-size:12.5px;font-weight:600;transition:.15s;
}
.pmodal__acts button:hover{background:var(--raised);color:#fff}
.pmodal__acts button.on{color:var(--orange)}
.pmodal__acts button.on svg{fill:var(--orange);stroke:var(--orange)}
.pmodal__acts svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8}
.pmodal__share{margin-left:auto}
.pmodal__cmts{flex:1;overflow-y:auto;padding:14px 16px;display:grid;gap:13px;align-content:start}
.pmc{display:flex;gap:10px}
.pmc img{width:30px;height:30px;border-radius:50%;object-fit:cover;flex:none}
.pmc p{margin:0;font-size:12.5px;line-height:1.55;color:var(--muted)}
.pmc b{color:#EDECEA;font-weight:700;margin-right:5px}
.pmodal__form{display:flex;gap:8px;padding:12px 14px;border-top:1px solid var(--line)}
.pmodal__form input{
  flex:1;min-width:0;height:38px;padding:0 13px;border-radius:9px;background:var(--surface);
  box-shadow:inset 0 0 0 1px var(--line);border:0;color:var(--text);font:inherit;font-size:13px;outline:none;
}
.pmodal__form input:focus{box-shadow:inset 0 0 0 1.5px var(--o40)}
.pmodal__form .btn{height:38px;padding:0 16px;font-size:12.5px}

/* model paneli kartı */
.talk--owner{background:linear-gradient(168deg,rgba(255,255,255,.05),var(--panel) 46%);box-shadow:inset 0 0 0 1px var(--line)}
.talk--owner::before{display:none}

/* ── iki sütun ── */
.mp__grid{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:28px;align-items:start;margin-top:22px}
.mp__main{min-width:0}
.mp__side{position:sticky;top:86px}

/* ════════════════ SOHBET KARTI (kredili iletişim) ════════════════ */
.talk{
  padding:18px;border-radius:14px;position:relative;overflow:hidden;
  background:linear-gradient(168deg,rgba(255,144,0,.09),var(--panel) 46%);
  box-shadow:inset 0 0 0 1px var(--o40);
}
.talk::before{
  content:"";position:absolute;inset:auto auto -40% -20%;width:180px;height:180px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,144,0,.14),transparent 68%);pointer-events:none;
}
.talk__top{display:flex;align-items:center;gap:11px;position:relative}
.talk__ava{position:relative;flex:none}
.talk__ava img{width:44px;height:44px;border-radius:12px;object-fit:cover}
.talk__ava i{
  position:absolute;right:-3px;bottom:-3px;width:12px;height:12px;border-radius:50%;
  background:#4CC26B;border:2.5px solid var(--panel);
}
.talk__who b{display:block;font-size:15px;font-weight:800;letter-spacing:-.015em}
.talk__who small{display:block;font-size:11.5px;color:var(--dim);margin-top:2px}

/* tarife satırı */
.talk__rate{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin:16px 0 0;
  background:var(--line);border-radius:9px;overflow:hidden;position:relative;
}
.talk__rate span{
  display:flex;flex-direction:column;align-items:center;gap:2px;padding:11px 4px;
  background:var(--panel);font-size:10.5px;color:var(--dim);font-weight:600;text-align:center;
}
.talk__rate b{font-size:16px;font-weight:800;color:var(--orange);letter-spacing:-.02em;font-variant-numeric:tabular-nums}

/* bakiye */
.talk__bal{display:flex;align-items:center;gap:11px;margin-top:12px;padding:11px 12px;border-radius:10px;background:var(--raised);position:relative}
.talk__balico{
  flex:none;width:34px;height:34px;border-radius:9px;display:grid;place-items:center;
  background:var(--o14);color:var(--orange);
}
.talk__balico svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:2}
.talk__bal b{display:block;font-size:14px;font-weight:800;letter-spacing:-.01em;font-variant-numeric:tabular-nums}
.talk__bal small{display:block;font-size:11px;color:var(--dim);margin-top:1px}
.talk__bal button{
  margin-left:auto;flex:none;height:30px;padding:0 12px;border-radius:7px;
  background:var(--o14);color:var(--orange);font-size:12px;font-weight:700;transition:.15s;
}
.talk__bal button:hover{background:var(--orange);color:var(--ink)}

/* ana buton */
.talk__go{
  display:flex;align-items:center;justify-content:center;gap:9px;width:100%;height:48px;margin-top:12px;
  border-radius:11px;background:var(--orange);color:var(--ink);font-size:14px;font-weight:800;
  transition:.18s var(--ease);position:relative;
}
.talk__go svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2}
.talk__go:hover{filter:brightness(1.08);transform:translateY(-1px);box-shadow:0 14px 32px -14px var(--orange)}
.talk__note{margin:13px 0 0;font-size:11.5px;line-height:1.6;color:var(--dim);position:relative}

/* kimlik satırındaki mesaj butonu */
.mp__msg{
  display:inline-flex;align-items:center;gap:9px;height:42px;padding:0 20px;border-radius:10px;
  background:var(--orange);color:var(--ink);font-size:13.5px;font-weight:800;transition:.16s var(--ease);
}
.mp__msg svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:2}
.mp__msg:hover{filter:brightness(1.08);transform:translateY(-1px);box-shadow:0 12px 28px -14px var(--orange)}

/* ── sekmeler ── */
.mp__tabs{
  display:flex;gap:4px;margin:26px 0 0;padding-bottom:0;
  border-bottom:1px solid var(--line);overflow-x:auto;scrollbar-width:none;
}
.mp__tabs::-webkit-scrollbar{display:none}
.mp__tabs button{
  position:relative;flex:none;display:inline-flex;align-items:center;gap:8px;
  height:46px;padding:0 18px;font-size:14px;font-weight:700;color:var(--dim);transition:color .15s;
}
.mp__tabs button:hover{color:var(--muted)}
.mp__tabs button.on{color:var(--text)}
.mp__tabs button.on::after{
  content:"";position:absolute;left:12px;right:12px;bottom:-1px;height:2px;
  background:var(--orange);border-radius:2px 2px 0 0;
}
.mp__pane{padding-top:26px}

/* ── fotoğraf ızgarası ── */
.mp__photos{display:grid;grid-template-columns:repeat(auto-fill,minmax(178px,1fr));gap:12px}
.mph{
  position:relative;aspect-ratio:4/5;border-radius:10px;overflow:hidden;background:var(--surface);
  box-shadow:inset 0 0 0 1px var(--line);transition:transform .22s var(--ease);display:block;
}
.mph:hover{transform:translateY(-3px)}
.mph img{width:100%;height:100%;object-fit:cover;transition:transform .45s var(--ease),filter .3s}
.mph:hover img{transform:scale(1.05)}
.mph.locked img{filter:blur(16px) brightness(.42) saturate(.6);transform:scale(1.1)}
.mph__lock{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;
  font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--orange);
}
.mph__lock svg{width:22px;height:22px;fill:var(--orange)}

/* büyütme */
.lightbox{
  position:fixed;inset:0;z-index:100;display:grid;place-items:center;padding:26px;
  background:rgba(2,2,2,.92);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  animation:reelsIn .22s var(--ease);
}
.lightbox img{max-width:min(92vw,760px);max-height:88vh;border-radius:12px;object-fit:contain}
.lightbox__x{
  position:absolute;top:20px;right:20px;width:42px;height:42px;border-radius:10px;
  display:grid;place-items:center;background:rgba(255,255,255,.12);color:#fff;
}
.lightbox__x svg{width:18px;height:18px}
.lightbox__x:hover{background:var(--orange);color:var(--ink)}

/* ── hakkında ── */
.mp__info{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1px;
  background:var(--line);border:1px solid var(--line);border-radius:12px;overflow:hidden;
}
.mp__info div{background:var(--panel);padding:16px 18px;font-size:13.5px;color:var(--text)}
.mp__info b{
  display:block;margin-bottom:5px;font-size:11px;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--dim);
}

/* ── mobil alt çubuk (profil) ── */
.mp__bar{display:none}

/* ════════════════ SOHBET PANELİ ════════════════ */
.chat{
  position:fixed;right:22px;bottom:22px;z-index:90;width:min(380px,calc(100vw - 44px));
  height:min(560px,calc(100vh - 120px));display:flex;flex-direction:column;
  border-radius:16px;overflow:hidden;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line),0 40px 90px -30px #000;
  animation:chatIn .26s var(--ease);
}
@keyframes chatIn{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1;transform:none}}

.chat__head{display:flex;align-items:center;gap:11px;padding:13px 14px;border-bottom:1px solid var(--line)}
.chat__who{display:flex;align-items:center;gap:10px;min-width:0}
.chat__ava{position:relative;flex:none}
.chat__ava img{width:38px;height:38px;border-radius:50%;object-fit:cover}
.chat__ava i{position:absolute;right:-1px;bottom:-1px;width:11px;height:11px;border-radius:50%;background:#4CC26B;border:2.5px solid var(--panel)}
.chat__who b{display:flex;align-items:center;gap:5px;font-size:13.5px;font-weight:700}
.chat__who .verif{width:13px;height:13px}
.chat__who small{display:block;font-size:11px;color:var(--dim);margin-top:1px}
.chat__credits{
  display:inline-flex;align-items:center;gap:6px;margin-left:auto;height:28px;padding:0 10px;border-radius:6px;
  background:var(--raised);font-size:12px;color:var(--muted);font-weight:600;
}
.chat__credits svg{width:14px;height:14px;stroke:var(--orange);fill:none;stroke-width:2}
.chat__credits b{color:var(--orange);font-weight:800}
.chat__x{width:32px;height:32px;flex:none;border-radius:7px;display:grid;place-items:center;color:var(--dim);transition:.15s}
.chat__x:hover{background:var(--raised);color:#fff}
.chat__x svg{width:16px;height:16px}

.chat__list{flex:1;overflow-y:auto;padding:14px;display:flex;flex-direction:column;gap:12px;scrollbar-width:thin}
.chat__note{
  margin:0 auto 4px;font-size:10.5px;color:var(--dim);text-align:center;
  background:var(--raised);border-radius:99px;padding:5px 12px;
}
.chat__note b{color:var(--orange);font-weight:800}

.bub{display:flex;gap:8px;max-width:86%}
.bub--her{align-self:flex-start}
.bub--me{align-self:flex-end;flex-direction:row-reverse}
.bub__ava{width:26px;height:26px;border-radius:50%;object-fit:cover;flex:none;align-self:flex-end}
.bub__body{padding:9px 12px;border-radius:14px;background:var(--raised);font-size:13px;line-height:1.5}
.bub--her .bub__body{border-bottom-left-radius:5px}
.bub--me .bub__body{background:var(--orange);color:var(--ink);border-bottom-right-radius:5px}
.bub__body p{margin:0}
.bub__time{display:block;margin-top:5px;font-size:10px;opacity:.62}
.bub--me .bub__time{text-align:right}
.bub__tip{display:flex;align-items:center;gap:7px;font-size:13px;font-weight:700}
.bub__tip svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.bub__media{position:relative;margin:-3px -4px 7px;border-radius:10px;overflow:hidden;max-width:240px}
.bub__media img{width:100%;display:block}
.bub__media.locked img{filter:blur(20px) brightness(.4)}
.bub__unlock{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;
  color:var(--orange);font-size:11.5px;font-weight:800;
}
.bub__unlock svg{width:20px;height:20px;fill:var(--orange)}
.bub__typing{display:flex;gap:4px;padding:12px 14px}
.bub__typing i{width:6px;height:6px;border-radius:50%;background:var(--dim);animation:typ 1.2s infinite}
.bub__typing i:nth-child(2){animation-delay:.15s}
.bub__typing i:nth-child(3){animation-delay:.3s}
@keyframes typ{0%,60%,100%{opacity:.3;transform:translateY(0)}30%{opacity:1;transform:translateY(-4px)}}

/* bahşiş şeridi */
.chat__tips{
  display:flex;align-items:center;gap:6px;padding:10px 12px;
  border-top:1px solid var(--line);background:var(--surface);
  animation:tipsIn .2s var(--ease);
}
@keyframes tipsIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.chat__tips button{
  flex:1;height:36px;border-radius:9px;background:var(--raised);color:var(--orange);
  font-size:12.5px;font-weight:800;transition:.16s var(--ease);
}
.chat__tips button:hover{background:var(--orange);color:var(--ink);transform:translateY(-1px)}
.chat__tipx{flex:none !important;width:32px;color:var(--dim) !important;font-size:17px !important;background:transparent !important}
.chat__tipx:hover{color:#fff !important;transform:none !important}

/* mesaj alanı — tek kapsül, içinde eylemler */
.chat__form{
  display:flex;align-items:center;gap:6px;padding:11px 12px;
  padding-bottom:12px;border-top:1px solid var(--line);
}
.chat__act{
  width:38px;height:38px;flex:none;border-radius:10px;display:grid;place-items:center;
  background:var(--raised);color:var(--muted);transition:.16s var(--ease);position:relative;
}
.chat__act svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.85}
.chat__act:hover{background:#1E1E1E;color:var(--orange-hi);transform:translateY(-1px)}
.chat__act.on{background:var(--o14);color:var(--orange);box-shadow:inset 0 0 0 1px var(--o40)}
.chat__form input{
  flex:1;min-width:0;height:40px;padding:0 15px;border-radius:11px;background:var(--surface);
  box-shadow:inset 0 0 0 1px var(--line);border:0;color:var(--text);font:inherit;font-size:13px;
  outline:none;transition:box-shadow .16s;
}
.chat__form input::placeholder{color:var(--dim)}
.chat__form input:focus{box-shadow:inset 0 0 0 1.5px var(--o40)}
.chat__send{
  width:40px;height:40px;flex:none;border-radius:11px;display:grid;place-items:center;
  background:var(--orange);color:var(--ink);transition:.16s var(--ease);
}
.chat__send svg{width:16px;height:16px}
.chat__send:not(:disabled):hover{filter:brightness(1.1);transform:translateY(-1px);box-shadow:0 10px 22px -12px var(--orange)}
.chat__send:disabled{background:var(--raised);color:var(--dim);cursor:not-allowed}

/* ════════════════ KREDİ MODALI ════════════════ */
.modal{
  position:fixed;inset:0;z-index:110;display:grid;place-items:center;padding:20px;
  background:rgba(2,2,2,.82);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  animation:reelsIn .22s var(--ease);
}
.modal__box{
  position:relative;width:min(460px,100%);padding:30px 26px 24px;border-radius:16px;text-align:center;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line),0 40px 90px -30px #000;
}
.modal__x{position:absolute;top:14px;right:14px;width:32px;height:32px;border-radius:8px;display:grid;place-items:center;color:var(--dim);transition:.15s}
.modal__x:hover{background:var(--raised);color:#fff}
.modal__x svg{width:16px;height:16px}
.modal__ico{
  display:grid;place-items:center;width:46px;height:46px;margin:0 auto 14px;border-radius:12px;
  background:var(--o14);color:var(--orange);
}
.modal__ico svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2}
.modal__box h3{margin:0;font-family:var(--f-display);font-size:21px;font-weight:800;letter-spacing:-.02em}
.modal__sub{margin:9px 0 20px;font-size:13px;color:var(--muted);line-height:1.6}
.modal__sub b{color:var(--orange)}
.packs{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-bottom:18px}
.pack{
  position:relative;padding:16px 10px 13px;border-radius:11px;background:var(--raised);
  box-shadow:inset 0 0 0 1px transparent;transition:.16s;
}
.pack:hover{background:#1E1E1E}
.pack.on{background:var(--o08);box-shadow:inset 0 0 0 1.5px var(--orange)}
.pack b{display:block;font-family:var(--f-display);font-size:26px;font-weight:800;letter-spacing:-.03em}
.pack small{display:block;font-size:10.5px;color:var(--dim);margin-top:1px}
.pack__cr{display:block;margin-top:7px;font-size:10px;color:var(--orange);font-weight:700}
.pack__price{display:block;margin-top:8px;font-size:13.5px;font-weight:800;color:#CDCCCA}
.pack.on .pack__price{color:#fff}
.pack__flag{
  position:absolute;top:-8px;left:50%;translate:-50% 0;white-space:nowrap;
  font-size:9px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  background:var(--orange);color:var(--ink);border-radius:3px;padding:2px 7px;
}
.modal__cta{width:100%;justify-content:center;height:48px;gap:9px}
.modal__cta.is-busy{opacity:.9}
.spin{
  width:15px;height:15px;border-radius:50%;border:2px solid rgba(0,0,0,.25);
  border-top-color:var(--ink);animation:spin .7s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.modal__fine{margin:12px 0 0;font-size:11px;color:var(--dim)}

/* ════════════════════════════════════════════════════════════
   DİKEY MOD (Reels / Shorts)
   ════════════════════════════════════════════════════════════ */
.reels{
  position:fixed;inset:0;z-index:100;background:#000;
  display:flex;flex-direction:column;
  animation:reelsIn .28s var(--ease);
}
@keyframes reelsIn{from{opacity:0;transform:scale(.98)}to{opacity:1;transform:none}}

.reels__top{
  position:absolute;top:0;left:0;right:0;z-index:20;
  display:flex;align-items:center;gap:12px;padding:14px 16px;
  padding-top:calc(14px + env(safe-area-inset-top));
  background:linear-gradient(180deg,rgba(0,0,0,.75),transparent);
}
.reels__x,.reels__mute{
  width:38px;height:38px;flex:none;border-radius:10px;display:grid;place-items:center;
  background:rgba(255,255,255,.12);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  color:#fff;transition:.15s;
}
.reels__x:hover,.reels__mute:hover{background:rgba(255,255,255,.22)}
.reels__x svg,.reels__mute svg{width:18px;height:18px}
.reels__mute{margin-left:auto}
.reels__title{font-size:13px;font-weight:700;letter-spacing:.04em;color:#fff;text-shadow:0 1px 8px rgba(0,0,0,.8)}

/* sağ kenardaki ilerleme çubukları */
.reels__rail{
  position:absolute;left:14px;top:50%;translate:0 -50%;z-index:20;
  display:flex;flex-direction:column;gap:5px;
}
.reels__rail i{width:3px;height:16px;border-radius:99px;background:rgba(255,255,255,.25);transition:.25s var(--ease)}
.reels__rail i.on{background:var(--orange);height:26px}

/* masaüstü ok tuşları */
.reels__nav{
  position:absolute;right:24px;z-index:20;width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;color:#fff;
  background:rgba(255,255,255,.12);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  transition:.15s;
}
.reels__nav svg{width:20px;height:20px}
.reels__nav:hover{background:var(--orange);color:var(--ink)}
.reels__nav:disabled{opacity:.25;pointer-events:none}
.reels__nav.up{top:calc(50% - 56px)}
.reels__nav.down{top:calc(50% + 12px)}

/* kaydırma rayı */
.reels__track{
  flex:1;overflow-y:auto;overflow-x:hidden;
  scroll-snap-type:y mandatory;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;overscroll-behavior:contain;
}
.reels__track::-webkit-scrollbar{display:none}

/* track yüksekliği neyse reel de o — böylece snap tam oturur */
.reel{height:100%;width:100%;scroll-snap-align:start;scroll-snap-stop:always;display:grid;place-items:center;padding:0}
.reel__stage{
  position:relative;height:100%;width:100%;max-width:min(56vh,520px);
  overflow:hidden;background:#050505;display:grid;place-items:center;
}
/* arkada bulanık dolgu (dikey olmayan ekranlar için) */
.reel__bg{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:blur(40px) brightness(.4) saturate(1.4);transform:scale(1.15);
}
.reel__img{position:relative;width:100%;height:100%;object-fit:cover}
.reel__img.locked{filter:blur(22px) brightness(.4)}
.reel__stage::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,.55) 0%,transparent 24%,transparent 52%,rgba(0,0,0,.86) 100%);
}

/* premium kilidi */
.reel__lock{
  position:absolute;inset:0;z-index:5;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:8px;text-align:center;padding:26px;
}
.reel__lock>svg{width:28px;height:28px;fill:var(--orange)}
.reel__lock b{font-family:var(--f-display);font-size:20px;font-weight:800;letter-spacing:-.02em}
.reel__lock p{margin:0 0 6px;font-size:12.5px;color:var(--muted)}

/* sağ aksiyon barı */
.reel__acts{
  position:absolute;right:10px;bottom:88px;z-index:10;
  display:flex;flex-direction:column;align-items:center;gap:18px;
}
.reel__ch{position:relative;display:block;margin-bottom:6px}
.reel__ch img{width:46px;height:46px;border-radius:50%;object-fit:cover;border:2px solid #fff}
.reel__ch i{
  position:absolute;left:50%;bottom:-8px;translate:-50% 0;
  width:20px;height:20px;border-radius:50%;background:var(--orange);color:var(--ink);
  display:grid;place-items:center;font-style:normal;font-size:14px;font-weight:800;line-height:1;
  border:2px solid #050505;
}
.reel__act{
  display:flex;flex-direction:column;align-items:center;gap:5px;
  color:#fff;font-size:11.5px;font-weight:700;text-shadow:0 1px 6px rgba(0,0,0,.9);transition:.15s;
}
.reel__act svg{width:28px;height:28px;stroke:currentColor;fill:none;stroke-width:1.8;filter:drop-shadow(0 2px 6px rgba(0,0,0,.7))}
.reel__act:hover{transform:scale(1.08)}
.reel__act.on{color:var(--orange)}
.reel__act.on svg{fill:var(--orange);stroke:var(--orange)}

/* alt bilgi */
.reel__info{position:absolute;left:16px;right:76px;bottom:26px;z-index:10}
.reel__who{
  display:inline-flex;align-items:center;gap:6px;font-size:15px;font-weight:800;color:#fff;
  letter-spacing:-.01em;text-shadow:0 1px 8px rgba(0,0,0,.9);
}
.reel__who .verif{width:14px;height:14px}
.reel__desc{
  margin:8px 0 0;font-size:13.5px;line-height:1.45;color:#EDECEA;text-shadow:0 1px 8px rgba(0,0,0,.9);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.reel__tags{margin:7px 0 0;display:flex;flex-wrap:wrap;gap:8px}
.reel__tags span{font-size:12.5px;font-weight:700;color:var(--orange-hi);text-shadow:0 1px 8px rgba(0,0,0,.9)}
.reel__meta{
  display:inline-flex;align-items:center;gap:7px;margin:10px 0 0;
  font-size:11.5px;font-weight:600;color:#CFCECC;
  background:rgba(0,0,0,.45);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  border-radius:5px;padding:5px 10px;
}
.reel__meta svg{width:13px;height:13px;stroke:var(--orange);fill:none;stroke-width:2}
.reel__open{
  display:inline-flex;align-items:center;gap:7px;margin-top:12px;height:34px;padding:0 14px;border-radius:8px;
  background:rgba(255,255,255,.14);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  color:#fff;font-size:12.5px;font-weight:700;transition:.16s;
}
.reel__open svg{width:14px;height:14px}
.reel__open:hover{background:var(--orange);color:var(--ink)}

/* kaydırma ipucu */
.reels__hint{
  position:absolute;left:50%;bottom:26px;translate:-50% 0;z-index:15;
  display:flex;align-items:center;gap:8px;padding:8px 14px;border-radius:99px;
  background:rgba(0,0,0,.6);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  color:#fff;font-size:12px;font-weight:600;pointer-events:none;
  animation:hintUp 1.8s var(--ease) infinite;
}
.reels__hint svg{width:15px;height:15px}
@keyframes hintUp{0%,100%{transform:translateY(0);opacity:.9}50%{transform:translateY(-7px);opacity:1}}

/* ════════════════════ ÜYELİK PLANLARI ════════════════════ */
/* aylık ↔ yıllık anahtarı */
.billing{display:inline-flex;align-items:center;gap:3px;background:var(--raised);border-radius:8px;padding:3px;flex-wrap:wrap}
.billing button{
  display:inline-flex;align-items:center;gap:6px;padding:8px 13px;border-radius:6px;
  font-size:12.5px;font-weight:700;color:var(--dim);transition:.16s;white-space:nowrap;
}
.billing button:hover{color:var(--muted)}
.billing button[aria-pressed="true"]{background:#242424;color:#fff}
.billing em{
  font-style:normal;font-size:9.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  background:var(--orange);color:var(--ink);border-radius:3px;padding:2px 5px;
}

.plans{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px}
.plan{
  position:relative;display:flex;flex-direction:column;padding:26px 24px 24px;
  border-radius:14px;box-shadow:inset 0 0 0 1px var(--line);
  background:rgba(9,9,9,.78);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  transition:transform .2s var(--ease),box-shadow .2s;
}
.plan:hover{transform:translateY(-3px)}
.plan--main{
  background:linear-gradient(180deg,rgba(255,144,0,.09),var(--panel) 42%);
  box-shadow:inset 0 0 0 1px var(--o40),0 0 60px -26px rgba(255,144,0,.7);
}
.plan__flag{
  position:absolute;top:14px;right:14px;
  font-size:9.5px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  background:var(--orange);color:var(--ink);border-radius:4px;padding:3px 8px;
}
.plan__label{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--dim)}
.plan--main .plan__label{color:var(--orange)}
.plan__price{
  display:flex;align-items:baseline;gap:5px;margin:14px 0 0;
  font-family:var(--f-display);font-size:38px;font-weight:800;letter-spacing:-.04em;line-height:1;
}
.plan__price span{font-family:var(--f-body);font-size:13px;font-weight:600;color:var(--dim);letter-spacing:0}
.plan__note{margin:7px 0 0;font-size:11.5px;color:var(--dim);letter-spacing:.01em}
.plan--main .plan__note{color:var(--orange)}
.plan ul{list-style:none;padding:0;margin:20px 0 24px;display:grid;gap:11px}
.plan li{display:flex;gap:10px;align-items:flex-start;font-size:13.5px;color:var(--muted);line-height:1.45}
.plan li svg{width:15px;height:15px;flex:none;margin-top:2px;stroke:var(--orange);stroke-width:2.4;fill:none}
.plan--main li{color:#CDCCCA}
.plan .btn{margin-top:auto;justify-content:center;padding:13px}

/* ════════════════════ SSS ════════════════════ */
.faq{max-width:820px;border-top:1px solid var(--line)}
.faq__item{border-bottom:1px solid var(--line)}
.faq__q{
  width:100%;display:flex;align-items:center;gap:16px;padding:18px 4px;text-align:left;
  font-size:15px;font-weight:700;letter-spacing:-.01em;color:#EDECEA;transition:color .15s;
}
.faq__q:hover{color:var(--orange)}
.faq__q i{
  flex:none;width:24px;height:24px;border-radius:6px;background:var(--raised);
  display:grid;place-items:center;position:relative;transition:.2s;
}
.faq__q i::before,.faq__q i::after{
  content:"";position:absolute;background:var(--orange);border-radius:2px;transition:.25s var(--ease);
}
.faq__q i::before{width:11px;height:2px}
.faq__q i::after{width:2px;height:11px}
.faq__item.open .faq__q i{background:var(--orange)}
.faq__item.open .faq__q i::before{background:var(--ink)}
.faq__item.open .faq__q i::after{height:0;background:var(--ink)}
.faq__item.open .faq__q{color:var(--orange)}
.faq__n{font-size:11.5px;font-weight:800;color:var(--dim);font-variant-numeric:tabular-nums;margin-left:auto}
.faq__a{
  overflow:hidden;max-height:0;transition:max-height .35s var(--ease),opacity .25s;
  opacity:0;color:var(--muted);font-size:13.5px;line-height:1.65;max-width:64ch;
}
.faq__item.open .faq__a{max-height:240px;opacity:1;padding-bottom:20px}

/* ════════════════════ KAPANIŞ CTA ════════════════════ */
/* kapanış bandı — arka plan görseli burada belirgin */
.cta{
  position:relative;margin:64px calc(var(--pad)*-1) 0;padding:76px var(--pad);
  border-top:1px solid var(--line);overflow:hidden;text-align:center;isolation:isolate;
}
.cta::before{
  content:"";position:absolute;inset:0;z-index:-2;
  background:url("/img/bg.jpg") 50% 42% / cover no-repeat;
  opacity:.55;transform:scale(1.04);
}
.cta::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(70% 90% at 50% 46%,transparent 8%,rgba(4,4,4,.55) 52%,rgba(4,4,4,.94) 100%),
    linear-gradient(180deg,rgba(4,4,4,.82) 0%,rgba(4,4,4,.5) 40%,rgba(4,4,4,.88) 100%);
}
.cta__inner{position:relative;max-width:620px;margin:0 auto}
.cta h2{
  font-family:var(--f-display);font-weight:800;font-size:clamp(26px,3.6vw,42px);
  letter-spacing:-.035em;line-height:1.05;margin:14px 0 0;
}
.cta h2 em{font-style:normal;color:var(--orange)}
.cta p{color:var(--muted);font-size:14px;margin:14px auto 0;max-width:46ch}
.newsform{display:flex;gap:8px;max-width:440px;margin:26px auto 0}
.newsform input{
  flex:1;height:46px;padding:0 16px;border-radius:9px;background:var(--surface);
  border:1px solid var(--line);color:var(--text);font:inherit;font-size:13.5px;outline:none;min-width:0;
  transition:border-color .16s;
}
.newsform input:focus{border-color:var(--o40)}
.newsform .btn{height:46px;padding:0 24px}
.cta__note{margin-top:14px;font-size:11.5px;color:var(--dim)}
.cta__trust{display:flex;justify-content:center;gap:22px;flex-wrap:wrap;margin-top:26px}
.cta__trust span{display:inline-flex;align-items:center;gap:7px;font-size:12px;color:var(--dim);font-weight:600}
.cta__trust svg{width:14px;height:14px;stroke:var(--orange);fill:none;stroke-width:2}

/* ════════════════════ FOOTER ════════════════════ */
footer{
  border-top:1px solid var(--line);
  background:rgba(9,9,9,.8);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
}
.foot{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:34px;padding:48px var(--pad) 36px}
.foot__brand p{color:var(--dim);font-size:12.5px;line-height:1.6;max-width:32ch;margin:14px 0 0}
.foot__soc{display:flex;gap:8px;margin-top:18px}
.foot__soc a{
  width:34px;height:34px;border-radius:8px;background:var(--raised);
  display:grid;place-items:center;color:var(--muted);transition:.16s;
}
.foot__soc a:hover{background:var(--orange);color:var(--ink)}
.foot__soc svg{width:16px;height:16px;fill:currentColor}
.foot__col b{display:block;font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--dim);margin-bottom:16px}
.foot__col a{display:block;color:var(--muted);font-size:13.5px;padding:5px 0;transition:color .15s}
.foot__col a:hover{color:var(--orange)}
.foot__col a em{
  font-style:normal;font-size:9px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  background:var(--o14);color:var(--orange);border-radius:3px;padding:2px 5px;margin-left:6px;
}
.foot__base{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  padding:18px var(--pad);border-top:1px solid var(--line-soft);
  font-size:12px;color:var(--dim);
}
.foot__base .age{
  display:inline-flex;align-items:center;gap:7px;font-weight:700;color:var(--muted);
}
.foot__base .age i{
  display:grid;place-items:center;width:24px;height:24px;border-radius:5px;
  background:var(--raised);color:var(--orange);font-size:10px;font-weight:800;
}
.foot__lang{display:inline-flex;align-items:center;gap:6px;background:var(--raised);border-radius:6px;padding:6px 11px;font-size:12px;font-weight:600;color:var(--muted)}
.foot__lang svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2}

.scrim{position:fixed;inset:0;background:rgba(0,0,0,.65);backdrop-filter:blur(2px);z-index:35;opacity:0;pointer-events:none;transition:opacity .3s}
.top-btn{
  position:fixed;right:22px;bottom:22px;z-index:34;width:42px;height:42px;border-radius:50%;
  background:var(--orange);color:var(--ink);display:grid;place-items:center;
  opacity:0;pointer-events:none;translate:0 8px;transition:.3s var(--ease);box-shadow:0 12px 28px -12px var(--orange);
}
.top-btn.show{opacity:1;pointer-events:auto;translate:0 0}

/* ════════════════════════════ RESPONSIVE — native app hissi ════════════════════════════ */

/* ── ≤1020: widget'lar ve footer daralır ── */
@media (max-width:1020px){
  .duo{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
  .cattiles{grid-template-columns:repeat(4,1fr)}
  .cats__grid{grid-template-columns:repeat(3,1fr)}
  .cats__hot{grid-template-columns:1fr 1fr}
  .cats__hot .cathero:last-child{display:none}
  /* video detay: sıradaki liste alta iner */
  .vp__grid{grid-template-columns:1fr;gap:34px}
  .vp__side{position:static}
  .upnext{grid-template-columns:repeat(auto-fill,minmax(280px,1fr))}
  /* model profili: sohbet kartı içeriğin üstüne çıkar */
  .mp__grid{grid-template-columns:1fr;gap:20px}
  .mp__side{position:static;order:-1}
}

/* ── ≤900: çekmece menü + dokunma hedefleri büyür ── */
@media (max-width:900px){
  :root{--pad:16px}
  .rail{
    transform:translateX(-100%);width:min(84vw,320px);
    box-shadow:26px 0 60px -30px #000;
    padding-top:env(safe-area-inset-top);
  }
  body.nav-open .rail{transform:none}
  body.nav-open .scrim{opacity:1;pointer-events:auto}
  .shell{margin-left:0}
  .hd__burger{display:grid}
  .hd__logo{display:flex}
  .hd__in{padding-top:env(safe-area-inset-top);height:calc(60px + env(safe-area-inset-top))}
  .hd__qwrap{max-width:none}
  .hd__cred small{display:none}
  /* çekmece içi: parmak dostu satırlar */
  .navlink{padding:12px;font-size:15px}
  .navlink svg{width:19px;height:19px}
  .sub{padding:10px 12px;font-size:14px}
  .sub__ava img{width:32px;height:32px}
  .house{padding:16px}
  .house__cta{padding:12px}
  .me{padding:10px 8px}
}

/* ── ≤700: telefon düzeni ── */
@media (max-width:700px){
  body{font-size:14.5px}

  /* header: tek aksiyon satırı + altında tam genişlik arama */
  .hd__in{flex-wrap:wrap;height:auto;gap:7px;padding-top:calc(9px + env(safe-area-inset-top));padding-bottom:9px}
  .hd__qwrap{order:10;flex-basis:100%}
  .hd__q{height:42px}
  .hd__qk{display:none}
  .hd__logo{margin-right:auto;gap:7px}
  .hd__logo .logo__mark{height:31px}
  .hd__logo .logo__word{height:14px}
  .hd__acts{gap:3px;margin-left:0}
  .hd__cred{display:none}                        /* bakiye avatar menüsünde */
  .hd__ic[aria-label^="Mesajlar"]{display:none}  /* mesaj avatar menüsünde */
  .hd__sep{display:none}
  .hd__cta{padding:0 12px}
  .hd__cta span{display:none}
  .hd__cta svg{width:14px;height:14px}
  /* paneller mobilde header'ın hemen altına sabitlenir */
  .hd__pop{position:fixed;top:calc(env(safe-area-inset-top) + 106px);left:12px;right:12px;width:auto}
  .hd__menu{position:fixed;top:calc(env(safe-area-inset-top) + 106px);right:12px;width:min(258px,calc(100vw - 24px))}

  /* bölüm ritmi */
  .section{padding-top:38px}
  .section__head{gap:12px;margin-bottom:16px}
  .section__title{font-size:20px}
  .section__title::before{height:20px}

  /* sekmeler: sarmak yerine yatay kaydırma — segmented control hissi */
  .vidbar{width:100%}
  .tabs{
    flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;
    margin:0 -2px;padding:2px;-webkit-overflow-scrolling:touch;max-width:100%;
  }
  .tabs::-webkit-scrollbar{display:none}
  .chip{padding:10px 16px;flex:none;font-size:13px}
  .sort{margin-left:auto;padding:9px 13px}

  /* ══ mobil hero: üstte tam görsel, altında metin ══ */
  /* mobilde sabit arka plan pahalı — daha soluk ve sabitlemesiz */
  body::before{background-attachment:scroll;opacity:.22;background-position:50% 12%}
  .rail{-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);background:rgba(9,9,9,.94)}
  .band{-webkit-backdrop-filter:none;backdrop-filter:none;background:rgba(6,6,6,.8)}
  .cta{padding:56px var(--pad)}
  .cta::before{opacity:.42}

  :root{--m-img:min(82vw,310px)}
  .hero{margin-top:10px;border-radius:14px;height:auto;min-height:0;display:block}
  .hero__thumbs{display:none}

  /* görsel bloğu akışta — kendi yüksekliği var */
  .hero__bg{position:relative;inset:auto;height:var(--m-img);width:100%}
  .hslide__main{
    width:100%;transform:scale(1.02);
    -webkit-mask-image:linear-gradient(180deg,#000 74%,transparent 100%);
    mask-image:linear-gradient(180deg,#000 74%,transparent 100%);
  }
  .hslide__amb{display:none}
  /* karartma yalnızca görselin alt kenarında — üst kısım tertemiz */
  .hero__grade,
  .hero__grade.is-soft{
    height:var(--m-img);bottom:auto;
    background:linear-gradient(0deg,rgba(4,4,4,.96) 0%,rgba(4,4,4,.5) 16%,rgba(4,4,4,.08) 32%,transparent 46%);
  }
  .hero__grain{height:var(--m-img);inset:0 -40% auto -40%}
  .hero__flags{gap:6px}
  .hero__kicker{font-size:10px;padding:3px 8px}
  .hero__meta{display:none}
  .hero__social{display:none}
  /* canlı yayın şeridi: 2 satır */
  .hero__ctl{padding:0 16px 12px}
  .lv{padding:16px var(--pad) 18px}
  .lv__act .btn{flex:1;justify-content:center;padding:13px 14px;font-size:13.5px}
  /* metin bloğu: görselin altında, akışta, düz koyu zemin */
  .hero__body{position:relative;min-height:0;padding:0;margin-top:-26px}
  .hcontent{
    position:relative;left:auto;right:auto;top:auto;bottom:auto;translate:0 0;
    max-width:none;padding:0 16px 4px;
  }
  .hcontent:not(.on){display:none}    /* akışta olduğu için tamamen gizlenir */
  .hcontent>*{opacity:1;translate:0 0;filter:none;transition:none}
  .hero__flags{gap:7px}
  .hero__title{font-size:clamp(24px,6.8vw,32px);margin:10px 0 0;text-shadow:none;line-height:1.06}
  .hero__text{
    font-size:12.5px;max-width:none;color:#A9A8A6;margin-top:8px;text-shadow:none;line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  }
  .hero__kicker{background:var(--raised);border-color:transparent}
  .hero__perks span{font-size:10.5px;padding:4px 10px}
  .hero__cta{margin-top:15px;gap:8px}
  .hero__cta .btn{flex:1;padding:13px 14px;font-size:13px;justify-content:center}
  .hero__mark{display:none}
  /* slayt kontrolleri metnin altında, ayrı satır */
  .hero__ctl{padding:14px 16px 12px}
  .hero__num{display:none}
  .hnav{width:38px;height:38px}

  /* videolar: 2 sütun yoğun grid */
  .vids{grid-template-columns:repeat(2,1fr)!important;gap:18px 10px}
  .vid__frame{border-radius:5px}
  .vid__title{font-size:12.5px}
  .vid__meta a{font-size:11px}
  .vid__stats{font-size:10.5px;gap:4px}
  .badge-time{font-size:10.5px}
  .load-more .btn{width:100%;padding:14px}

  /* modeller: 2 sütun */
  .grid-models{grid-template-columns:repeat(2,1fr);gap:18px 10px}
  .model__ph{border-radius:9px}
  .model__name{font-size:13.5px}
  .model__handle{font-size:11px}
  .model__rank,.model__new,.model__on{font-size:9px;padding:2px 6px}
  .model__go{height:32px;font-size:12px;left:8px;right:8px;bottom:8px}

  /* takvim + top liste */
  .panel{border-radius:12px}
  .panel__head{padding:14px 15px 12px}
  .panel__head b{font-size:15px}
  .days{gap:4px;padding:0 11px 12px}
  .day{padding:8px 0 7px}
  .day b{font-size:13px}
  .day span{font-size:9px}
  .top{grid-template-columns:20px 76px 1fr auto;padding:9px 14px;gap:10px}
  .top__n{font-size:13px}
  .top__info b{font-size:12.5px}
  .top__val b{font-size:12px}

  /* ══ video detay — mobil ══ */
  .vp{padding-top:12px}
  .crumb{font-size:11.5px;margin-bottom:10px}
  .crumb a:first-child{display:inline}

  /* oynatıcı: sadeleştirilmiş kontroller */
  .pl__amb{display:none}
  /* oyuncular: tek satır yatay kaydırma */
  .vp__cast{align-items:flex-start;flex-direction:column;gap:10px}
  .vp__castrow{
    flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;width:100%;
    margin:0 calc(var(--pad)*-1);padding:0 var(--pad) 4px;
  }
  .vp__castrow::-webkit-scrollbar{display:none}
  .castchip{flex:none}
  .pl__stage{border-radius:10px;box-shadow:0 0 0 1px var(--line)}
  .pl__play{width:62px;height:62px}
  .pl__play svg{width:25px;height:25px}
  .pl__reels{top:10px;right:10px;height:38px;padding:0 13px;font-size:12px}
  .pl__badges{top:10px;left:10px}
  .pl__ctl{padding:0 10px 10px}
  /* seek: dokunması kolay */
  .pl__seek{height:22px}
  .pl__seek::before,.pl__buf,.pl__prog{height:5px}
  .pl__prog i{opacity:1;width:14px;height:14px;right:-7px}
  .pl__row{gap:2px;margin-top:0}
  .pl__ctl .pl__b{width:40px;height:40px}
  .pl__ctl .pl__b svg{width:19px;height:19px}
  .pl__time{font-size:12px;padding:0 4px}
  .pl__vol,.pl__chip,.pl__b[aria-label="Mini oynatıcı"]{display:none}   /* mobilde gereksiz */
  .pl__b[aria-label="Tam ekran"]{display:grid}

  /* bölümler: kaydırılabilir olduğu belli olsun */
  .chaps{
    padding-top:12px;
    scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;
    -webkit-mask-image:linear-gradient(90deg,#000 86%,transparent);
    mask-image:linear-gradient(90deg,#000 86%,transparent);
  }
  .chap{height:38px;font-size:12px;scroll-snap-align:start}

  .vp__title{font-size:18px;margin-top:16px;line-height:1.28}
  .vp__bar{display:block;margin-top:10px;padding-bottom:14px}
  .vp__nums{font-size:12.5px;gap:8px}

  /* aksiyonlar: 5 sütunlu ikon ızgarası — native app hissi */
  .vp__acts{
    display:grid;grid-template-columns:repeat(5,1fr);gap:6px;
    margin:14px 0 0;width:100%;overflow:visible;
  }
  .vact{
    flex-direction:column;justify-content:center;gap:6px;height:auto;min-height:62px;
    padding:10px 2px;border-radius:13px;font-size:10px;font-weight:700;line-height:1.15;
    text-align:center;letter-spacing:.01em;
  }
  .vact svg{width:22px;height:22px}
  .vact:active{transform:scale(.94);background:#232322}
  .vact.on:active{background:var(--o14)}
  .vact--muted{width:auto;padding:10px 2px}
  .vact--muted::after{content:"Bildir"}

  /* kanal kartı */
  .vp__ch{gap:12px;padding:14px 0}
  .vp__chid img{width:42px;height:42px}
  .vp__chid b{font-size:14.5px}
  .vp__chacts{width:100%;margin-left:0;gap:8px}
  .vp__chacts .btn{flex:1;justify-content:center;height:42px}

  .vp__desc{font-size:13px;padding:14px 14px 18px;max-height:104px}
  .vp__more{right:12px;bottom:8px;padding:8px 0 8px 26px;font-size:12.5px}
  .vp__reelscta{margin-bottom:16px;padding:13px 14px}

  /* yorumlar */
  .cmt{margin-top:26px}
  .cmt__head b{font-size:15.5px}
  .cmt__sorts button{padding:6px 10px;font-size:11.5px}
  .cmt__form{gap:8px;flex-wrap:wrap}
  .cmt__form img{width:34px;height:34px}
  .cmt__form input{flex:1;min-width:0;height:46px;font-size:16px}   /* 16px: iOS zoom'u engeller */
  .cmt__form .btn{width:100%;height:44px;order:3}
  .cmt__sorts button{padding:9px 12px;font-size:12px}
  .cmt__item img{width:34px;height:34px}
  .cmt__acts{gap:4px}
  .cmt__acts button{min-height:38px;padding:8px 11px;font-size:12.5px}
  .cmt__acts svg{width:15px;height:15px}
  /* etiketler: dokunulur çipler */
  .tagx{height:34px;padding:0 13px;font-size:12px;border-radius:8px}
  /* sıradaki satırları: tam satır dokunma alanı */
  .un{padding:4px;margin:-4px;border-radius:10px}
  .un:active{background:var(--surface)}

  /* ══ dikey mod — mobil ══ */
  .reels__nav{display:none}
  .reels__rail{left:8px}
  .reel__stage{max-width:none}
  .reel__acts{bottom:calc(104px + env(safe-area-inset-bottom));right:8px;gap:17px}
  .reel__act svg{width:27px;height:27px}
  .reel__act{font-size:11px}
  .reel__ch img{width:44px;height:44px}
  .reel__info{left:14px;right:68px;bottom:calc(24px + env(safe-area-inset-bottom))}
  .reel__desc{font-size:13px}
  .reel__who{font-size:14.5px;padding:4px 0}
  .reel__open{height:40px;padding:0 16px;font-size:13px}
  .reels__top{padding:12px 12px;padding-top:calc(12px + env(safe-area-inset-top))}
  .reels__x,.reels__mute{width:42px;height:42px}
  .reels__hint{bottom:calc(22px + env(safe-area-inset-bottom))}
  .vp__ch{gap:12px;padding:14px 0}
  .vp__chid img{width:40px;height:40px}
  .vp__chacts{width:100%;margin-left:0}
  .vp__chacts .btn{flex:1;justify-content:center}
  .vp__desc{font-size:13px;padding:14px;max-height:96px}
  .cmt__form .btn{padding:0 14px}
  .un{grid-template-columns:132px minmax(0,1fr)}
  .upnext{grid-template-columns:1fr}

  /* ══ kategoriler + arşiv — mobil ══ */
  .arch,.cats{padding-top:14px}
  .catrow{gap:6px}
  .catpill{height:38px;padding:0 13px;font-size:12.5px;gap:7px}
  .catpill svg{width:15px;height:15px}
  .cattiles{grid-template-columns:1fr 1fr;gap:9px;margin-top:14px}
  .cat__ico{width:36px;height:36px;border-radius:10px}
  .cat__ico svg{width:17px;height:17px}
  .cat__body b{font-size:12.5px}
  .cat__body small{font-size:10.5px}
  .archnote{padding:11px 12px;gap:10px;margin-bottom:14px;flex-wrap:wrap}
  .archnote__ico{width:34px;height:34px}
  .archnote b{font-size:13.5px}
  .archnote__x{width:100%;order:5;margin-left:0;height:34px}

  .cats__head{margin-bottom:18px;gap:14px}
  .cats__title{font-size:26px}
  .cats__sub{font-size:12.5px}
  .cats__tools{width:100%;gap:8px}
  .cats__search{flex-basis:100%;min-width:0;height:42px}
  .cats__tools .tabs{width:100%;overflow-x:auto;scrollbar-width:none;flex-wrap:nowrap}
  .cats__tools .tabs::-webkit-scrollbar{display:none}
  .cats__tools .chip{flex:none}
  .cats__hot{grid-template-columns:1fr;gap:10px}
  .cats__hot .cathero:last-child{display:block}
  .cathero{aspect-ratio:16/7.6;border-radius:12px}
  .cathero__body b{font-size:17px}
  .cats__grid{grid-template-columns:1fr 1fr;gap:11px}
  .cats__foot{flex-direction:column;align-items:stretch;text-align:center;padding:16px}
  .cats__foot span{justify-content:center}
  .cats__foot .btn{justify-content:center}

  /* ══ model profili — mobil ══ */
  .mp__cover{height:200px}
  .mp__crumb{padding-top:12px;font-size:11px}
  .mp__badges{top:12px;right:14px;gap:6px}
  .mp__rank{height:26px;font-size:10px;padding:0 10px}
  .mp__owner{height:26px;font-size:10px;padding:0 10px}
  .mp__headwrap{padding-top:96px}
  .mp__head{gap:14px}
  .mp__ava{width:92px;height:92px}
  .mp__ava img{border-radius:18px;box-shadow:0 0 0 3px var(--bg),0 0 0 4px rgba(255,144,0,.25)}
  .mp__id{flex-basis:100%;padding-bottom:0}
  .mp__name{font-size:22px}
  .mp__handle{font-size:12.5px;margin-top:5px}
  .mp__chips{margin-top:9px;gap:6px}
  .mp__chips span{height:25px;padding:0 9px;font-size:10.5px}
  .mp__acts{margin-left:auto;padding-bottom:0;gap:7px}
  .mp__msg{display:none}          /* alt çubukta var */
  .mp__ico{width:40px;height:40px}

  /* gönderi oluşturucu + kartlar */
  .composer{padding:12px;border-radius:12px}
  .composer__top img{width:34px;height:34px}
  .composer__media,.composer__bar{margin-left:0}
  .composer__bar{gap:6px}
  .composer__act{height:36px;font-size:12px;padding:0 11px}
  .composer__count{display:none}
  .composer__go{flex:1;justify-content:center;height:38px}
  .composer__cancel{height:38px}
  /* gönderi ızgarası */
  .pfilter{margin:14px 0 12px;gap:6px}
  .pfilter .chip{padding:8px 12px;font-size:11.5px}
  .pfilter__count{width:100%;margin-left:0;order:5;font-size:11.5px}
  .tiles{grid-template-columns:repeat(3,1fr);gap:5px}
  .tile{border-radius:7px}
  .tile__hover{gap:12px;font-size:11.5px}
  .tile__hover svg{width:14px;height:14px}
  .tile__lock svg{width:17px;height:17px}
  .tile__lock b{font-size:11px}
  .tile__lock small{font-size:9.5px}
  .tile__badges i{width:20px;height:20px;border-radius:5px}
  .tile__menu{width:24px;height:24px}
  .tile__pop{bottom:34px;min-width:160px}

  /* gönderi modalı: tam ekran dikey */
  .pmodal{padding:0;display:block}
  .pmodal__box{
    display:grid;grid-template-columns:1fr;grid-template-rows:minmax(180px,auto) minmax(0,1fr);
    width:100%;max-width:none;height:100dvh;max-height:100dvh;border-radius:0;
  }
  .pmodal__media{min-height:180px;max-height:50dvh}
  .pmodal__media img,.pmodal__media video{max-height:50dvh}
  .pmodal__media.is-empty{min-height:150px;padding:22px}
  .pmodal__side{border-left:0;border-top:1px solid var(--line);min-height:0}
  .pmodal__x{top:calc(10px + env(safe-area-inset-top));right:10px}
  .pmodal__who{padding:12px 14px 10px}
  .pmodal__text{padding:12px 14px}
  .pmodal__form{padding-bottom:calc(12px + env(safe-area-inset-bottom))}
  .mp__bio{font-size:13px;margin-top:14px}
  .mp__grid{margin-top:16px}
  .mp__tabs{margin-top:4px}
  .mp__tabs button{height:44px;padding:0 14px;font-size:13.5px}
  .mp__pane{padding-top:18px;padding-bottom:76px}
  .mp__photos{grid-template-columns:repeat(3,1fr);gap:6px}
  .mph{border-radius:7px}
  .mph__lock{font-size:9.5px;gap:5px}
  .mph__lock svg{width:17px;height:17px}
  .mp__info{grid-template-columns:1fr}
  /* sohbet kartı mobilde sekmelerin üstünde */
  .talk{padding:16px}
  .talk__go{height:46px}

  /* mobil alt çubuk */
  .mp__bar{
    position:fixed;left:0;right:0;bottom:0;z-index:80;display:flex;align-items:center;gap:9px;
    padding:10px 14px;padding-bottom:calc(10px + env(safe-area-inset-bottom));
    background:rgba(6,6,6,.94);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);
    border-top:1px solid var(--line);
  }
  .mp__barinfo{min-width:0}
  .mp__barinfo b{display:block;font-size:13px;font-weight:800;color:var(--orange)}
  .mp__barinfo small{display:block;font-size:10.5px;color:var(--dim)}
  .mp__bar .btn{flex:1;justify-content:center;height:42px;padding:0 12px;font-size:13px;gap:7px}
  .mp__bar .btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8}

  /* sohbet: tam ekran sayfa gibi */
  .chat{
    right:0;bottom:0;left:0;top:0;width:100%;height:100dvh;border-radius:0;
    box-shadow:none;animation:chatUp .25s var(--ease);
  }
  @keyframes chatUp{from{transform:translateY(24px);opacity:0}to{transform:none;opacity:1}}
  .chat__head{padding-top:calc(13px + env(safe-area-inset-top))}
  .chat__form{padding-bottom:calc(11px + env(safe-area-inset-bottom))}
  .chat__act,.chat__send{width:42px;height:42px}
  .chat__form input{height:42px}
  .bub{max-width:92%}

  /* kredi modalı */
  .modal{padding:14px;align-items:flex-end}
  .modal__box{padding:24px 18px 20px;border-radius:16px 16px 0 0;width:100%}
  .packs{gap:7px}
  .pack{padding:14px 6px 11px}
  .pack b{font-size:20px}
  .pack__price{font-size:12px}
  .pack__flag{font-size:8.5px;padding:2px 5px}

  /* planlar */
  .plans{grid-template-columns:1fr}
  .plan{padding:22px 20px 20px}
  .billing button{padding:9px 12px;font-size:12px}
  .billing em{font-size:9px}

  /* SSS */
  .faq__q{padding:16px 2px;font-size:14px;gap:12px}
  .faq__a{font-size:13px}

  /* CTA */
  .cta{margin-top:44px;padding:44px var(--pad)}
  .newsform{flex-direction:column}
  .newsform .btn{width:100%}
  .cta__trust{gap:14px;flex-direction:column;align-items:center}

  /* footer */
  .foot{grid-template-columns:1fr 1fr;gap:26px 20px;padding:34px var(--pad) 26px}
  .foot__brand{grid-column:1/-1}
  .foot__base{padding-bottom:calc(16px + env(safe-area-inset-bottom));justify-content:center;text-align:center}
  .top-btn{right:14px;bottom:calc(14px + env(safe-area-inset-bottom))}
}

/* ── ≤440: küçük telefonlar ── */
@media (max-width:440px){
  .vids{grid-template-columns:repeat(2,1fr)!important;gap:16px 9px}
  .vid__title{font-size:13.5px}
  .vid__meta a{font-size:12px}
  .foot-grid{grid-template-columns:1fr}
  .trendbar{padding-bottom:8px}
}

/* ── dokunmatik cihaz: basma geri bildirimi (native his) ── */
@media (hover:none){
  .btn:active,.btn-prem:active,.chip:active,.btn-sub:active,.house__cta:active,
  .iconbtn:active,.trend:active{transform:scale(.95);transition-duration:.06s}
  .vctl:active{transform:scale(.92)}
  .model:active{transform:scale(.98)}
  .vid:active .vid__title{color:var(--orange)}
  .navlink:active,.sub:active,.slot:active,.rowb:active{background:var(--o14)}
  /* hover-only katmanlar dokunmatikte hep görünür olmasın diye kapalı kalır;
     önizleme yerine ilk kare gösterilir */
  .pv-dots{display:none}
}

/* ════════════════════════════════════════════════════════════
   GİRİŞ / KAYIT  (/giris · /kayit) — tam ekran, menüsüz
   ════════════════════════════════════════════════════════════ */
body.auth-mode{overflow-x:clip}
.auth{
  display:grid;grid-template-columns:minmax(0,1.06fr) minmax(0,1fr);
  min-height:100vh;min-height:100svh;
}

/* ── sol: marka paneli ── */
.auth__brand{position:relative;overflow:hidden;display:flex;align-items:flex-end;isolation:isolate}
.auth__bg{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 28%;
  z-index:-2;filter:saturate(.92) contrast(1.04);animation:authIn 1.1s var(--ease) both;
}
@keyframes authIn{from{transform:scale(1.05);opacity:0}to{transform:none;opacity:1}}
.auth__fade{
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(180deg,rgba(4,4,4,.55) 0%,rgba(4,4,4,.12) 34%,rgba(4,4,4,.88) 82%,var(--bg) 100%),
    linear-gradient(90deg,rgba(4,4,4,.6),rgba(4,4,4,0) 55%,rgba(4,4,4,.7));
}
.auth__brandin{padding:clamp(28px,4vw,54px);width:100%;max-width:560px}
.auth__brandin .logo{margin-bottom:auto}
.auth__brandin .logo__full{width:clamp(150px,15vw,208px);filter:drop-shadow(0 12px 26px rgba(0,0,0,.55))}
.auth__brandin h2{
  font-family:var(--f-display);font-size:clamp(28px,3.1vw,42px);line-height:1.06;
  letter-spacing:-.02em;margin:26px 0 10px;color:#fff;text-wrap:balance;
}
.auth__brandin p{margin:0;color:#C9C7C4;font-size:14.5px;line-height:1.6;max-width:44ch}
.auth__perks{list-style:none;margin:24px 0 0;padding:0;display:grid;gap:11px}
.auth__perks li{display:flex;gap:11px;align-items:flex-start;font-size:13.5px;color:#DAD8D5;line-height:1.45}
.auth__perks li span{
  flex:none;width:20px;height:20px;border-radius:50%;background:var(--o14);color:var(--orange);
  display:grid;place-items:center;margin-top:1px;
}
.auth__perks li svg{width:11px;height:11px}
.auth__trust{
  display:flex;flex-wrap:wrap;gap:8px;margin-top:26px;padding-top:20px;
  border-top:1px solid rgba(255,255,255,.09);
}
.auth__trust span{
  display:inline-flex;align-items:center;gap:7px;font-size:11.5px;font-weight:600;color:#B6B4B1;
  background:rgba(255,255,255,.05);border-radius:6px;padding:6px 11px;
}
.auth__trust svg{width:13px;height:13px;stroke:var(--orange);fill:none;stroke-width:1.8}

/* ── sağ: form paneli ── */
.auth__panel{
  position:relative;background:var(--bg);display:flex;flex-direction:column;
  padding:clamp(22px,3vw,40px);overflow-y:auto;
}
.auth__back{
  display:inline-flex;align-items:center;gap:5px;align-self:flex-start;
  font-size:12.5px;font-weight:600;color:var(--dim);padding:8px 12px 8px 8px;border-radius:7px;
  transition:color .15s,background .15s;
}
.auth__back:hover{color:var(--orange);background:var(--surface)}
.auth__back svg{width:15px;height:15px}
.auth__form{width:100%;max-width:392px;margin:auto;padding:26px 0 34px}
.auth__title{
  font-family:var(--f-display);font-size:29px;letter-spacing:-.02em;line-height:1.1;margin:0 0 6px;
}
.auth__sub{margin:0 0 22px;font-size:13.5px;color:var(--muted)}
.auth__sub a{color:var(--orange);font-weight:700}
.auth__sub a:hover{text-decoration:underline}

/* hesap türü seçici */
.atype{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:20px}
.atype button{
  display:grid;gap:2px;justify-items:start;text-align:left;padding:12px 13px;border-radius:var(--r-sm);
  background:var(--surface);border:1px solid transparent;transition:.18s var(--ease);
}
.atype button svg{width:18px;height:18px;stroke:var(--dim);fill:none;stroke-width:1.7;margin-bottom:5px;transition:stroke .18s}
.atype button b{font-size:13.5px;color:#CDCCCA}
.atype button small{font-size:11px;color:var(--dim)}
.atype button:hover{background:var(--raised)}
.atype button.on{background:var(--o08);border-color:var(--o40)}
.atype button.on svg{stroke:var(--orange)}
.atype button.on b{color:var(--orange)}

/* sosyal */
.auth__socials{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.auth__soc{
  display:flex;align-items:center;justify-content:center;gap:7px;height:44px;border-radius:var(--r-sm);
  background:var(--surface);color:#CDCCCA;font-size:12.5px;font-weight:600;transition:.16s;
}
.auth__soc svg{width:15px;height:15px;flex:none}
.auth__soc:hover{background:var(--raised);color:#fff}
.auth__or{
  display:flex;align-items:center;gap:12px;margin:18px 0;
  color:var(--dim);font-size:11px;letter-spacing:.08em;text-transform:uppercase;
}
.auth__or::before,.auth__or::after{content:"";flex:1;height:1px;background:var(--line)}

/* alanlar */
.lbl{display:block;font-size:12px;font-weight:700;color:#B6B4B1;margin:0 0 7px}
.lbl--row{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
.lbl--row a{font-size:11.5px;font-weight:600;color:var(--dim)}
.lbl--row a:hover{color:var(--orange)}
.field{position:relative;margin-bottom:15px}
.field input{
  width:100%;height:46px;border-radius:var(--r-sm);background:var(--surface);
  border:1px solid transparent;color:var(--text);font-size:14px;font-family:var(--f-body);
  padding:0 14px;transition:border-color .16s,background .16s;
}
.field input::placeholder{color:#5A5957}
.field input:focus{outline:none;background:var(--raised);border-color:var(--o40)}
.field--pre input{padding-left:31px}
.field__pre{
  position:absolute;left:14px;top:0;height:46px;display:grid;place-items:center;
  color:var(--dim);font-size:14px;pointer-events:none;
}
.field__eye{
  position:absolute;right:4px;top:0;height:46px;width:42px;display:grid;place-items:center;
  color:var(--dim);transition:color .15s;
}
.field__eye:hover{color:var(--orange)}
.field__eye svg{width:17px;height:17px}
.field.has-err input{border-color:rgba(255,31,61,.55);background:rgba(255,31,61,.05)}
.field__err{display:block;margin-top:6px;font-size:11.5px;color:#FF6A80}
.field__err--free{margin:-4px 0 12px 28px}

/* onay kutusu */
.check{
  display:flex;align-items:flex-start;gap:10px;margin:2px 0 14px;
  font-size:12.5px;color:var(--muted);line-height:1.5;cursor:pointer;
}
.check input{position:absolute;opacity:0;width:0;height:0}
.check i{
  flex:none;width:18px;height:18px;border-radius:5px;background:var(--surface);
  border:1px solid #262625;margin-top:1px;position:relative;transition:.15s;
}
.check i::after{
  content:"";position:absolute;inset:0;background:no-repeat 50%/10px 8px;opacity:0;transition:opacity .12s;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}
.check:hover i{border-color:#3A3A38}
.check input:checked + i{background:var(--orange);border-color:var(--orange)}
.check input:checked + i::after{opacity:1}
.check input:focus-visible + i{outline:2px solid var(--orange);outline-offset:2px}
.check.has-err i{border-color:rgba(255,31,61,.6)}
.check a{color:var(--orange)}
.check a:hover{text-decoration:underline}

/* şifre gücü */
.pwr{display:flex;align-items:center;gap:4px;margin:-9px 0 15px}
.pwr i{height:3px;flex:1;border-radius:2px;background:#1C1C1B;transition:background .25s}
.pwr small{flex:none;margin-left:6px;font-size:10.5px;font-weight:700;color:var(--dim);min-width:56px;text-align:right}
.pwr[data-level="1"] i:nth-child(-n+1),
.pwr[data-level="2"] i:nth-child(-n+2){background:#FF1F3D}
.pwr[data-level="3"] i:nth-child(-n+3){background:var(--orange)}
.pwr[data-level="4"] i{background:#2ED573}
.pwr[data-level="1"] small,.pwr[data-level="2"] small{color:#FF6A80}
.pwr[data-level="3"] small{color:var(--orange)}
.pwr[data-level="4"] small{color:#2ED573}

/* gönder */
.auth__go{width:100%;height:48px;margin-top:6px;font-size:14.5px}
.auth__go.is-busy{opacity:.92;transform:none;box-shadow:none;cursor:default}
.auth__fine{margin:16px 0 0;font-size:11.5px;color:var(--dim);line-height:1.6;text-align:center}
.auth__fine a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}
.auth__fine a:hover{color:var(--orange)}
.auth__note{
  margin:14px 0 0;padding:11px 13px;border-radius:8px;background:var(--o08);
  font-size:11.5px;color:#D3B27E;line-height:1.55;
}

/* ── tablet ── */
@media (max-width:960px){
  .auth{grid-template-columns:1fr;min-height:auto}
  .auth__brand{min-height:270px;align-items:flex-end}
  .auth__bg{object-position:50% 24%}
  .auth__brandin{max-width:none;padding:22px 20px 26px}
  .auth__brandin .logo{margin-bottom:0}
  .auth__brandin .logo__full{width:118px}
  .auth__brandin h2{font-size:26px;margin:14px 0 8px}
  .auth__brandin p{font-size:13.5px}
  .auth__perks{grid-template-columns:1fr;gap:9px;margin-top:16px}
  .auth__trust{margin-top:16px;padding-top:14px}
  .auth__panel{padding:16px}
  .auth__form{padding:14px 0 40px;max-width:440px}
}

/* ── mobil ── */
@media (max-width:560px){
  .auth__brand{min-height:206px}
  /* mobilde metin parlak noktaların üstüne düşmesin */
  .auth__fade{background:
    linear-gradient(180deg,rgba(4,4,4,.5) 0%,rgba(4,4,4,.3) 26%,rgba(4,4,4,.9) 66%,var(--bg) 100%),
    linear-gradient(90deg,rgba(4,4,4,.45),rgba(4,4,4,.1) 60%,rgba(4,4,4,.45))}
  .auth__brandin h2{font-size:22px;line-height:1.14}
  .auth__perks{display:none}
  .auth__trust{gap:6px;margin-top:15px;padding-top:13px}
  .auth__title{font-size:25px}
  .auth__soc{height:46px;font-size:0;gap:0}
  .auth__soc svg{width:17px;height:17px}
  .field input,.field__pre,.field__eye{height:48px}
  .auth__go{height:50px}
  .check{gap:11px;padding:2px 0}
  .check i{width:20px;height:20px}
  .atype button{padding:13px}
  /* dokunma alanları */
  .auth__back{padding:11px 14px 11px 10px}
  .auth__sub a,.lbl--row a{display:inline-block;padding:6px 2px;margin:-6px 0}
  .auth__fine a{padding:4px 1px}
}

/* ════════════════════════════════════════════════════════════
   ADMIN PANEL  (/admin) — bağımsız kabuk, ana tema dili
   ════════════════════════════════════════════════════════════ */
body.adm-mode{overflow-x:clip}
.adm{display:flex;min-height:100vh;min-height:100svh}

/* ── sol menü ── */
.admrail{
  position:fixed;inset:0 auto 0 0;z-index:60;width:236px;display:flex;flex-direction:column;
  background:var(--bg-2);border-right:1px solid var(--line);
}
.admrail__brand{display:flex;align-items:center;gap:10px;padding:18px 18px 14px;border-bottom:1px solid var(--line)}
.admrail__brand .logo__mark{height:32px}
.admrail__brand .logo__word{height:14px}
.admrail__tag{
  margin-left:auto;padding:3px 8px;border-radius:4px;background:var(--o14);color:var(--orange);
  font-family:var(--f-mono);font-size:9px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
}
.admrail__nav{flex:1;overflow-y:auto;padding:12px 12px 16px;scrollbar-width:thin}
.admrail__nav::-webkit-scrollbar{width:6px}
.admrail__nav::-webkit-scrollbar-thumb{background:#1E1E1E;border-radius:3px}
.admrail__g{margin-bottom:16px}
.admrail__t{
  margin:0 0 5px;padding:0 10px;font-family:var(--f-mono);font-size:9.5px;
  letter-spacing:.18em;text-transform:uppercase;color:var(--dim);
}
.admrail__i{
  display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:8px;
  font-size:13px;font-weight:600;color:var(--muted);transition:.14s;
}
.admrail__i svg{width:15px;height:15px;flex:none;stroke:currentColor;fill:none;stroke-width:1.8}
.admrail__i:hover{background:var(--surface);color:#fff}
.admrail__i.on{background:var(--o08);color:var(--orange)}
.admrail__i em{
  font-style:normal;margin-left:auto;font-family:var(--f-mono);font-size:10px;color:var(--dim);
}
.admrail__i.on em{color:var(--orange)}
.admrail__i u{
  text-decoration:none;margin-left:auto;padding:2px 6px;border-radius:3px;
  background:var(--raised);color:var(--dim);font-size:8.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
}
.admrail__i em + u,.admrail__i .admrail__live ~ u{margin-left:6px}
.admrail__live{
  width:7px;height:7px;flex:none;border-radius:50%;background:var(--red);
  margin-left:auto;animation:beat 1.5s infinite;
}
.admrail__site{
  display:flex;align-items:center;gap:9px;padding:14px 20px;border-top:1px solid var(--line);
  font-size:12.5px;font-weight:700;color:var(--dim);transition:color .15s;
}
.admrail__site svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.2}
.admrail__site:hover{color:var(--orange)}

/* ── gövde ── */
.adm__body{flex:1;min-width:0;margin-left:236px;display:flex;flex-direction:column}
.adm__main{flex:1;padding:24px clamp(18px,3vw,34px) 60px;max-width:1460px;width:100%;margin:0 auto}
.adm__main{animation:pageIn .22s var(--ease) both}

/* ── üst bar ── */
.admtop{
  position:sticky;top:0;z-index:40;display:flex;align-items:center;gap:16px;
  height:58px;padding:0 clamp(18px,3vw,34px);
  background:rgba(4,4,4,.82);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.admtop__burger{display:none;width:40px;height:40px;flex:none;border-radius:8px;place-items:center}
.admtop__burger svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.9}
.admtop__crumb{display:flex;align-items:center;gap:8px;font-size:12.5px;color:var(--dim);flex:none}
.admtop__crumb b{color:#EDECEA;font-weight:700}
.admtop__crumb i{font-style:normal;color:#2A2A2A}
.admtop__search{
  display:flex;align-items:center;gap:9px;flex:1;min-width:0;max-width:420px;height:38px;padding:0 13px;
  border-radius:9px;background:var(--surface);transition:box-shadow .16s;
}
.admtop__search:focus-within{box-shadow:inset 0 0 0 1.5px var(--o40)}
.admtop__search svg{width:14px;height:14px;flex:none;stroke:var(--dim);fill:none;stroke-width:2}
.admtop__search input{flex:1;min-width:0;background:none;border:0;outline:none;color:var(--text);font:inherit;font-size:13px}
.admtop__search input::placeholder{color:#5A5957}
.admtop__search kbd{
  flex:none;padding:2px 7px;border-radius:4px;background:var(--raised);
  font-family:var(--f-mono);font-size:10.5px;color:var(--dim);
}
.admtop__acts{display:flex;align-items:center;gap:12px;margin-left:auto;flex:none}
.admtop__env{
  display:inline-flex;align-items:center;gap:7px;padding:6px 11px;border-radius:6px;
  background:rgba(76,194,107,.1);color:#7BE39A;font-size:11px;font-weight:700;
}
.admtop__env i{width:6px;height:6px;border-radius:50%;background:#4CC26B;animation:beat 2s infinite}
.admtop__ico{
  position:relative;width:38px;height:38px;border-radius:8px;color:var(--muted);
  display:grid;place-items:center;transition:.15s;
}
.admtop__ico svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8}
.admtop__ico:hover{background:var(--surface);color:#fff}
.admtop__ico em{
  position:absolute;top:4px;right:4px;min-width:15px;height:15px;padding:0 4px;border-radius:8px;
  background:var(--orange);color:var(--ink);font-style:normal;font-size:9.5px;font-weight:700;
  display:grid;place-items:center;
}
.admtop__me{display:flex;align-items:center;gap:10px}
.admtop__me img{width:34px;height:34px;border-radius:50%;object-fit:cover;box-shadow:0 0 0 1.5px var(--o40)}
.admtop__me b{display:block;font-size:12.5px;font-weight:700;line-height:1.15}
.admtop__me small{display:block;font-size:10.5px;color:var(--dim)}
.adm__scrim{display:none}

/* ── dashboard ── */
.dash__head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:20px}
.dash__head h1{font-family:var(--f-display);font-size:clamp(23px,2.8vw,30px);font-weight:800;letter-spacing:-.03em;margin:7px 0 0}
.dash__sub{margin:8px 0 0;font-size:12.5px;color:var(--dim)}
.dash__acts{display:flex;gap:9px;flex-wrap:wrap}
.dash__acts .btn{height:42px;padding:0 17px;font-size:13px;gap:8px}
.dash__acts svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}

/* KPI */
.kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-bottom:14px}
.kpi{min-width:0;padding:15px 17px;border-radius:13px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line)}
.kpi__top{display:flex;align-items:center;gap:8px}
.kpi__ico{
  width:28px;height:28px;flex:none;border-radius:8px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;
}
.kpi__ico svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8}
.kpi__l{font-size:11.5px;font-weight:600;color:var(--muted);min-width:0}
.kpi__diff{margin-left:auto;font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.kpi__diff.up{color:#7BE39A}
.kpi__live{
  margin-left:auto;display:inline-flex;align-items:center;gap:5px;
  font-family:var(--f-mono);font-size:9px;font-weight:700;letter-spacing:.1em;color:var(--red);
}
.kpi__live i{width:6px;height:6px;border-radius:50%;background:var(--red);animation:beat 1.5s infinite}
.kpi__row{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;margin-top:11px}
.kpi__v{font-family:var(--f-display);font-size:clamp(21px,1.9vw,26px);font-weight:800;letter-spacing:-.03em;line-height:1;color:#fff}
.kpi__sub{display:block;margin-top:7px;font-size:10.5px;color:var(--dim)}
.spark{display:inline-flex;align-items:flex-end;gap:2px;height:26px;flex:none}
.spark i{width:5px;border-radius:2px 2px 0 0;background:var(--o40)}
.spark i:last-child{background:var(--orange)}

/* düzen */
.dash__grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:14px;align-items:start}
.dash__main,.dash__side{display:grid;gap:14px;min-width:0}

/* kart */
.admcard{border-radius:13px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);overflow:hidden}
.admcard__h{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 17px;border-bottom:1px solid var(--line)}
.admcard__h b{display:flex;align-items:center;gap:8px;font-size:13.5px;font-weight:700}
.admcard__h small{display:block;font-size:11px;color:var(--dim);margin-top:3px}
.admcard__h small em{font-style:normal}
.admcard__h .up{color:#7BE39A}
.admcard__soon{
  padding:4px 9px;border-radius:4px;background:var(--raised);color:var(--dim);
  font-family:var(--f-mono);font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;white-space:nowrap;
}
.admcard__go{font-size:12px;font-weight:700;color:var(--orange);white-space:nowrap}
.admcard__go:hover{text-decoration:underline}

/* grafik */
.chart{display:flex;align-items:flex-end;gap:6px;height:190px;padding:20px 17px 8px}
.chart__c{
  position:relative;flex:1;min-width:0;height:100%;display:flex;flex-direction:column;
  align-items:center;justify-content:flex-end;gap:7px;
}
.chart__c i{
  width:100%;max-width:38px;border-radius:5px 5px 2px 2px;background:#2A2214;
  transition:background .15s,height .45s var(--ease);
}
.chart__c:hover i{background:var(--o40)}
.chart__c.on i{background:var(--orange)}
.chart__c small{font-family:var(--f-mono);font-size:9.5px;color:var(--dim)}
.chart__tip{
  position:absolute;top:-4px;left:50%;transform:translate(-50%,-100%);
  padding:4px 8px;border-radius:5px;background:var(--raised);color:#EDECEA;
  font-family:var(--f-mono);font-size:10px;white-space:nowrap;opacity:0;transition:opacity .15s;pointer-events:none;
}
.chart__c:hover .chart__tip,.chart__c.on .chart__tip{opacity:1}
.split{padding:6px 17px 16px}
.split__bar{display:flex;height:7px;border-radius:4px;overflow:hidden;gap:2px}
.split__bar i{display:block;height:100%}
.split__leg{display:flex;gap:14px;flex-wrap:wrap;margin-top:10px}
.split__leg span{display:inline-flex;align-items:center;gap:7px;font-size:11px;color:var(--muted)}
.split__leg i{width:8px;height:8px;border-radius:2px;flex:none}
.split__leg b{color:#EDECEA}

/* top list */
.toplist{padding:6px 0}
.toplist__r{display:flex;align-items:center;gap:13px;padding:9px 17px;transition:background .13s}
.toplist__r:hover{background:rgba(255,255,255,.02)}
.toplist__n{font-family:var(--f-display);font-size:15px;font-weight:800;color:var(--dim);width:16px;flex:none;text-align:center}
.toplist__r:first-child .toplist__n{color:var(--orange)}
.toplist__b{flex:1;min-width:0}
.toplist__b em{
  display:block;font-style:normal;font-size:12.5px;font-weight:600;color:#DAD8D5;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.toplist__r:hover .toplist__b em{color:var(--orange)}
.toplist__bar{display:block;height:3px;border-radius:2px;background:rgba(255,255,255,.07);margin-top:6px}
.toplist__bar b{display:block;height:100%;border-radius:2px;background:var(--o40)}
.toplist__r:first-child .toplist__bar b{background:var(--orange)}
.toplist__v{font-family:var(--f-mono);font-size:11.5px;color:var(--muted);flex:none}

/* tablo */
.admtbl{padding-bottom:6px}
.admtbl__h,.admtbl__r{
  display:grid;grid-template-columns:1.2fr 1.2fr .8fr .8fr;gap:10px;align-items:center;
  padding:9px 17px;
}
.admtbl__h{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--dim);border-bottom:1px solid var(--line);
}
.admtbl__r{font-size:12.5px;transition:background .13s}
.admtbl__r:hover{background:rgba(255,255,255,.02)}
.admtbl__who{display:flex;align-items:center;gap:9px;min-width:0}
.admtbl__who img{width:26px;height:26px;border-radius:50%;object-fit:cover;flex:none}
.admtbl__who b{font-weight:700;color:#EDECEA;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.admtbl__dim{color:var(--dim);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pilltag{
  font-style:normal;padding:3px 8px;border-radius:4px;background:var(--raised);color:var(--muted);
  font-size:10px;font-weight:700;
}
.pilltag.prem{background:var(--o14);color:var(--orange)}
.livegrid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--line)}
.livegrid span{display:grid;gap:2px;padding:12px 17px;background:var(--panel)}
.livegrid b{font-family:var(--f-display);font-size:17px;font-weight:800;letter-spacing:-.02em;color:#fff}
.livegrid small{font-size:10px;color:var(--dim)}
.livebtns{display:flex;gap:8px;padding:13px 17px}
.livebtns .btn{flex:1;height:38px;font-size:12px;padding:0 10px;justify-content:center}
.admdanger{background:rgba(255,31,61,.12);color:#FF6A80}
.admdanger:hover{background:var(--red);color:#fff}

/* kuyruk */
.queue{padding:5px 0}
.queue__r{display:flex;align-items:center;gap:12px;padding:10px 17px;transition:background .13s}
.queue__r:hover{background:rgba(255,255,255,.02)}
.queue__ico{
  width:32px;height:32px;flex:none;border-radius:9px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;
}
.queue__ico svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.queue__b{flex:1;min-width:0}
.queue__b b{display:block;font-size:12.5px;font-weight:700;color:#E9E8E6}
.queue__b small{display:block;font-size:10.5px;color:var(--dim);margin-top:2px}
.queue__n{
  font-style:normal;min-width:24px;height:24px;padding:0 7px;border-radius:12px;
  background:var(--orange);color:var(--ink);font-size:11px;font-weight:800;
  display:inline-grid;place-items:center;flex:none;
}

/* işlem akışı */
.txlist{padding:5px 0}
.txlist__r{display:flex;align-items:center;gap:11px;padding:9px 17px}
.txlist__r img{width:28px;height:28px;border-radius:50%;object-fit:cover;flex:none}
.txlist__b{flex:1;min-width:0}
.txlist__b b{display:block;font-size:12px;font-weight:700;color:#E9E8E6}
.txlist__b small{display:block;font-size:10.5px;color:var(--dim);margin-top:1px}
.txlist__amt{font-family:var(--f-mono);font-size:12px;font-weight:700;color:#7BE39A;flex:none}
.txlist__amt.neg{color:#FF6A80}
.txlist__t{font-size:10px;color:var(--dim);flex:none;width:32px;text-align:right}

/* yer tutucu */
.admsoon{
  display:grid;justify-items:center;gap:10px;text-align:center;max-width:460px;margin:8vh auto 0;
}
.admsoon__ico{
  width:56px;height:56px;border-radius:16px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;box-shadow:inset 0 0 0 1px var(--o40);margin-bottom:4px;
}
.admsoon__ico svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:1.7}
.admsoon h1{font-family:var(--f-display);font-size:24px;font-weight:800;letter-spacing:-.03em}
.admsoon__p{margin:0;font-size:13px;color:var(--muted);line-height:1.65}
.admsoon .btn{margin-top:10px}

/* ── tablet ── */
@media (max-width:1200px){
  .dash__grid{grid-template-columns:1fr}
  .kpis{grid-template-columns:repeat(2,minmax(0,1fr))}
}

/* ── mobil ── */
@media (max-width:860px){
  .admrail{transform:translateX(-100%);transition:transform .28s var(--ease);width:262px}
  .adm--nav .admrail{transform:none;box-shadow:30px 0 80px -30px #000}
  .adm__scrim{
    display:block;position:fixed;inset:0;z-index:55;background:rgba(0,0,0,.6);
    opacity:0;pointer-events:none;transition:opacity .25s;
  }
  .adm--nav .adm__scrim{opacity:1;pointer-events:auto}
  .adm__body{margin-left:0}
  .admtop{gap:10px;padding:0 14px}
  .admtop__burger{display:grid}
  .admtop__crumb{display:none}
  .admtop__env{display:none}
  .adm__main{padding:18px 14px 50px}

  .dash__acts{width:100%}
  .dash__acts .btn{flex:1;justify-content:center;height:44px}
  .kpis{gap:9px}
  .kpi{padding:13px 14px}
  .chart{height:150px;gap:4px;padding:18px 13px 6px}
  .chart__c small{font-size:8.5px}
  .admtbl__h,.admtbl__r{grid-template-columns:1.4fr 1fr .9fr;padding:9px 14px}
  .admtbl__h span:nth-child(2),.admtbl__r > .admtbl__dim:first-of-type{display:none}
  .livebtns{flex-wrap:wrap}
  .livebtns .btn{flex-basis:100%;height:42px}
}
@media (max-width:520px){
  .kpis{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .kpi__v{font-size:19px}
  .kpi__l{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .spark{display:none}          /* dar ekranda değer sıkışmasın */
}

/* ════════════════════════════════════════════════════════════
   ADMIN FAZ 2 — içerik yönetimi (videolar · modeller · kategoriler)
   ════════════════════════════════════════════════════════════ */

/* ── araç çubuğu ── */
.atb{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:16px}
.atb__q{flex:1;min-width:220px;max-width:360px;height:40px}
.atb__q button{
  width:24px;height:24px;flex:none;border-radius:50%;background:#242424;color:var(--muted);
  font-size:14px;line-height:1;transition:.15s;
}
.atb__q button:hover{background:var(--orange);color:var(--ink)}

/* ── onay kutusu ── */
.ack{display:inline-flex;cursor:pointer}
.ack input{position:absolute;opacity:0;width:0;height:0}
.ack i{
  width:17px;height:17px;border-radius:5px;background:var(--surface);
  box-shadow:inset 0 0 0 1px #2E2E2C;position:relative;transition:.14s;
}
.ack i::after{
  content:"";position:absolute;inset:0;opacity:0;transition:opacity .12s;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") no-repeat 50%/10px 8px;
}
.ack:hover i{box-shadow:inset 0 0 0 1px #3A3A38}
.ack input:checked + i{background:var(--orange);box-shadow:none}
.ack input:checked + i::after{opacity:1}
.ack input:focus-visible + i{outline:2px solid var(--orange);outline-offset:2px}

/* ── tablo ── */
.atbl{border-radius:13px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);overflow:hidden}
.atbl__h,.atbl__r{
  display:grid;grid-template-columns:34px minmax(0,2.2fr) minmax(0,.9fr) minmax(0,.9fr) minmax(0,.7fr) minmax(0,.9fr) minmax(0,.6fr) minmax(0,.8fr);
  gap:10px;align-items:center;padding:10px 15px;
}
.atbl--m .atbl__h,.atbl--m .atbl__r{
  grid-template-columns:minmax(0,2fr) minmax(0,.9fr) minmax(0,.9fr) minmax(0,.5fr) minmax(0,.8fr) minmax(0,.8fr) minmax(0,.8fr);
}
.atbl__h{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--dim);border-bottom:1px solid var(--line);background:var(--surface);
}
.atbl__ha{text-align:right}
.atbl__r{border-bottom:1px solid var(--line);font-size:12.5px;transition:background .13s}
.atbl__r:last-child{border-bottom:0}
.atbl__r:hover{background:rgba(255,255,255,.02)}
.atbl__r.sel{background:var(--o08)}
.atbl__r.off{opacity:.55}
.atbl__r.off:hover{opacity:.85}

.atbl__vid{display:flex;align-items:center;gap:11px;min-width:0}
.atbl__vid > img{width:58px;height:33px;flex:none;border-radius:5px;object-fit:cover}
.atbl__ava{width:34px;height:34px;flex:none;border-radius:50%;object-fit:cover}
.atbl__vb{min-width:0}
.atbl__vb b{
  display:flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;color:#EDECEA;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.atbl__vb b{display:block}
.atbl__vb small{display:block;font-family:var(--f-mono);font-size:10px;color:var(--dim);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.atbl__dim{color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.atbl__num{font-family:var(--f-mono);font-size:11.5px;color:#CDCCCA}
.atbl__cast{display:flex;align-items:center}
.atbl__cast img{
  width:24px;height:24px;border-radius:50%;object-fit:cover;
  box-shadow:0 0 0 2px var(--panel);
}
.atbl__cast img:not(:first-child){margin-left:-8px}
.atbl__cast small{color:var(--dim);font-size:10.5px;margin-left:6px}
.atbl__empty{margin:0;padding:26px 18px;font-size:13px;color:var(--dim);text-align:center}
.ondot{display:inline-block;width:7px;height:7px;border-radius:50%;background:#4CC26B;vertical-align:1px}

/* durum rozeti */
.stat{
  display:inline-flex;align-items:center;gap:6px;font-style:normal;padding:4px 9px;border-radius:4px;
  font-size:10.5px;font-weight:700;white-space:nowrap;
}
.stat i{width:6px;height:6px;border-radius:50%}
.stat--yayinda{background:rgba(76,194,107,.1);color:#7BE39A}
.stat--yayinda i{background:#4CC26B}
.stat--inceleme{background:var(--o08);color:var(--orange)}
.stat--inceleme i{background:var(--orange)}
.stat--taslak{background:var(--raised);color:var(--muted)}
.stat--taslak i{background:var(--dim)}

/* mini anahtar */
.tgl--sm{width:34px;height:20px}
.tgl--sm i{width:14px;height:14px}
.tgl--sm.on i{left:17px}
.tgl--sm::after{content:none}

/* satır aksiyonları */
.atbl__acts{display:flex;gap:4px;justify-content:flex-end}
.aicon{
  width:30px;height:30px;flex:none;border-radius:7px;color:var(--dim);display:grid;place-items:center;transition:.14s;
}
.aicon svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.9}
.aicon:hover{background:var(--raised);color:#fff}
.aicon--del:hover{background:rgba(255,31,61,.12);color:#FF6A80}

/* sayfalama */
.apag{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:14px}
.apag > span{font-size:11.5px;color:var(--dim)}
.apag__b{display:flex;gap:4px}
.apag__b button{
  min-width:32px;height:32px;padding:0 6px;border-radius:7px;background:var(--surface);
  color:#C5C4C2;font-family:var(--f-mono);font-size:12px;display:grid;place-items:center;transition:.14s;
}
.apag__b svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.2}
.apag__b button:hover:not(:disabled){background:var(--raised);color:#fff}
.apag__b button.on{background:var(--orange);color:var(--ink)}
.apag__b button:disabled{opacity:.35;cursor:not-allowed}

/* toplu işlem çubuğu */
.abulk{
  position:fixed;left:50%;bottom:18px;z-index:70;display:flex;align-items:center;gap:16px;
  padding:10px 12px 10px 18px;border-radius:13px;
  background:rgba(9,9,9,.95);backdrop-filter:blur(16px);
  box-shadow:inset 0 0 0 1px var(--o40),0 22px 55px -22px #000;
  transform:translate(-50%,90px);opacity:0;transition:.28s var(--ease);pointer-events:none;
}
.abulk.show{transform:translate(-50%,0);opacity:1;pointer-events:auto}
.abulk > b{font-size:13px;color:var(--orange);white-space:nowrap}
.abulk__b{display:flex;gap:7px}
.abulk__b .btn{height:38px;padding:0 13px;font-size:12px}
.abulk__x{
  width:30px;height:30px;border-radius:7px;color:var(--dim);font-size:17px;line-height:1;transition:.14s;
}
.abulk__x:hover{background:var(--raised);color:#fff}

/* ── yeni video formu ── */
.avnew__grid{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:14px;align-items:start}
.avnew__main,.avnew__side{display:grid;gap:14px;min-width:0}
.avnew__card{padding:17px}
.avnew__card .field{margin-bottom:14px}
.avnew__card .field:last-child{margin-bottom:0}
.avnew__card .field input,.avnew__card .field textarea,.avnew__card .field select{
  width:100%;border-radius:9px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font:inherit;font-size:13.5px;padding:0 13px;transition:border-color .15s,background .15s;
}
.avnew__card .field input,.avnew__card .field select{height:44px}
.avnew__card .field select{appearance:none;cursor:pointer}
.avnew__card .field textarea{padding:11px 13px;resize:vertical;min-height:96px;line-height:1.6}
.avnew__card .field input:focus,.avnew__card .field textarea:focus,.avnew__card .field select:focus{
  outline:none;background:var(--raised);border-color:var(--o40);
}
.avnew__slug{display:block;margin-top:7px;font-family:var(--f-mono);font-size:10.5px;color:var(--dim)}
.avnew__slug b{color:var(--orange)}
.avnew__hint{font-weight:400;color:var(--dim);font-size:10.5px;margin-left:5px}
.avnew__two{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.avnew__none{margin:0;padding:12px 2px;font-size:12px;color:var(--dim)}

/* etiket editörü */
.tagedit{
  display:flex;align-items:center;gap:6px;flex-wrap:wrap;min-height:44px;padding:6px 8px;
  border-radius:9px;background:var(--surface);
}
.tagedit__t{
  display:inline-flex;align-items:center;gap:6px;height:30px;padding:0 5px 0 11px;border-radius:6px;
  background:var(--o08);color:var(--orange);font-size:12px;font-weight:700;
}
.tagedit__t button{
  width:20px;height:20px;border-radius:50%;color:var(--orange);font-size:14px;line-height:1;transition:.13s;
}
.tagedit__t button:hover{background:var(--orange);color:var(--ink)}
.tagedit form{flex:1;min-width:110px}
.tagedit input{width:100%;height:30px;background:none;border:0;outline:none;color:var(--text);font:inherit;font-size:13px;padding:0 5px}
.tagedit input::placeholder{color:#5A5957}

/* oyuncu seçici */
.castsel{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:11px}
.castsel__c{
  display:inline-flex;align-items:center;gap:8px;height:36px;padding:0 6px 0 5px;border-radius:99px;
  background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40);font-size:12.5px;font-weight:700;color:#F1F0EE;
}
.castsel__c img{width:26px;height:26px;border-radius:50%;object-fit:cover}
.castsel__c button{
  width:22px;height:22px;border-radius:50%;color:var(--orange);font-size:15px;line-height:1;transition:.13s;
}
.castsel__c button:hover{background:var(--orange);color:var(--ink)}
.castfind{height:40px;max-width:none;margin-bottom:9px}
.castpick{display:grid;gap:3px}
.castpick__i{
  display:flex;align-items:center;gap:11px;padding:8px 10px;border-radius:9px;text-align:left;transition:background .13s;
}
.castpick__i:hover{background:var(--surface)}
.castpick__i img{width:32px;height:32px;flex:none;border-radius:50%;object-fit:cover}
.castpick__i span{flex:1;min-width:0}
.castpick__i b{display:block;font-size:12.5px;font-weight:700;color:#E9E8E6}
.castpick__i small{display:block;font-size:10.5px;color:var(--dim)}
.castpick__i i{
  font-style:normal;width:26px;height:26px;flex:none;border-radius:7px;background:var(--raised);
  color:var(--orange);font-size:16px;display:grid;place-items:center;transition:.13s;
}
.castpick__i:hover i{background:var(--orange);color:var(--ink)}

/* kapak seçici */
.coverpick{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.coverpick__i{position:relative;border-radius:8px;overflow:hidden;aspect-ratio:16/9}
.coverpick__i img{width:100%;height:100%;object-fit:cover;filter:brightness(.7);transition:filter .15s}
.coverpick__i:hover img{filter:brightness(.9)}
.coverpick__i.on{box-shadow:inset 0 0 0 2px var(--orange)}
.coverpick__i.on img{filter:brightness(1)}
.coverpick__i i{
  position:absolute;right:6px;top:6px;width:20px;height:20px;border-radius:50%;
  background:var(--orange);color:var(--ink);display:grid;place-items:center;
}
.coverpick__i i svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:3.4}
.avnew__up{width:100%;justify-content:center;height:40px;margin-top:10px;font-size:12.5px}
.opt--flat{padding:12px 0 0;border-bottom:0}
.avnew__note{
  display:flex;align-items:flex-start;gap:10px;padding:13px 15px;border-radius:11px;
  background:var(--o08);font-size:11.5px;color:#D3B27E;line-height:1.6;
}
.avnew__note svg{width:14px;height:14px;flex:none;fill:var(--orange);margin-top:1px}
.avnew__done{max-width:560px;margin:24px auto 0}
.avnew__done h1{font-family:var(--f-display);font-size:25px;font-weight:800;letter-spacing:-.03em}
.dash__head .eyebrow a{color:var(--dim)}
.dash__head .eyebrow a:hover{color:var(--orange)}

/* ── model başvuruları ── */
.apps{margin-bottom:20px}
.apps__t{
  display:flex;align-items:center;gap:9px;margin:0 0 11px;
  font-family:var(--f-display);font-size:16px;font-weight:800;letter-spacing:-.02em;
}
.apps__t svg{width:15px;height:15px;fill:var(--orange)}
.apps__t em{
  font-style:normal;min-width:22px;height:22px;padding:0 7px;border-radius:11px;
  background:var(--orange);color:var(--ink);font-size:11px;font-weight:800;
  display:inline-grid;place-items:center;
}
.apps__g{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.appc{
  display:grid;grid-template-columns:auto 1fr;gap:8px 13px;padding:15px;border-radius:13px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--o40);
}
.appc > img{width:46px;height:46px;border-radius:50%;object-fit:cover;grid-row:span 2}
.appc__b{min-width:0}
.appc__b > b{display:flex;align-items:baseline;gap:7px;font-size:13.5px;font-weight:700;color:#F1F0EE}
.appc__b > b small{font-family:var(--f-mono);font-size:10px;color:var(--dim);font-weight:400}
.appc__b > small{display:block;font-size:10.5px;color:var(--dim);margin-top:2px}
.appc__b p{margin:7px 0 0;font-size:11.5px;color:var(--muted);line-height:1.5}
.appc__acts{grid-column:2;display:flex;gap:7px}
.appc__acts .btn{flex:1;height:36px;font-size:12px;padding:0 10px;justify-content:center}

/* ── kategoriler ── */
.acadd{
  display:flex;align-items:center;gap:11px;margin-bottom:16px;padding:8px 8px 8px 16px;
  border-radius:12px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.acadd > svg{width:16px;height:16px;flex:none;stroke:var(--orange);fill:none;stroke-width:1.8}
.acadd input{flex:1;min-width:0;height:40px;background:none;border:0;outline:none;color:var(--text);font:inherit;font-size:13.5px}
.acadd input::placeholder{color:#5A5957}
.acadd small{font-family:var(--f-mono);font-size:10.5px;color:var(--dim);white-space:nowrap}
.acadd .btn{height:40px;padding:0 18px;font-size:13px}
.acadd .btn:disabled{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}

.aclist{display:grid;gap:7px}
.acrow{
  display:flex;align-items:center;gap:13px;padding:11px 14px;border-radius:11px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);transition:box-shadow .15s;
}
.acrow:hover{box-shadow:inset 0 0 0 1px #262625}
.acrow__ord{display:grid;gap:2px;flex:none}
.acrow__ord button{
  width:22px;height:18px;border-radius:4px;color:var(--dim);display:grid;place-items:center;transition:.13s;
}
.acrow__ord svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2.4}
.acrow__ord button:hover:not(:disabled){background:var(--raised);color:var(--orange)}
.acrow__ord button:disabled{opacity:.25;cursor:not-allowed}
.acrow__ico{
  width:36px;height:36px;flex:none;border-radius:10px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;
}
.acrow__ico svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8}
.acrow__b{flex:1;min-width:0}
.acrow__b > b{display:block;font-size:13.5px;font-weight:700;color:#EDECEA}
.acrow__b > small{display:block;font-family:var(--f-mono);font-size:10.5px;color:var(--dim);margin-top:2px}
.acrow__edit{display:flex;align-items:center;gap:6px}
.acrow__edit input{
  flex:1;min-width:0;height:36px;border-radius:8px;background:var(--surface);border:1px solid var(--o40);
  color:var(--text);font:inherit;font-size:13px;padding:0 11px;outline:none;
}
.acrow__edit .aicon svg{stroke-width:2.6}
.acrow__flags{display:flex;gap:6px;flex:none}
.acflag{
  display:inline-flex;align-items:center;gap:6px;height:30px;padding:0 11px;border-radius:6px;
  background:var(--surface);color:var(--dim);font-size:11px;font-weight:700;transition:.14s;
}
.acflag svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:1.9}
.acflag:hover{color:#fff;background:var(--raised)}
.acflag.on{background:var(--o14);color:var(--orange)}
.acflag--vip.on{background:var(--o14);color:var(--orange-hi)}
.acask{display:inline-flex;align-items:center;gap:7px;font-size:11.5px;color:var(--muted)}
.acask button{
  height:30px;padding:0 11px;border-radius:6px;background:var(--raised);color:#E9E8E6;
  font-size:11.5px;font-weight:700;transition:.13s;
}
.acask button:first-of-type{background:rgba(255,31,61,.14);color:#FF6A80}
.acask button:first-of-type:hover{background:var(--red);color:#fff}

/* ── tablet/mobil ── */
@media (max-width:1100px){
  .avnew__grid{grid-template-columns:1fr}
  .apps__g{grid-template-columns:1fr}
}
@media (max-width:960px){
  /* tablo -> kart görünümü */
  .atbl,.atbl--m{background:none;box-shadow:none;overflow:visible}
  .atbl__h{display:none}
  .atbl__r,.atbl--m .atbl__r{
    grid-template-columns:auto minmax(0,1fr) auto;grid-auto-rows:auto;gap:6px 12px;
    padding:13px 14px;margin-bottom:8px;border-radius:11px;border-bottom:0;
    background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
  }
  .atbl__r.sel{box-shadow:inset 0 0 0 1px var(--o40)}
  .atbl__r > .ack{grid-row:1;align-self:center}
  .atbl__vid{grid-column:2}
  .atbl__r > span:not(.atbl__vid){grid-column:auto}
  .atbl__r{align-items:center}
  .atbl__acts{grid-column:3;grid-row:1}
  .atbl__r > span:nth-child(n+4){grid-column:2/-1}
  .atbl__cast{grid-row:auto}
  .atbl--m .atbl__vid{grid-column:1/3}
  .atbl--m .atbl__r > span:nth-child(n+2){grid-column:1/-1}
  .atbl--m .atbl__acts{grid-column:3;grid-row:1;justify-self:end}
  .atbl--m .atbl__dim{display:inline}
  .abulk{left:14px;right:14px;transform:translateY(90px);flex-wrap:wrap;gap:10px}
  .abulk.show{transform:none}
  .abulk__b{flex-wrap:wrap}
  .abulk__b .btn{flex:1;min-width:100px}
}
@media (max-width:640px){
  .atb__q{max-width:none;flex-basis:100%}
  .appc{grid-template-columns:auto 1fr}
  .acrow{flex-wrap:wrap;gap:10px 12px}
  .acrow__b{flex-basis:calc(100% - 120px)}
  .acrow__flags{margin-left:70px}
  .avnew__two{grid-template-columns:1fr}
  .coverpick{grid-template-columns:1fr 1fr}
  .avnew__card .field input,.avnew__card .field textarea,.avnew__card .field select{font-size:16px}
  .tagedit input,.acadd input,.acrow__edit input{font-size:16px}
}

/* ════════════════════════════════════════════════════════════
   VİDEO STÜDYOSU — kapsamlı yükleme paneli (yeni + düzenle)
   ════════════════════════════════════════════════════════════ */

/* bölüm başlığı */
.stud__t{
  display:flex;align-items:center;gap:10px;margin:0 0 14px;
  font-family:var(--f-display);font-size:15.5px;font-weight:800;letter-spacing:-.02em;
}
.stud__t > i{
  font-style:normal;font-family:var(--f-mono);font-size:10px;font-weight:700;color:var(--orange);
  background:var(--o08);border-radius:5px;padding:3px 7px;letter-spacing:.08em;
}
.stud__t > svg{width:15px;height:15px;stroke:var(--orange);fill:none;stroke-width:1.9}
.stud__t .avnew__hint{margin-left:0}

/* ── bırakma alanı ── */
.drop{
  border-radius:11px;background:var(--surface);
  box-shadow:inset 0 0 0 1.5px transparent;transition:.18s;
}
.drop:not(.drop--busy):not(.drop--ok){
  display:grid;justify-items:center;gap:6px;text-align:center;padding:28px 18px;
  background:
    repeating-linear-gradient(45deg,transparent 0 6px,rgba(255,255,255,.015) 6px 12px),var(--surface);
  outline:1.5px dashed #2E2E2C;outline-offset:-8px;
}
.drop.over{outline-color:var(--orange);background:var(--o08)}
.drop__ico{
  width:44px;height:44px;border-radius:12px;background:var(--o08);color:var(--orange);
  display:grid;place-items:center;margin-bottom:4px;
}
.drop__ico svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.7}
.drop__ico--sm{width:34px;height:34px;border-radius:9px;margin:0}
.drop__ico--sm svg{width:15px;height:15px}
.drop > b{font-size:14px;font-weight:700;color:#EDECEA}
.drop > p{margin:0;font-size:11.5px;color:var(--dim);line-height:1.6;max-width:44ch}
.drop__acts{display:flex;align-items:center;gap:12px;margin-top:8px}
.drop__acts .btn{height:38px;padding:0 16px;font-size:12.5px}
.drop__demo{
  font-size:11.5px;font-weight:700;color:var(--orange);border-bottom:1px solid var(--o40);
  padding-bottom:1px;transition:border-color .15s;
}
.drop__demo:hover{border-color:var(--orange)}

/* yükleniyor */
.drop--busy{padding:13px 14px;display:grid;gap:11px}
.drop__row{display:flex;align-items:center;gap:11px;min-width:0}
.drop__b{flex:1;min-width:0}
.drop__b b{display:block;font-size:12.5px;font-weight:700;color:#EDECEA;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.drop__b small{display:block;font-family:var(--f-mono);font-size:10px;color:var(--dim);margin-top:3px}
.drop__bar{display:block;height:5px;border-radius:3px;background:rgba(255,255,255,.07);overflow:hidden}
.drop__bar i{display:block;height:100%;border-radius:3px;background:var(--orange);transition:width .14s linear}
.drop__bar.pulse i{animation:studPulse 1.1s ease-in-out infinite}
@keyframes studPulse{0%,100%{opacity:1}50%{opacity:.45}}

/* hazır */
.drop--ok{overflow:hidden}
.drop__prev{position:relative;aspect-ratio:16/9;background:#000}
.drop__prev img,.drop__prev video{width:100%;height:100%;object-fit:cover;display:block}
.drop__okbadge{
  position:absolute;top:9px;left:9px;display:inline-flex;align-items:center;gap:6px;
  padding:4px 10px;border-radius:5px;background:rgba(8,8,8,.78);backdrop-filter:blur(6px);
  color:#7BE39A;font-style:normal;font-size:10.5px;font-weight:700;
}
.drop__okbadge svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:3}
.drop--ok .drop__row{padding:11px 13px}
.drop__re{height:34px;padding:0 13px;font-size:11.5px;flex:none}

/* kodlama hattı */
.pipeline{margin-top:13px;border-top:1px solid var(--line);padding-top:12px}
.pipeline__t{
  margin:0 0 8px;font-family:var(--f-mono);font-size:9.5px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--dim);
}
.pipeline__r{display:flex;align-items:center;gap:10px;padding:6px 0;cursor:pointer}
.pipeline__r b{font-family:var(--f-mono);font-size:12px;color:#E9E8E6;width:52px}
.pipeline__r em{font-style:normal;font-size:11px;color:var(--dim)}
.pipeline__r em.ok{color:#7BE39A}

/* satır içi ayar */
.stud__inline{display:flex;align-items:center;gap:12px;margin-top:13px;padding-top:12px;border-top:1px solid var(--line)}
.stud__inline .lbl{margin:0;flex:1}
.stud__inline select{
  height:38px;border-radius:8px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font:inherit;font-size:13px;padding:0 11px;
}
.stud__inline select:focus{outline:none;border-color:var(--o40)}

/* ── hover kareleri ── */
.frames{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}
.frame{position:relative;margin:0;border-radius:9px;overflow:hidden;background:var(--surface);aspect-ratio:16/10}
.frame img{width:100%;height:100%;object-fit:cover}
.frame figcaption{
  position:absolute;left:7px;top:7px;padding:3px 7px;border-radius:4px;
  background:rgba(8,8,8,.75);font-family:var(--f-mono);font-size:9px;color:#DAD8D5;
}
.frame__acts{
  position:absolute;inset:auto 0 0 0;display:flex;justify-content:center;gap:4px;padding:6px;
  background:linear-gradient(180deg,transparent,rgba(4,4,4,.85));
  opacity:0;transition:opacity .16s;
}
.frame:hover .frame__acts{opacity:1}
.frame__acts button{
  width:26px;height:26px;border-radius:6px;background:rgba(20,20,20,.9);color:#CDCCCA;
  display:grid;place-items:center;transition:.13s;
}
.frame__acts svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2.2}
.frame__acts button:hover:not(:disabled){background:var(--orange);color:var(--ink)}
.frame__acts button:disabled{opacity:.35}
.frame__acts .frame__del:hover{background:var(--red);color:#fff}
.frame__cover{
  position:absolute;right:6px;top:6px;padding:4px 9px;border-radius:5px;
  background:rgba(8,8,8,.78);color:var(--orange);font-size:9.5px;font-weight:700;
  opacity:0;transition:.15s;
}
.frame:hover .frame__cover{opacity:1}
.frame__cover:hover{background:var(--orange);color:var(--ink)}
.frame--add{
  display:grid;place-content:center;justify-items:center;gap:3px;
  outline:1.5px dashed #2E2E2C;outline-offset:-6px;transition:.16s;
}
.frame--add svg{width:18px;height:18px;stroke:var(--dim);fill:none;stroke-width:1.8;margin-bottom:3px}
.frame--add b{font-size:11.5px;color:#CDCCCA}
.frame--add small{font-size:9.5px;color:var(--dim)}
.frame--add:hover{outline-color:var(--orange);background:var(--o08)}
.stud__demofill{margin-top:11px}

/* ── slug satırı ── */
.stud__slugrow{
  display:flex;align-items:center;gap:0;height:44px;border-radius:9px;background:var(--surface);overflow:hidden;
}
.stud__slugrow em{
  font-style:normal;font-family:var(--f-mono);font-size:12px;color:var(--dim);
  padding:0 2px 0 13px;white-space:nowrap;
}
.stud__slugrow input{
  flex:1;min-width:0;height:100%;background:none;border:0;outline:none;
  color:var(--orange);font-family:var(--f-mono);font-size:12.5px;
}
.stud__slugrow input:disabled{color:#B6B4B1}
.stud__lock{font-size:10.5px;font-weight:700;color:var(--orange)}
.stud__lock:hover{text-decoration:underline}

/* ── bölüm işaretleri ── */
.chaped{display:grid;gap:7px}
.chapedr{display:flex;gap:7px}
.chapedr input{
  height:40px;border-radius:8px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font:inherit;font-size:12.5px;padding:0 11px;transition:border-color .15s;
}
.chapedr input:focus{outline:none;border-color:var(--o40)}
.chapedr__t{width:76px;flex:none;font-family:var(--f-mono) !important;text-align:center}
.chapedr__t.bad{border-color:rgba(255,31,61,.5);color:#FF6A80}
.chapedr__l{flex:1;min-width:0}
.chaped__add{
  height:38px;border-radius:8px;background:var(--o08);color:var(--orange);
  font-size:12px;font-weight:700;transition:.15s;
}
.chaped__add:hover{background:var(--o14)}

/* ── kontrol listesi ── */
.studcheck ul{list-style:none;margin:0 0 12px;padding:0;display:grid;gap:8px}
.studcheck li{
  display:flex;align-items:center;gap:10px;font-size:12px;color:var(--dim);transition:color .2s;
}
.studcheck li i{
  width:18px;height:18px;flex:none;border-radius:50%;background:var(--surface);
  box-shadow:inset 0 0 0 1px #2E2E2C;display:grid;place-items:center;transition:.2s;
}
.studcheck li i svg{width:10px;height:10px;stroke:var(--ink);fill:none;stroke-width:3.4}
.studcheck li.ok{color:#CDCCCA}
.studcheck li.ok i{background:var(--orange);box-shadow:none}
.studcheck__bar{height:5px;border-radius:3px;background:rgba(255,255,255,.07);overflow:hidden}
.studcheck__bar i{display:block;height:100%;border-radius:3px;background:var(--orange);transition:width .4s var(--ease)}
.studcheck > small{display:block;margin-top:7px;font-family:var(--f-mono);font-size:10px;color:var(--dim)}

/* ── kapak ── */
.coverset img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:9px;display:block}
.coverset__acts{display:flex;align-items:center;gap:8px;margin-top:10px}
.coverset__acts .btn{flex:1;height:36px;font-size:12px;justify-content:center}
.coverempty p{margin:0 0 11px;font-size:11.5px;color:var(--dim);line-height:1.6}
.coverempty .btn{width:100%;height:38px;justify-content:center;font-size:12.5px}

/* ── radyo seti ── */
.radioset{display:grid;gap:7px;margin-bottom:4px}
.radioset__i{
  display:flex;align-items:center;gap:11px;padding:11px 12px;border-radius:10px;text-align:left;
  background:var(--surface);box-shadow:inset 0 0 0 1px transparent;transition:.15s var(--ease);
}
.radioset__i:hover{background:var(--raised)}
.radioset__i.on{background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40)}
.radioset__i i{
  width:16px;height:16px;flex:none;border-radius:50%;box-shadow:inset 0 0 0 1.5px #2E2E2C;transition:.15s;
}
.radioset__i.on i{box-shadow:inset 0 0 0 5px var(--orange)}
.radioset__i b{display:block;font-size:12.5px;font-weight:700;color:#E9E8E6}
.radioset__i small{display:block;font-size:10.5px;color:var(--dim);margin-top:1px}
.stud__sched{margin-top:11px}
.stud__sched input{color-scheme:dark}

/* ── SEO önizleme ── */
.serp{
  display:grid;gap:3px;margin-bottom:13px;padding:12px 14px;border-radius:10px;background:var(--surface);
}
.serp b{
  font-size:14px;font-weight:600;color:#8AB4F8;line-height:1.35;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.serp em{font-style:normal;font-size:11px;color:#7BE39A}
.serp p{margin:2px 0 0;font-size:11.5px;color:var(--muted);line-height:1.5}

/* tehlikeli bölge */
.studdanger{box-shadow:inset 0 0 0 1px rgba(255,31,61,.28)}
.studdanger .stud__t{color:#FF6A80}
.studdanger p{margin:0 0 11px;font-size:11.5px;color:var(--muted);line-height:1.6}
.studdanger .btn{width:100%;justify-content:center;height:40px}

/* yayınla butonu eksikken soluk */
.dash__acts .btn.is-off{opacity:.55}

/* ── mobil ── */
@media (max-width:1100px){
  .studcheck{order:-1}
}
@media (max-width:640px){
  .frames{grid-template-columns:1fr 1fr}
  .frame__acts,.frame__cover{opacity:1}
  .drop__acts{flex-direction:column;gap:9px;width:100%}
  .drop__acts .btn{width:100%;justify-content:center;height:44px}
  .chapedr__t{width:66px}
  .stud__inline{flex-wrap:wrap}
  .stud__inline select{width:100%;height:44px;font-size:16px}
  .chapedr input,.stud__slugrow input{font-size:16px}
  .stud__sched input{width:100%;height:44px;font-size:16px}
}

/* ════════════════════════════════════════════════════════════
   ADMIN FAZ 3 — üyeler · gelir · krediler
   ════════════════════════════════════════════════════════════ */

/* üye tablosu sütunları */
.atbl--u .atbl__h,.atbl--u .atbl__r{
  grid-template-columns:34px minmax(0,1.9fr) minmax(0,.8fr) minmax(0,.55fr) minmax(0,.7fr) minmax(0,.8fr) minmax(0,.9fr) minmax(0,.9fr);
}
.atbl__open{text-align:left;transition:opacity .13s}
.atbl__open:hover .atbl__vb b{color:var(--orange)}

/* ── üye çekmecesi ── */
.adraw__scrim{
  position:fixed;inset:0;z-index:75;background:rgba(0,0,0,.55);
  animation:pageIn .2s var(--ease) both;
}
.adraw{
  position:fixed;top:0;right:0;bottom:0;z-index:76;width:min(380px,92vw);
  display:flex;flex-direction:column;background:var(--bg-2);border-left:1px solid var(--line);
  animation:drawIn .28s var(--ease) both;overflow-y:auto;
}
@keyframes drawIn{from{transform:translateX(40px);opacity:0}to{transform:none;opacity:1}}
.adraw__h{
  display:flex;align-items:center;gap:12px;padding:17px;border-bottom:1px solid var(--line);
  position:sticky;top:0;background:var(--bg-2);z-index:1;
}
.adraw__h img{width:46px;height:46px;border-radius:50%;object-fit:cover;flex:none}
.adraw__h > div{flex:1;min-width:0}
.adraw__h b{display:flex;align-items:center;gap:8px;font-size:14.5px;font-weight:700}
.adraw__h small{display:block;font-family:var(--f-mono);font-size:10px;color:var(--dim);margin-top:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.adraw__stats{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--line);border-bottom:1px solid var(--line)}
.adraw__stats span{display:grid;gap:2px;padding:13px 17px;background:var(--bg-2)}
.adraw__stats b{font-family:var(--f-display);font-size:16px;font-weight:800;letter-spacing:-.02em;color:#fff}
.adraw__stats small{font-size:10px;color:var(--dim)}
.adraw__sec{padding:14px 17px;border-bottom:1px solid var(--line)}
.adraw__sec--card{padding:12px 16px}
.adraw__tx{display:flex;align-items:baseline;gap:10px;padding:7px 0;font-size:12.5px}
.adraw__tx span{flex:1;min-width:0;color:#CDCCCA}
.adraw__tx b{font-family:var(--f-mono);font-size:11.5px;color:#E9E8E6}
.adraw__tx small{font-size:10px;color:var(--dim);width:52px;text-align:right}
.adraw__kv{display:flex;align-items:baseline;justify-content:space-between;gap:10px;padding:6px 0;font-size:12.5px}
.adraw__kv span{color:var(--muted)}
.adraw__kv b{font-family:var(--f-mono);font-size:12px;color:#E9E8E6}
.adraw__kv b.neg,.txtbl__amt.neg{color:#FF6A80}
.adraw__kv--sum{border-top:1px solid var(--line);margin-top:5px;padding-top:11px}
.adraw__kv--sum b{color:var(--orange);font-size:13.5px}
.adraw__acts{display:grid;gap:8px;padding:15px 17px;margin-top:auto}
.adraw__acts .btn{height:42px;justify-content:center;gap:8px}
.adraw__acts svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}

/* kredi tanımlama seti */
.grantset{display:flex;gap:7px;margin-bottom:16px}
.grantset__i{
  flex:1;height:44px;border-radius:9px;background:var(--surface);
  font-family:var(--f-mono);font-size:14px;font-weight:700;color:#C5C4C2;transition:.15s;
}
.grantset__i:hover{background:var(--raised)}
.grantset__i.on{background:var(--o08);box-shadow:inset 0 0 0 1.5px var(--orange);color:var(--orange)}
.grantset input{
  width:86px;height:44px;border-radius:9px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font-family:var(--f-mono);font-size:14px;text-align:center;transition:border-color .15s;
}
.grantset input:focus{outline:none;border-color:var(--o40)}
.modal__cta svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:3}

/* ── gelir: işlem tablosu ── */
.atb--in{margin:0;gap:8px}
.atb--in .atb__q{min-width:180px;height:36px}
.txtbl{padding-bottom:4px}
.txtbl__h,.txtbl__r{
  display:grid;grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr) minmax(0,1fr) minmax(0,.8fr) minmax(0,.7fr);
  gap:10px;align-items:center;padding:9px 17px;
}
.txtbl__h{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--dim);border-bottom:1px solid var(--line);
}
.txtbl__r{font-size:12.5px;border-bottom:1px solid var(--line);transition:background .13s}
.txtbl__r:last-child{border-bottom:0}
.txtbl__r:hover{background:rgba(255,255,255,.02)}
.txtbl__what b{display:block;font-size:12.5px;font-weight:700;color:#EDECEA;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.txtbl__what small{display:block;font-family:var(--f-mono);font-size:9.5px;color:var(--dim);margin-top:2px}
.txtbl__ava{width:26px;height:26px;border-radius:50%;object-fit:cover;flex:none}
.txtbl__who{font-size:12px;font-weight:700;color:#CDCCCA;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.txtbl__amt{font-family:var(--f-mono);font-size:12px;font-weight:700;color:#7BE39A;text-align:right}
.apag--in{padding:10px 17px 12px;margin-top:0}
.split--solo{padding-top:14px}
.split__leg--col{flex-direction:column;gap:8px}

/* ── krediler: tarife ── */
.tariff{padding:8px 0}
.tariff__r{display:flex;align-items:center;gap:13px;padding:10px 17px;border-bottom:1px solid var(--line)}
.tariff__r:last-child{border-bottom:0}
.tariff__r > b{flex:1;min-width:0;font-size:13px;font-weight:700;color:#E9E8E6}
.tariff__in{
  display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 11px;border-radius:8px;
  background:var(--surface);transition:box-shadow .15s;
}
.tariff__in:focus-within{box-shadow:inset 0 0 0 1.5px var(--o40)}
.tariff__in input{
  width:52px;background:none;border:0;outline:none;color:var(--orange);
  font-family:var(--f-mono);font-size:14px;font-weight:700;text-align:right;
}
.tariff__in input::-webkit-outer-spin-button,.tariff__in input::-webkit-inner-spin-button{-webkit-appearance:none}
.tariff__in small{font-size:10.5px;color:var(--dim)}

/* paket tablosu */
.packtbl{padding-bottom:6px}
.packtbl__h,.packtbl__r{
  display:grid;grid-template-columns:minmax(0,1.5fr) minmax(0,.9fr) minmax(0,.6fr) minmax(0,.9fr) minmax(0,1fr);
  gap:12px;align-items:center;padding:10px 17px;
}
.packtbl__h{
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--dim);border-bottom:1px solid var(--line);
}
.packtbl__r{border-bottom:1px solid var(--line)}
.packtbl__r:last-child{border-bottom:0}
.packtbl__n b{display:block;font-size:13px;font-weight:700;color:#EDECEA}
.packtbl__n small{display:block;font-size:10.5px;color:var(--dim);margin-top:2px}
.packtbl__share{display:flex;align-items:center;gap:8px}
.packtbl__share i{
  display:block;flex:1;height:5px;border-radius:3px;background:rgba(255,255,255,.07);overflow:hidden;
}
.packtbl__share i b{display:block;height:100%;border-radius:3px;background:var(--orange)}
.packtbl__share small{font-family:var(--f-mono);font-size:10.5px;color:var(--muted);width:32px}

/* toplist genişletme (krediler sayfası avatarlı satırlar) */
.toplist__r .txtbl__ava{margin-right:2px}

/* ── mobil ── */
@media (max-width:960px){
  .atbl--u .atbl__r{grid-template-columns:auto minmax(0,1fr) auto}
  .atbl--u .atbl__r > span:nth-child(n+3){grid-column:2/-1}
  .txtbl__h{display:none}
  .txtbl__r{grid-template-columns:minmax(0,1.4fr) auto;gap:5px 10px;padding:11px 14px}
  .txtbl__r > .atbl__vid{grid-column:1}
  .txtbl__r > .txtbl__what{grid-column:1}
  .txtbl__amt{grid-column:2;grid-row:1;text-align:right}
  .txtbl__r > .atbl__dim{grid-column:1;display:inline}
  .packtbl__h{display:none}
  .packtbl__r{grid-template-columns:minmax(0,1fr) auto;gap:6px 12px;padding:12px 14px}
  .packtbl__r > *:nth-child(n+3){grid-column:1/-1}
}
@media (max-width:640px){
  .grantset{flex-wrap:wrap}
  .grantset__i{min-width:64px}
  .grantset input{flex:1;font-size:16px}
  .tariff__in input{font-size:16px}
  .adraw{width:100vw;border-left:0}
  .atb--in .atb__q{flex-basis:100%}
}
.abstat.live .abstat__b{color:var(--red)}
.abstat.live .abstat__b i{background:var(--red);animation:beat 1.5s infinite}
.acask--btn{gap:8px}
.acask--btn button{height:40px;padding:0 14px}
.camtile.off .camtile__ph img{filter:grayscale(.7) brightness(.35)}
.camtile.main .camtile__ph{box-shadow:inset 0 0 0 2px var(--orange)}
.camtile .tgl:disabled{opacity:.4;cursor:not-allowed}
.abwords .pipeline__t{margin-bottom:9px}
.abflags .pipeline__t{padding:8px 17px 4px}
.abkey__b .btn{flex:1;height:36px;font-size:11.5px;padding:0 8px;justify-content:center}
.aschday.today{box-shadow:inset 0 0 0 1px var(--o40)}
.aschform .btn{height:40px;padding:0 15px;font-size:12.5px;gap:7px;flex:none}
.aschform .btn svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:3}
.aschslot.live{background:rgba(255,31,61,.05)}
.aschslot__tag.prem{background:var(--o14);color:var(--orange)}
.aschslot__tag.live{background:var(--red);color:#fff;cursor:default}

/* ── duyurular ── */
.aan__targets{grid-template-columns:repeat(3,1fr);margin-bottom:15px}
.aan__ch{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:16px}
.aan__ch .acflag{height:36px;padding:0 13px;font-size:12px}
.aan__h,.aan__r{grid-template-columns:minmax(0,1.7fr) minmax(0,.8fr) minmax(0,.9fr) minmax(0,.6fr) minmax(0,.5fr)}
.aan__phone{
  border-radius:14px;background:var(--surface);padding:14px;
}
.aan__notif{
  display:flex;gap:11px;padding:12px 13px;border-radius:12px;
  background:rgba(30,30,30,.92);box-shadow:0 10px 30px -14px #000;
}
.aan__notif img{width:34px;height:34px;flex:none;border-radius:8px;object-fit:contain;background:#000;padding:4px}
.aan__notif > div{min-width:0}
.aan__notif b{display:block;font-size:12.5px;font-weight:700;color:#F4F3F1;line-height:1.3}
.aan__notif p{margin:3px 0 0;font-size:11.5px;color:#B6B4B1;line-height:1.45}
.aan__notif small{display:block;margin-top:5px;font-size:9.5px;color:var(--dim)}
.aan__hint{
  display:flex;align-items:flex-start;gap:8px;margin:12px 0 0;font-size:11px;color:var(--dim);line-height:1.55;
}
.aan__hint svg{width:12px;height:12px;flex:none;stroke:#7BE39A;fill:none;stroke-width:3;margin-top:1px}

/* ── destek ── */
.tklist{display:grid;gap:8px}
.tkrow{
  display:flex;align-items:center;gap:13px;padding:13px 16px;border-radius:12px;text-align:left;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);transition:.15s;
}
.tkrow:hover{box-shadow:inset 0 0 0 1px #262625;transform:translateX(2px)}
.tkrow.hi{box-shadow:inset 0 0 0 1px rgba(255,31,61,.3)}
.tkrow img{width:36px;height:36px;border-radius:50%;object-fit:cover;flex:none}
.tkrow__b{flex:1;min-width:0}
.tkrow__b b{display:flex;align-items:center;gap:8px;font-size:13.5px;font-weight:700;color:#EDECEA}
.tkrow__b b u{
  text-decoration:none;padding:2px 7px;border-radius:3px;background:rgba(255,31,61,.12);
  color:#FF6A80;font-size:9px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
}
.tkrow__b small{display:block;font-family:var(--f-mono);font-size:10px;color:var(--dim);margin-top:3px}
.adraw--w{width:min(460px,94vw)}
.tkthread{flex:1;padding:15px 17px;display:grid;gap:11px;align-content:start}
.tkmsg{max-width:88%;padding:11px 13px;border-radius:11px 11px 11px 4px;background:var(--surface)}
.tkmsg.me{justify-self:end;border-radius:11px 11px 4px 11px;background:var(--o08)}
.tkmsg p{margin:0;font-size:12.5px;color:#DAD8D5;line-height:1.55}
.tkmsg small{display:block;margin-top:6px;font-size:9.5px;color:var(--dim)}
.tkreply{padding:13px 17px;border-top:1px solid var(--line);display:grid;gap:9px}
.tkcanned{display:flex;gap:6px;flex-wrap:wrap}
.tkcanned .srchip{height:30px;padding:0 11px;font-size:11px}
.tkreply textarea{
  width:100%;border-radius:9px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font:inherit;font-size:13px;padding:10px 12px;resize:vertical;min-height:70px;
}
.tkreply textarea:focus{outline:none;border-color:var(--o40)}
.tkreply__b{display:flex;gap:8px;justify-content:flex-end}
.tkreply__b .btn{height:38px;padding:0 15px;font-size:12.5px;gap:7px}
.tkreply__b svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:3}
.tkreply--closed{align-items:center;text-align:center}
.tkreply--closed p{margin:0;font-size:12.5px;color:var(--dim)}

/* ── ayarlar ── */
.ast__sel{
  height:38px;border-radius:8px;background:var(--surface);border:1px solid transparent;
  color:var(--text);font:inherit;font-size:13px;padding:0 11px;
}
.ast__sel:focus{outline:none;border-color:var(--o40)}
.ast__quick{display:grid;gap:8px}
.ast__quick .btn{height:40px;justify-content:center;font-size:12.5px}
.ast .opt{padding:13px 17px}

/* ── mobil ── */
@media (max-width:960px){
  .aan__targets{grid-template-columns:1fr}
  .aan__h{display:none}
  .aan__r{grid-template-columns:minmax(0,1fr) auto;gap:5px 10px}
  .aan__r > span:nth-child(n+2){grid-column:1}
  .aan__r > .txtbl__amt{grid-column:2;grid-row:1}
}
@media (max-width:640px){
  .aschform .btn{flex:1}
  .abkey__b .btn{min-width:90px}
  .tkreply textarea{font-size:16px}
  .abwords .tagedit input{font-size:16px}
  .adraw--w{width:100vw}
}

/* ════════════════════════════════════════════════════════════
   MOBİL FORM DAVRANIŞI — native app hissi
   iOS Safari 16px altındaki alanlara odaklanınca sayfayı zoomlar.
   Metin girilen tüm alanları mobilde 16px'e sabitleyerek bunu engelliyoruz.
   ════════════════════════════════════════════════════════════ */
@media (max-width:700px){
  input[type="text"],input[type="email"],input[type="password"],input[type="search"],
  input[type="tel"],input[type="url"],input[type="number"],input:not([type]),
  textarea,select{font-size:16px}
  /* dokunma vurgusu tarayıcı varsayılanı yerine temanın kendi durumları */
  a,button,label,input,textarea,select{-webkit-tap-highlight-color:rgba(255,144,0,.14)}
}

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


/* ════════════════════════════════════════════════════════════
   OYUNCULAR — tek sıra slider
   ════════════════════════════════════════════════════════════ */
.actors{position:relative}
.actors__track{
  display:flex;gap:14px;overflow-x:auto;overscroll-behavior-x:contain;
  scroll-snap-type:x proximity;scroll-padding-left:2px;
  padding:2px 2px 10px;margin:0 -2px;
  scrollbar-width:none;-ms-overflow-style:none;
}
.actors__track::-webkit-scrollbar{display:none}

.actor{
  position:relative;flex:0 0 176px;width:176px;scroll-snap-align:start;
  display:block;transition:transform .25s var(--ease);
}
.actor:hover{transform:translateY(-3px)}
.actor__ph{
  position:relative;display:block;aspect-ratio:3/4;border-radius:10px;overflow:hidden;
  background:#0C0C0C;box-shadow:inset 0 0 0 1px var(--line);
}
.actor__ph img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease),filter .25s}
.actor:hover .actor__ph img{transform:scale(1.05)}
.actor__ph::after{
  content:"";position:absolute;inset:auto 0 0;height:52%;
  background:linear-gradient(transparent,rgba(0,0,0,.72));pointer-events:none;
}
.actor__on,.actor__rank,.actor__new{
  position:absolute;top:9px;left:9px;z-index:2;
  font-family:var(--f-mono);font-size:9.5px;letter-spacing:.1em;
  padding:4px 7px;border-radius:5px;
}
.actor__on{display:inline-flex;align-items:center;gap:5px;background:rgba(4,4,4,.72);color:#7BE39A;backdrop-filter:blur(6px)}
.actor__on i{width:5px;height:5px;border-radius:50%;background:#4CC26B}
.actor__rank{background:var(--orange);color:var(--ink);font-weight:700}
.actor__new{background:rgba(4,4,4,.72);color:var(--orange);backdrop-filter:blur(6px)}
.actor__id{display:flex;align-items:center;gap:6px;margin-top:10px}
.actor__id b{font-size:14px;font-weight:700;color:var(--text);letter-spacing:-.01em}
.actor:hover .actor__id b{color:var(--orange)}
.actor__meta{display:block;margin-top:3px;font-size:12px;color:var(--dim)}

/* kadro sonu kartı */
.actor--all{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  aspect-ratio:3/4;border-radius:10px;text-align:center;
  background:linear-gradient(160deg,var(--o08),var(--surface) 62%);
  box-shadow:inset 0 0 0 1px var(--o40);
}
.actor--all:hover{box-shadow:inset 0 0 0 1.5px var(--orange)}
.actor__allico{
  width:42px;height:42px;border-radius:50%;display:grid;place-items:center;
  background:var(--orange);color:var(--ink);
}
.actor__allico svg{width:19px;height:19px;stroke:currentColor;stroke-width:2.2;fill:none}
.actor--all b{font-size:14px;font-weight:700;color:var(--text)}
.actor--all small{font-size:11.5px;color:var(--dim)}

/* oklar */
.actors__nav{
  position:absolute;top:calc(50% - 34px);z-index:3;width:40px;height:40px;border-radius:50%;
  display:grid;place-items:center;color:var(--text);
  background:rgba(6,6,6,.86);box-shadow:inset 0 0 0 1px var(--line),0 10px 26px -12px #000;
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  transition:opacity .2s,background .2s,transform .2s;
}
.actors__nav svg{width:19px;height:19px;stroke:currentColor;stroke-width:2.2;fill:none}
.actors__nav:hover{background:var(--orange);color:var(--ink);transform:scale(1.06)}
.actors__nav:disabled{opacity:0;pointer-events:none}
.actors__nav--prev{left:-14px}
.actors__nav--next{right:-14px}

@media (max-width:900px){
  .actors__nav{display:none}
  .actors__track{scroll-snap-type:x mandatory}
}
@media (max-width:560px){
  .actor{flex-basis:142px;width:142px}
}


/* ════════════════════════════════════════════════════════════
   ŞİFRE SIFIRLAMA · E-POSTA DOĞRULAMA — durum ikonları
   ════════════════════════════════════════════════════════════ */
.rs__ico{
  display:grid;place-items:center;width:54px;height:54px;border-radius:15px;margin-bottom:18px;
  font-family:var(--f-display);font-size:26px;font-weight:800;
}
.rs__ico--ok{background:rgba(76,194,107,.13);color:#4CC26B}
.rs__ico--ok svg{width:26px;height:26px;stroke:currentColor;stroke-width:2.6;fill:none}
.rs__ico--warn{background:rgba(255,59,84,.12);color:#FF3B54}
.rs__ico--mail{background:var(--o14);color:var(--orange)}
.rs__ico--mail svg{width:27px;height:27px}

.rs__rules{list-style:none;margin:14px 0 4px;padding:0;display:grid;gap:7px}
.rs__rules li{
  display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--dim);transition:color .18s;
}
.rs__rules li::before{
  content:"";width:15px;height:15px;flex:none;border-radius:50%;
  box-shadow:inset 0 0 0 1.5px var(--line);transition:.18s;
}
.rs__rules li.ok{color:#8FD6A3}
.rs__rules li.ok::before{
  background:#4CC26B;box-shadow:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  background-size:11px;background-repeat:no-repeat;background-position:center;
}

.vf__hint{
  display:grid;gap:5px;margin:16px 0 4px;padding:13px 15px;border-radius:11px;
  background:var(--surface);box-shadow:inset 0 0 0 1px var(--line);
}
.vf__hint b{font-size:12.5px;font-weight:700;color:#E9E8E6}
.vf__hint span{font-size:12px;color:var(--dim);line-height:1.6}

/* ════════════════════════════════════════════════════════════
   DESTEK TALEPLERİM
   ════════════════════════════════════════════════════════════ */
.tk__bar{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:16px}
.tk__bar .chip em{
  font-style:normal;margin-left:7px;font-family:var(--f-mono);font-size:10px;
  color:var(--dim);
}
.tk__bar .chip.on em{color:var(--ink)}
.tk__new{height:40px;padding:0 17px;font-size:13px}
.tk__new svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.9}

.tk__list{display:grid;gap:10px}
.tk__row{
  border-radius:13px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
  overflow:hidden;transition:box-shadow .18s;
}
.tk__row.on{box-shadow:inset 0 0 0 1px var(--o40)}
.tk__head{
  display:grid;grid-template-columns:auto minmax(0,1fr) auto 22px;gap:14px;align-items:center;
  width:100%;padding:15px 17px;text-align:left;transition:background .14s;
}
.tk__head:hover{background:rgba(255,255,255,.02)}
.tk__st{
  font-family:var(--f-mono);font-size:9px;letter-spacing:.1em;text-transform:uppercase;
  padding:5px 8px;border-radius:5px;white-space:nowrap;
}
.tk__st--orange{background:var(--o14);color:var(--orange)}
.tk__st--green{background:rgba(76,194,107,.13);color:#7BE39A}
.tk__st--dim{background:var(--surface);color:var(--dim)}
.tk__b{min-width:0}
.tk__b b{
  display:block;font-size:14px;font-weight:700;color:#EDECEA;letter-spacing:-.01em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.tk__b small{display:block;margin-top:4px;font-size:11.5px;color:var(--dim)}
.tk__b small em{font-style:normal;font-family:var(--f-mono);color:var(--muted)}
.tk__dot{
  font-style:normal;margin-left:9px;padding:2px 7px;border-radius:4px;
  background:var(--orange);color:var(--ink);font-size:10px;font-weight:700;
}
.tk__last{font-size:11.5px;color:var(--dim);white-space:nowrap}
.tk__caret{display:grid;place-items:center;color:var(--dim);transition:transform .22s}
.tk__caret svg{width:16px;height:16px}
.tk__row.on .tk__caret{transform:rotate(180deg);color:var(--orange)}

.tk__body{padding:0 17px 17px;border-top:1px solid var(--line);animation:pageIn .2s var(--ease) both}
.tk__thread{display:grid;gap:10px;padding:16px 0}
.tkm{
  max-width:82%;padding:12px 14px;border-radius:12px;
  background:var(--surface);box-shadow:inset 0 0 0 1px var(--line);
}
.tkm--me{margin-left:auto;background:linear-gradient(135deg,var(--o08),var(--surface) 60%)}
.tkm__who{
  display:block;font-family:var(--f-mono);font-size:9.5px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--orange);margin-bottom:6px;
}
.tkm--me .tkm__who{color:var(--muted)}
.tkm p{margin:0;font-size:13px;color:#CDCCCA;line-height:1.65}
.tkm small{display:block;margin-top:7px;font-size:10.5px;color:var(--dim)}

.tk__reply{display:grid;gap:9px}
.tk__reply textarea{
  width:100%;padding:12px 14px;border-radius:10px;resize:vertical;
  background:var(--surface);border:1px solid var(--line);color:var(--text);
  font:inherit;font-size:13px;line-height:1.6;transition:border-color .16s;
}
.tk__reply textarea:focus{outline:none;border-color:var(--o40)}
.tk__replyacts{display:flex;gap:8px;justify-content:flex-end;flex-wrap:wrap}
.tk__replyacts .btn{height:40px;padding:0 18px;font-size:13px}
.tk__note{margin-top:11px;font-size:11.5px;color:var(--dim);line-height:1.6}

.tk__closed{
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  padding:14px 15px;border-radius:11px;background:var(--surface);
  box-shadow:inset 0 0 0 1px var(--line);
}
.tk__closed span{font-size:12.5px;color:var(--muted)}
.tk__closed .btn{height:38px;padding:0 16px;font-size:12.5px}

.tk__empty{
  display:grid;justify-items:center;gap:9px;text-align:center;padding:46px 20px;
  border-radius:14px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.tk__emptyico{
  display:grid;place-items:center;width:52px;height:52px;border-radius:14px;
  background:var(--o08);color:var(--orange);margin-bottom:4px;
}
.tk__emptyico svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.8}
.tk__empty b{font-family:var(--f-display);font-size:17px;font-weight:800;letter-spacing:-.02em}
.tk__empty p{font-size:13px;color:var(--dim);max-width:38ch;line-height:1.6}
.tk__empty .btn{margin-top:6px;height:40px;padding:0 18px;font-size:13px}

@media (max-width:700px){
  .tk__head{grid-template-columns:auto minmax(0,1fr) 20px;gap:11px;padding:13px 14px}
  .tk__last{display:none}
  .tkm{max-width:94%}
  .tk__new{width:100%;justify-content:center}
}


/* ════════════════════════════════════════════════════════════
   MODEL PROFİLİ — takip et
   ════════════════════════════════════════════════════════════ */
.mp__follow{
  display:inline-flex;align-items:center;gap:8px;height:42px;padding:0 20px;border-radius:9px;
  background:var(--orange);color:var(--ink);font-size:13.5px;font-weight:700;
  transition:.18s var(--ease);white-space:nowrap;
}
.mp__follow svg{width:16px;height:16px;stroke:currentColor;fill:none}
.mp__follow:hover{filter:brightness(1.08)}
.mp__follow.on{
  background:transparent;color:var(--orange);
  box-shadow:inset 0 0 0 1.5px var(--o40);
}
.mp__follow.on:hover{box-shadow:inset 0 0 0 1.5px var(--orange);filter:none}

/* ════════════════════════════════════════════════════════════
   VİDEO — oynatma listesine ekle
   ════════════════════════════════════════════════════════════ */
.plw{position:relative}
.plw__scrim{position:fixed;inset:0;z-index:38}
.plw__pop{
  position:absolute;top:calc(100% + 9px);left:0;z-index:39;width:280px;
  border-radius:13px;background:var(--panel);overflow:hidden;
  box-shadow:inset 0 0 0 1px var(--line),0 26px 60px -26px #000;
  animation:pageIn .16s var(--ease) both;
}
.plw__pop header{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 15px;border-bottom:1px solid var(--line);
}
.plw__pop header b{font-size:13px;font-weight:700}
.plw__pop header button{width:24px;height:24px;border-radius:6px;color:var(--dim);font-size:17px;line-height:1;transition:.14s}
.plw__pop header button:hover{background:var(--surface);color:#fff}

.plw__list{display:grid;padding:6px}
.plw__row{display:flex;align-items:center;gap:11px;padding:9px 10px;border-radius:8px;cursor:pointer;transition:background .13s}
.plw__row:hover{background:var(--surface)}
.plw__row input{position:absolute;opacity:0;width:0;height:0}
.plw__box{
  width:19px;height:19px;flex:none;border-radius:5px;display:grid;place-items:center;
  box-shadow:inset 0 0 0 1.5px var(--line);transition:.16s;color:var(--ink);
}
.plw__box svg{width:12px;height:12px;opacity:0;transition:opacity .14s}
.plw__row input:checked + .plw__box{background:var(--orange);box-shadow:none}
.plw__row input:checked + .plw__box svg{opacity:1}
.plw__nm{min-width:0}
.plw__nm b{display:block;font-size:13px;font-weight:600;color:#E9E8E6}
.plw__nm small{display:block;margin-top:2px;font-size:11px;color:var(--dim)}

.plw__new{display:flex;gap:7px;padding:9px 12px;border-top:1px solid var(--line)}
.plw__new input{
  flex:1;min-width:0;height:36px;padding:0 11px;border-radius:8px;
  background:var(--surface);border:1px solid transparent;color:var(--text);
  font:inherit;font-size:12.5px;transition:border-color .15s;
}
.plw__new input:focus{outline:none;border-color:var(--o40)}
.plw__new .btn{height:36px;padding:0 13px;font-size:12px}
.plw__all{
  display:block;padding:11px 15px;border-top:1px solid var(--line);
  font-size:12.5px;font-weight:700;color:var(--orange);transition:background .13s;
}
.plw__all:hover{background:var(--surface)}

/* mobil: açılır menü yerine native alt-sayfa (bottom sheet) */
@media (max-width:700px){
  .plw{position:static}
  .plw__scrim{
    z-index:120;background:rgba(2,2,2,.62);
    -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
    animation:gateFade .2s var(--ease);
  }
  .plw__pop{
    position:fixed;left:0;right:0;bottom:0;top:auto;width:auto;z-index:121;
    max-height:72vh;display:flex;flex-direction:column;
    border-radius:20px 20px 0 0;
    padding-bottom:env(safe-area-inset-bottom);
    box-shadow:inset 0 0 0 1px var(--line),0 -30px 80px -30px #000;
    animation:sheetUp .28s var(--ease);
  }
  .plw__pop::before{
    content:"";position:absolute;top:8px;left:50%;translate:-50% 0;
    width:38px;height:4px;border-radius:99px;background:var(--raised);
  }
  .plw__pop header{padding:20px 18px 13px}
  .plw__pop header b{font-size:15px}
  .plw__pop header button{width:36px;height:36px;border-radius:9px;font-size:20px}
  .plw__list{padding:8px;overflow-y:auto;-webkit-overflow-scrolling:touch}
  .plw__row{padding:12px;gap:13px;border-radius:10px}
  .plw__row:active{background:var(--raised)}
  .plw__box{width:23px;height:23px;border-radius:6px}
  .plw__box svg{width:14px;height:14px}
  .plw__nm b{font-size:14px}
  .plw__nm small{font-size:11.5px;margin-top:3px}
  .plw__new{padding:11px 14px;gap:8px}
  .plw__new input{height:46px;font-size:16px;border-radius:10px}   /* 16px: iOS zoom'u engeller */
  .plw__new .btn{height:46px;padding:0 17px;font-size:13px;border-radius:10px}
  .plw__all{padding:15px 18px;font-size:13.5px;text-align:center}
}

/* ════════════════════════════════════════════════════════════
   ÖDEME SONUCU — başarılı / başarısız
   ════════════════════════════════════════════════════════════ */
.pres__ico{
  display:grid;place-items:center;width:56px;height:56px;border-radius:16px;margin:0 auto 16px;
}
.pres__ico svg{width:27px;height:27px;stroke:currentColor;fill:none}
.pres__ico--ok{background:rgba(76,194,107,.14);color:#4CC26B}
.pres__ico--fail{background:rgba(255,59,84,.13);color:#FF3B54}

.pres__sum{display:grid;gap:1px;margin:18px 0 4px;background:var(--line);border-radius:11px;overflow:hidden;text-align:left}
.pres__sum > div{display:flex;align-items:baseline;justify-content:space-between;gap:12px;padding:11px 15px;background:var(--panel)}
.pres__sum dt{font-size:12px;color:var(--dim)}
.pres__sum dd{margin:0;font-size:13px;font-weight:700;color:#E9E8E6}
.pres__no{font-family:var(--f-mono);font-size:12px!important;color:var(--orange)!important}

.pres__why{list-style:none;margin:16px 0 4px;padding:0;display:grid;gap:8px;text-align:left}
.pres__why li{
  position:relative;padding-left:20px;font-size:12.5px;color:var(--muted);line-height:1.6;
}
.pres__why li::before{
  content:"";position:absolute;left:0;top:7px;width:6px;height:6px;border-radius:50%;background:#FF3B54;opacity:.7;
}

.pres__acts{display:flex;gap:9px;margin-top:20px}
.pres__acts .btn{flex:1;height:46px;justify-content:center;font-size:13.5px}

@media (max-width:520px){
  .pres__acts{flex-direction:column}
}

/* ════════════════════════════════════════════════════════════
   ADMIN — çekmece form alanları + ikon seçici
   ════════════════════════════════════════════════════════════ */
.afld{display:grid;gap:6px;margin-bottom:12px}
.afld > span{font-size:11.5px;font-weight:600;color:var(--dim)}
.afld input,.afld textarea{
  width:100%;padding:10px 12px;border-radius:9px;
  background:var(--surface);border:1px solid var(--line);color:var(--text);
  font:inherit;font-size:13px;transition:border-color .15s;resize:vertical;
}
.afld input:focus,.afld textarea:focus{outline:none;border-color:var(--o40)}

.adraw__h--cat{gap:12px}
.adraw__h--cat .acrow__ico{width:46px;height:46px;flex:none}

.cati{display:grid;grid-template-columns:repeat(8,1fr);gap:6px}
.cati__b{
  aspect-ratio:1;display:grid;place-items:center;border-radius:8px;
  background:var(--surface);color:var(--dim);transition:.14s;
}
.cati__b svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.7}
.cati__b:hover{background:var(--raised);color:var(--text)}
.cati__b.on{background:var(--o14);color:var(--orange);box-shadow:inset 0 0 0 1.5px var(--o40)}

.acflag--edit{color:var(--muted)!important}
.acflag--edit:hover{color:var(--orange)!important}
.acflag--edit svg{width:14px;height:14px}

@media (max-width:640px){
  .cati{grid-template-columns:repeat(6,1fr)}
}


/* ── admin: yeni oyuncu — giriş bilgileri kutusu ── */
.nact__cred{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 14px;border-radius:10px;background:var(--surface);
  box-shadow:inset 0 0 0 1px var(--line);margin-bottom:10px;
}
.nact__cred small{display:block;font-size:10.5px;color:var(--dim);margin-bottom:4px}
.nact__cred b{font-family:var(--f-mono);font-size:14px;font-weight:700;color:var(--orange);letter-spacing:.02em}
.nact__cred .btn{height:34px;padding:0 14px;font-size:12px;white-space:nowrap}
.nact__note{font-size:11.5px;color:var(--dim);line-height:1.6}
.adraw form{display:contents}

/* ════════════════════════════════════════════════════════════
   KAPILAR — 18+ yaş onayı & çerez bandı
   ════════════════════════════════════════════════════════════ */
body.no-scroll{overflow:hidden}

.agegate{
  position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:18px;
  background:rgba(2,2,2,.88);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  animation:gateFade .3s var(--ease);
}
@keyframes gateFade{from{opacity:0}to{opacity:1}}
.agegate.out{opacity:0;transition:opacity .26s var(--ease)}
.agegate__amb{
  position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(52% 40% at 50% 0%,var(--o08),transparent 70%);
}
.agegate__box{
  animation:reelsIn .3s var(--ease);
  position:relative;width:min(440px,100%);padding:28px 28px 22px;border-radius:18px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line),0 50px 110px -40px #000;
  overflow:hidden;isolation:isolate;
}
.agegate__box::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(70% 46% at 50% -8%,var(--o08),transparent 72%);
}
.agegate__line{
  position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--orange) 30%,#FFB443 50%,var(--orange) 70%,transparent);
}
.agegate__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.agegate__badge{
  display:grid;place-items:center;width:44px;height:44px;border-radius:12px;
  font-family:var(--f-display);font-size:15px;font-weight:800;letter-spacing:-.02em;
  color:var(--orange);background:var(--o08);box-shadow:inset 0 0 0 1.5px var(--o40);
}
.agegate__kick{color:var(--orange);letter-spacing:.18em}
.agegate__box h2{
  font-family:var(--f-display);font-size:clamp(21px,5.6vw,24px);font-weight:800;
  letter-spacing:-.03em;line-height:1.15;margin-top:9px;text-wrap:balance;
}
.agegate__sub{margin-top:10px;font-size:13px;color:var(--muted);line-height:1.7}
.agegate__sub b{color:#E9E8E6}
.agegate__rules{margin:16px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.agegate__rules li{
  display:flex;gap:10px;align-items:flex-start;padding:11px 13px;border-radius:10px;
  background:var(--surface);font-size:12.5px;color:var(--muted);line-height:1.6;text-align:left;
}
.agegate__rules i{
  flex:none;width:6px;height:6px;border-radius:50%;margin-top:6px;
  background:var(--orange);box-shadow:0 0 8px var(--o40);
}
.agegate__rules a{color:var(--orange);font-weight:600}
.agegate__rules a:hover{text-decoration:underline}
.agegate__acts{display:grid;gap:4px;margin-top:18px}
.agegate__go{height:49px;gap:9px;font-size:14px}
.agegate__go svg{width:17px;height:17px}
.agegate__leave{
  display:grid;place-items:center;height:42px;border-radius:var(--r-sm);
  font-size:12.5px;font-weight:600;color:var(--dim);transition:.15s;
}
.agegate__leave:hover{color:var(--muted);background:var(--surface)}
.agegate__box small{display:block;margin-top:10px;text-align:center;font-size:10.5px;color:var(--dim)}
@media (max-width:480px){
  .agegate{padding:0;align-items:end}
  .agegate__box{width:100%;border-radius:22px 22px 0 0;padding:26px 22px calc(18px + env(safe-area-inset-bottom));animation:sheetUp .32s var(--ease)}
}
@keyframes sheetUp{from{transform:translateY(40px);opacity:0}to{transform:none;opacity:1}}

/* ── çerez bandı: kompakt hap ── */
.cookiebar{
  position:fixed;left:50%;bottom:16px;translate:-50% 0;z-index:150;
  display:flex;align-items:center;gap:12px;max-width:min(560px,calc(100vw - 24px));
  padding:10px 12px 10px 14px;border-radius:999px;
  background:rgba(12,12,12,.96);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  box-shadow:inset 0 0 0 1px var(--line),0 22px 50px -22px #000;
  animation:gateFade .4s var(--ease) .5s backwards;
}
.cookiebar.out{opacity:0;transition:opacity .24s var(--ease)}
.cookiebar__ico{
  flex:none;display:grid;place-items:center;width:34px;height:34px;border-radius:50%;
  color:var(--orange);background:var(--o08);
}
.cookiebar__ico svg{width:17px;height:17px}
.cookiebar p{flex:1;min-width:0;font-size:12.5px;color:var(--muted);line-height:1.45;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cookiebar p a{color:var(--orange);font-weight:600}
.cookiebar p a:hover{text-decoration:underline}
.cookiebar__acts{flex:none;display:flex;gap:6px;align-items:center}
.cookiebar__min{
  height:36px;padding:0 13px;border-radius:999px;font-size:12px;font-weight:700;
  color:var(--muted);transition:.15s;
}
.cookiebar__min:hover{color:#fff;background:var(--raised)}
.cookiebar__ok{height:36px;padding:0 16px;border-radius:999px;font-size:12px}
@media (max-width:480px){
  .cookiebar{left:10px;right:10px;translate:none;max-width:none;bottom:calc(10px + env(safe-area-inset-bottom))}
  .cookiebar p{white-space:normal;font-size:11.5px}
}

/* ════════════════════════════════════════════════════════════
   ÖDEME SONUCU — sağlayıcı dönüş sayfaları
   ════════════════════════════════════════════════════════════ */
.payres{display:grid;place-items:center;min-height:calc(100vh - 240px);padding:36px 16px}
.payres__box{
  position:relative;width:min(470px,100%);text-align:center;padding:32px 26px 22px;
  border-radius:18px;background:var(--panel);overflow:hidden;isolation:isolate;
  box-shadow:inset 0 0 0 1px var(--line),0 40px 90px -40px #000;
  animation:reelsIn .3s var(--ease);
}
.payres__box--ok::before,.payres__box--no::before{content:"";position:absolute;inset:0;z-index:-1}
.payres__box--ok::before{background:radial-gradient(64% 40% at 50% -6%,rgba(76,194,107,.09),transparent 70%)}
.payres__box--no::before{background:radial-gradient(64% 40% at 50% -6%,rgba(255,59,84,.09),transparent 70%)}
.payres__line{position:absolute;top:0;left:0;right:0;height:2px}
.payres__box--ok .payres__line{background:linear-gradient(90deg,transparent,#4CC26B,transparent)}
.payres__box--no .payres__line{background:linear-gradient(90deg,transparent,#FF3B54,transparent)}
.payres__ico{
  display:grid;place-items:center;width:56px;height:56px;margin:2px auto 0;border-radius:50%;
  animation:payPop .45s var(--ease) .1s backwards;
}
.payres__ico svg{width:26px;height:26px;stroke:currentColor;fill:none}
.payres__ico--ok{background:rgba(76,194,107,.13);color:#4CC26B;box-shadow:0 0 0 8px rgba(76,194,107,.05)}
.payres__ico--no{background:rgba(255,59,84,.12);color:#FF3B54;box-shadow:0 0 0 8px rgba(255,59,84,.05)}
@keyframes payPop{from{transform:scale(.5);opacity:0}60%{transform:scale(1.08)}to{transform:none;opacity:1}}
.payres__box h1{font-family:var(--f-display);font-size:clamp(21px,5.4vw,24px);font-weight:800;letter-spacing:-.03em;margin-top:15px}
.payres__sub{margin:9px auto 0;max-width:36ch;font-size:13px;color:var(--muted);line-height:1.7}
.payres__box .pres__sum{margin-top:18px}
.payres__st--ok{color:#4CC26B!important;font-weight:700}
.payres__st--no{color:#FF3B54!important;font-weight:700}
.payres__hints{margin:14px 0 0;padding:0;list-style:none;text-align:left;display:grid;gap:7px}
.payres__hints li{
  display:flex;gap:10px;align-items:flex-start;font-size:12.5px;color:var(--muted);line-height:1.6;
  padding:10px 13px;border-radius:10px;background:var(--surface);
}
.payres__hints svg{flex:none;width:14px;height:14px;margin-top:2px;stroke:var(--orange)}
.payres__acts{display:flex;gap:9px;margin-top:20px}
.payres__acts .btn{flex:1;height:47px;font-size:13.5px}
.payres__note{display:flex;gap:8px;align-items:center;justify-content:center;margin-top:15px;font-size:10.5px;color:var(--dim)}
.payres__note svg{flex:none;width:13px;height:13px;stroke:var(--dim)}
@media (max-width:480px){
  .payres{padding:20px 12px;align-items:start}
  .payres__box{padding:26px 18px 18px}
  .payres__acts{flex-direction:column}
}

/* ════════════════════════════════════════════════════════════
   KATEGORİ DETAY
   ════════════════════════════════════════════════════════════ */
.catpage{padding:16px clamp(14px,2.5vw,30px) 46px;max-width:1460px;margin:0 auto}
.catpage__hero{
  position:relative;border-radius:16px;overflow:hidden;isolation:isolate;
  min-height:clamp(180px,26vw,250px);display:flex;align-items:flex-end;background:#000;
}
.catpage__hero>img{
  position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;
  transform:scale(1.04);filter:saturate(1.06);
}
.catpage__fade{
  position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(60% 90% at 12% 100%,rgba(4,4,4,.88),transparent 62%),
    linear-gradient(180deg,rgba(4,4,4,.12) 30%,rgba(4,4,4,.94));
}
.catpage__head{display:flex;align-items:center;gap:16px;padding:clamp(16px,3vw,26px);width:100%}
.catpage__ico{
  flex:none;width:clamp(50px,7vw,62px);height:clamp(50px,7vw,62px);border-radius:15px;
  display:grid;place-items:center;background:rgba(4,4,4,.66);
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  box-shadow:inset 0 0 0 1.5px var(--o40),0 12px 30px -12px #000;
}
.catpage__ico svg{width:45%;height:45%;stroke:var(--orange);fill:none;stroke-width:1.8}
.catpage__head .eyebrow{color:var(--orange);letter-spacing:.18em;display:flex;align-items:center;gap:8px}
.catpage__hot{
  font-style:normal;padding:3px 8px;border-radius:4px;font-size:9px;font-weight:800;
  letter-spacing:.08em;background:var(--orange);color:var(--ink);
}
.catpage__head h1{
  font-family:var(--f-display);font-size:clamp(26px,4.4vw,38px);font-weight:800;
  letter-spacing:-.035em;line-height:1.05;margin-top:6px;
}
.catpage__sub{margin-top:7px;font-size:clamp(12px,1.6vw,13.5px);color:#C9C7C4}
.catpage__bar{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  margin:16px 0 18px;
}
.catpage__n{font-size:12px;color:var(--dim);font-family:var(--f-mono);letter-spacing:.04em}
.catpage__empty{padding:52px 0;text-align:center;font-size:14px;color:var(--dim)}
.catpage__more{display:grid;place-items:center;margin-top:26px}
.catpage__more .btn{height:46px;padding:0 30px}
.catpage__others{margin-top:44px;padding-top:26px;border-top:1px solid var(--line)}
.catpage__others h2{font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em;margin-bottom:14px}
.catpage__chips{display:flex;gap:8px;flex-wrap:wrap}
.catpage__chips .catpill em{font-style:normal}
@media (max-width:640px){
  .catpage{padding-top:10px}
  .catpage__bar .seg{width:100%;overflow-x:auto;scrollbar-width:none}
  .catpage__bar .seg button{white-space:nowrap}
  .catpage__chips{flex-wrap:nowrap;overflow-x:auto;margin:0 -14px;padding:0 14px 6px;scrollbar-width:none}
  .catpage__chips::-webkit-scrollbar{display:none}
  .catpage__chips .catpill{flex:none}
}

/* ════════════════════════════════════════════════════════════
   ADMİN GİRİŞİ
   ════════════════════════════════════════════════════════════ */
.admlogin{
  position:relative;min-height:100vh;min-height:100svh;display:grid;place-items:center;
  padding:20px;background:var(--bg);isolation:isolate;overflow:hidden;
}
.admlogin::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(circle at 1px 1px,rgba(255,255,255,.022) 1px,transparent 0) 0 0/24px 24px,
    radial-gradient(46% 34% at 50% -4%,var(--o08),transparent 64%);
}
.admlogin__box{
  position:relative;width:min(396px,100%);padding:30px 28px 22px;border-radius:18px;
  background:var(--panel);overflow:hidden;
  box-shadow:inset 0 0 0 1px var(--line),0 50px 110px -44px #000;
  animation:reelsIn .3s var(--ease);
}
.admlogin__box::before{
  content:"";position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--orange) 35%,#FFB443 50%,var(--orange) 65%,transparent);
}
.admlogin__brand{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.admlogin__tag{
  font-family:var(--f-mono);font-size:9px;letter-spacing:.22em;color:var(--orange);
  padding:6px 10px;border-radius:6px;background:var(--o08);box-shadow:inset 0 0 0 1px var(--o40);
}
.admlogin__box h1{font-family:var(--f-display);font-size:22px;font-weight:800;letter-spacing:-.03em}
.admlogin__sub{margin:8px 0 20px;font-size:12.5px;color:var(--dim);line-height:1.65}
.admlogin__box .field>span{display:block;margin-bottom:7px;font-size:11.5px;font-weight:700;letter-spacing:.02em;color:var(--muted)}
.admlogin__box .field>span small{font-weight:400;color:var(--dim)}
.admlogin__otp{letter-spacing:.5em;font-family:var(--f-mono)!important;text-align:center;font-size:16px!important}
.admlogin__go{width:100%;height:48px;margin-top:8px;font-size:14px}
.admlogin__sec{
  display:flex;gap:8px;align-items:center;justify-content:center;margin-top:16px;
  font-size:10.5px;color:var(--dim);
}
.admlogin__sec svg{flex:none;width:13px;height:13px;stroke:var(--dim)}
.admlogin__back{
  display:grid;place-items:center;height:40px;margin-top:8px;border-radius:var(--r-sm);
  font-size:12.5px;color:var(--dim);transition:.15s;
}
.admlogin__back:hover{color:var(--orange);background:var(--surface)}
@media (max-width:480px){
  .admlogin{padding:0;align-items:end}
  .admlogin__box{width:100%;border-radius:22px 22px 0 0;padding:26px 20px calc(16px + env(safe-area-inset-bottom));animation:sheetUp .32s var(--ease)}
}

/* ════════════════════════════════════════════════════════════
   BAKIM MODU
   ════════════════════════════════════════════════════════════ */
.maint{
  position:relative;min-height:100vh;min-height:100svh;display:grid;place-items:center;
  padding:20px;background:var(--bg);isolation:isolate;overflow:hidden;
}
.maint::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(circle at 1px 1px,rgba(255,255,255,.022) 1px,transparent 0) 0 0/24px 24px,
    radial-gradient(46% 34% at 50% -4%,var(--o08),transparent 64%);
}
.maint__box{
  position:relative;width:min(430px,100%);text-align:center;padding:36px 28px 26px;
  border-radius:18px;background:var(--panel);overflow:hidden;
  box-shadow:inset 0 0 0 1px var(--line),0 50px 110px -44px #000;
  animation:reelsIn .3s var(--ease);
}
.maint__box::before{
  content:"";position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--orange) 35%,#FFB443 50%,var(--orange) 65%,transparent);
}
.maint__pulse{display:flex;gap:7px;justify-content:center;margin-top:24px}
.maint__pulse i{
  width:9px;height:9px;border-radius:50%;background:var(--orange);
  box-shadow:0 0 12px var(--o40);animation:mpulse 1.2s ease-in-out infinite;
}
.maint__pulse i:nth-child(2){animation-delay:.2s}
.maint__pulse i:nth-child(3){animation-delay:.4s}
@keyframes mpulse{0%,100%{opacity:.25;transform:scale(.75)}50%{opacity:1;transform:scale(1)}}
.maint__box h1{font-family:var(--f-display);font-size:clamp(21px,5.6vw,24px);font-weight:800;letter-spacing:-.03em;margin-top:16px}
.maint__box p{margin:11px auto 0;max-width:34ch;font-size:13px;color:var(--muted);line-height:1.75}
.maint__info{display:grid;gap:1px;margin:20px 0 0;background:var(--line);border-radius:12px;overflow:hidden;text-align:left}
.maint__info>div{display:flex;justify-content:space-between;align-items:center;padding:12px 15px;background:var(--surface);font-size:12.5px}
.maint__info dt{color:var(--dim)}
.maint__info dd{font-weight:700}
.maint__st{display:flex;align-items:center;gap:7px;color:var(--orange)!important}
.maint__st::before{content:"";width:7px;height:7px;border-radius:50%;background:currentColor;animation:mpulse 1.2s ease-in-out infinite}
.maint__box small{display:block;margin-top:16px;font-size:10.5px;color:var(--dim)}

/* ════════════════════════════════════════════════════════════
   KURUMSAL SAYFA WIDGET'LARI
   ════════════════════════════════════════════════════════════ */

/* ── hukuki: "Özetle" kartı ── */
.lg__sum{
  position:relative;margin-bottom:26px;padding:18px 20px 15px;border-radius:14px;
  background:linear-gradient(135deg,var(--o08),var(--panel) 58%);
  box-shadow:inset 0 0 0 1px var(--o40);overflow:hidden;
}
.lg__sum>b{
  display:flex;align-items:center;gap:8px;font-family:var(--f-display);
  font-size:14px;font-weight:800;letter-spacing:-.01em;color:var(--orange);
}
.lg__sum>b svg{width:15px;height:15px;fill:var(--orange);stroke:none}
.lg__sum ul{margin:12px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.lg__sum li{
  display:flex;gap:10px;align-items:flex-start;font-size:13px;color:#D6D4D1;line-height:1.6;
}
.lg__sum li svg{
  flex:none;width:15px;height:15px;margin-top:2px;stroke:var(--orange);
  background:var(--o14);border-radius:5px;padding:2px;
}
.lg__sum small{display:block;margin-top:12px;font-size:10.5px;color:var(--dim)}

/* ── hukuki: bilgi / uyarı kutuları ── */
.lg__call{
  display:flex;gap:11px;align-items:flex-start;margin-top:14px;padding:12px 14px;
  border-radius:10px;background:var(--surface);border-left:3px solid var(--orange);
}
.lg__call svg{flex:none;width:17px;height:17px;margin-top:1px;stroke:var(--orange)}
.lg__call p{margin:0!important;font-size:12.5px!important;color:var(--muted)!important;line-height:1.65!important}
.lg__call--warn{background:rgba(255,59,84,.06);border-left-color:#FF3B54}
.lg__call--warn svg{stroke:#FF3B54}

/* ── destek: sistem durumu şeridi ── */
.sysbar{
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:18px;
  padding:11px 15px;border-radius:12px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);
}
.sysbar__all{
  display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:#4CC26B;
}
.sysbar__all i{
  width:8px;height:8px;border-radius:50%;background:#4CC26B;
  box-shadow:0 0 10px rgba(76,194,107,.6);animation:mpulse 1.6s ease-in-out infinite;
}
.sysbar__it{
  display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--muted);
}
.sysbar__it i{width:6px;height:6px;border-radius:50%;background:#4CC26B}
.sysbar__it.down{color:#FF3B54}
.sysbar__it.down i{background:#FF3B54}
.sysbar small{margin-left:auto;font-size:10.5px;color:var(--dim)}
@media (max-width:700px){
  .sysbar{gap:10px;padding:11px 13px}
  .sysbar small{width:100%;margin-left:0}
}

/* ── SSS: popüler soru çipleri ── */
.hp__pop{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:16px}
.hp__popl{
  display:inline-flex;align-items:center;gap:6px;font-family:var(--f-mono);
  font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--orange);
}
.hp__popl svg{width:13px;height:13px;fill:var(--orange);stroke:none}
.hp__popq{
  height:34px;padding:0 14px;border-radius:999px;font-size:12.5px;font-weight:600;
  color:var(--muted);background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
  transition:.15s;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.hp__popq:hover{color:var(--orange);box-shadow:inset 0 0 0 1px var(--o40)}
@media (max-width:700px){
  .hp__pop{flex-wrap:nowrap;overflow-x:auto;margin-left:calc(var(--pad)*-1);margin-right:calc(var(--pad)*-1);padding:2px var(--pad) 6px;scrollbar-width:none}
  .hp__pop::-webkit-scrollbar{display:none}
  .hp__popq{flex:none;height:38px}
}

/* ── iletişim: yanıt süreleri ── */
.ct__resp{
  margin-top:14px;padding:17px 18px 14px;border-radius:14px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);
}
.ct__resp>b{display:block;font-family:var(--f-display);font-size:14px;font-weight:800;letter-spacing:-.01em;margin-bottom:13px}
.ct__respr{display:grid;grid-template-columns:96px 1fr 62px;gap:11px;align-items:center;margin-bottom:9px}
.ct__respr span{font-size:12px;color:var(--muted)}
.ct__respr i{display:block;height:5px;border-radius:99px;background:var(--raised);overflow:hidden}
.ct__respr i b{display:block;height:100%;border-radius:99px;background:linear-gradient(90deg,var(--orange),#FFB443)}
.ct__respr em{font-style:normal;font-size:11.5px;font-weight:700;color:#E9E8E6;text-align:right;font-variant-numeric:tabular-nums}
.ct__resp small{display:block;margin-top:11px;font-size:10.5px;color:var(--dim)}

/* ── ortaklık: kazanç hesaplayıcı ── */
.afcalc{
  padding:clamp(18px,3vw,28px);border-radius:16px;
  background:linear-gradient(140deg,var(--o06),var(--panel) 55%);
  box-shadow:inset 0 0 0 1px var(--line);
}
.afcalc__in{display:block}
.afcalc__in>span{display:block;font-size:12.5px;font-weight:700;color:var(--muted);margin-bottom:10px}
.afcalc__in input[type=range]{
  width:100%;height:6px;appearance:none;-webkit-appearance:none;border-radius:99px;
  background:linear-gradient(90deg,var(--orange) var(--fill,10%),var(--raised) var(--fill,10%));
  outline:none;cursor:pointer;
}
.afcalc__in input[type=range]::-webkit-slider-thumb{
  appearance:none;-webkit-appearance:none;width:22px;height:22px;border-radius:50%;
  background:var(--orange);border:4px solid #0B0B0A;
  box-shadow:0 0 0 1.5px var(--orange),0 6px 18px -6px var(--orange);
}
.afcalc__in input[type=range]::-moz-range-thumb{
  width:14px;height:14px;border-radius:50%;background:var(--orange);border:4px solid #0B0B0A;
  box-shadow:0 0 0 1.5px var(--orange);
}
.afcalc__in>b{
  display:block;margin-top:11px;font-family:var(--f-display);font-size:clamp(21px,3vw,26px);
  font-weight:800;letter-spacing:-.03em;font-variant-numeric:tabular-nums;
}
.afcalc__in>b small{font-family:var(--f-body);font-size:12px;font-weight:600;color:var(--dim);letter-spacing:0}
.afcalc__mid{display:flex;align-items:center;gap:13px;margin:18px 0}
.afcalc__mid i{flex:1;height:1px;background:var(--line)}
.afcalc__mid span{font-family:var(--f-mono);font-size:11.5px;color:var(--orange);white-space:nowrap}
.afcalc__out{display:grid;grid-template-columns:1fr 1fr;gap:11px}
.afcalc__card{
  padding:17px 18px;border-radius:13px;background:var(--surface);
  box-shadow:inset 0 0 0 1px var(--line);
}
.afcalc__card--main{
  background:linear-gradient(135deg,var(--o08),var(--surface) 60%);
  box-shadow:inset 0 0 0 1.5px var(--o40);
}
.afcalc__card small{display:block;font-family:var(--f-mono);font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--dim)}
.afcalc__card--main small{color:var(--orange)}
.afcalc__card b{
  display:block;margin-top:8px;font-family:var(--f-display);font-size:clamp(22px,3.4vw,30px);
  font-weight:800;letter-spacing:-.03em;font-variant-numeric:tabular-nums;
}
.afcalc__card span{display:block;margin-top:5px;font-size:11.5px;color:var(--muted)}
.afcalc__note{margin:14px 0 0;font-size:11.5px;color:var(--dim);line-height:1.65}
@media (max-width:560px){
  .afcalc__out{grid-template-columns:1fr}
  .afcalc__in input[type=range]{height:8px}
}

/* ════════════════════════════════════════════════════════════
   ETİKET DİZİNİ
   ════════════════════════════════════════════════════════════ */
.tgi{padding:22px clamp(14px,2.5vw,30px) 46px;max-width:1180px;margin:0 auto}
.tgi__hero{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-bottom:18px}
.tgi__hero h1{font-family:var(--f-display);font-size:clamp(26px,4vw,36px);font-weight:800;letter-spacing:-.035em;margin-top:10px}
.tgi__sub{margin-top:9px;font-size:13.5px;color:var(--muted);line-height:1.7;max-width:52ch}
.tgi__search{flex:none;width:min(340px,100%)}
.tgi__bar{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:20px}
.tgi__n{font-size:12px;color:var(--dim);font-family:var(--f-mono)}
.tgi__cloud{display:flex;gap:9px;flex-wrap:wrap;align-items:center}
.tgc{
  display:inline-flex;align-items:center;gap:6px;height:38px;padding:0 14px;border-radius:999px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
  font-size:13px;font-weight:600;color:var(--muted);transition:.16s var(--ease);
}
.tgc i{font-style:normal;color:var(--orange);font-weight:800}
.tgc em{
  font-style:normal;font-family:var(--f-mono);font-size:10px;color:var(--dim);
  background:var(--raised);border-radius:99px;padding:2px 7px;
}
.tgc:hover{color:#fff;box-shadow:inset 0 0 0 1px var(--o40);transform:translateY(-2px)}
.tgc:hover em{color:var(--orange)}
.tgc--m{height:42px;padding:0 16px;font-size:14px;color:#D6D4D1}
.tgc--l{
  height:46px;padding:0 19px;font-size:15px;font-weight:700;color:#fff;
  background:linear-gradient(135deg,var(--o08),var(--panel) 60%);box-shadow:inset 0 0 0 1px var(--o40);
}
.tgi__empty{padding:44px 0;text-align:center;font-size:14px;color:var(--dim)}
@media (max-width:700px){
  .tgi{padding-top:14px}
  .tgi__search{width:100%}
  .tgc{height:40px}
}

/* ════════════════════════════════════════════════════════════
   VİDEONU GÖNDER + BAŞVURU (ortak parçalar)
   ════════════════════════════════════════════════════════════ */
.sv,.ap,.ab{padding:22px clamp(14px,2.5vw,30px) 46px;max-width:1180px;margin:0 auto}
.sv__hero{max-width:64ch;margin-bottom:22px}
.sv__hero h1{font-family:var(--f-display);font-size:clamp(26px,4vw,36px);font-weight:800;letter-spacing:-.035em;margin-top:10px}
.sv__lead{margin-top:10px;font-size:14px;color:var(--muted);line-height:1.75}
.sv__lead b{color:var(--orange)}

.sv__rules{display:grid;grid-template-columns:repeat(4,1fr);gap:11px;margin-bottom:24px}
.sv__rule{
  padding:16px 17px;border-radius:14px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);transition:.18s var(--ease);
}
.sv__rule:hover{transform:translateY(-2px);box-shadow:inset 0 0 0 1px var(--o40)}
.sv__rule span{
  display:grid;place-items:center;width:38px;height:38px;border-radius:10px;
  background:var(--o08);margin-bottom:11px;
}
.sv__rule span svg{width:18px;height:18px;stroke:var(--orange);fill:none;stroke-width:1.8}
.sv__rule b{display:block;font-size:13.5px;font-weight:700}
.sv__rule p{margin:6px 0 0;font-size:12px;color:var(--dim);line-height:1.6}

.sv__form{max-width:640px}
.sv__drop{
  display:grid;place-items:center;gap:3px;text-align:center;padding:36px 20px;border-radius:16px;
  background:var(--panel);cursor:pointer;transition:.18s var(--ease);
  box-shadow:inset 0 0 0 1.5px var(--line);
  background-image:repeating-linear-gradient(-45deg,transparent 0 9px,rgba(255,255,255,.015) 9px 18px);
}
.sv__drop:hover,.sv__drop.drag{box-shadow:inset 0 0 0 1.5px var(--o40);background-color:var(--o06)}
.sv__drop.has{box-shadow:inset 0 0 0 1.5px var(--o40);background-color:var(--o06)}
.sv__dropico{
  display:grid;place-items:center;width:54px;height:54px;border-radius:50%;
  background:var(--o08);margin-bottom:10px;
}
.sv__dropico svg{width:24px;height:24px;stroke:var(--orange)}
.sv__fileico{display:grid;place-items:center;width:54px;height:54px;border-radius:14px;background:var(--o14);margin-bottom:10px}
.sv__fileico svg{width:24px;height:24px;stroke:var(--orange);fill:none;stroke-width:1.8}
.sv__drop b{font-family:var(--f-display);font-size:16px;font-weight:800;letter-spacing:-.02em}
.sv__drop small{font-size:12px;color:var(--dim)}

.sv__fields{margin-top:18px}
.sv__lbl{display:block;font-size:12px;font-weight:700;color:var(--muted);margin:14px 0 8px}
.sv__lbl small{font-weight:400;color:var(--dim)}
.sv__cats{display:flex;gap:7px;flex-wrap:wrap}
.sv__tagf{margin-top:4px}

.sv__consent{display:grid;gap:9px;margin:20px 0 4px}
.sv__chk{
  display:flex;gap:12px;align-items:flex-start;padding:13px 14px;border-radius:11px;
  background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);cursor:pointer;transition:.15s;
}
.sv__chk:hover{box-shadow:inset 0 0 0 1px var(--o40)}
.sv__chk.err{box-shadow:inset 0 0 0 1.5px #FF3B54}
.sv__chk input{position:absolute;opacity:0;width:0;height:0}
.sv__chk i{
  flex:none;width:22px;height:22px;margin-top:1px;border-radius:6px;display:grid;place-items:center;
  box-shadow:inset 0 0 0 1.5px var(--line);color:var(--ink);transition:.16s;
}
.sv__chk i svg{width:13px;height:13px;opacity:0;transition:opacity .14s}
.sv__chk input:checked + i{background:var(--orange);box-shadow:none}
.sv__chk input:checked + i svg{opacity:1}
.sv__chk span{font-size:12.5px;color:var(--muted);line-height:1.65}
.sv__chk span b{color:#E9E8E6}
.sv__chk span a{color:var(--orange);font-weight:600}

.sv__go{width:100%;height:49px;margin-top:16px;gap:9px;font-size:14px}
.sv__go svg{width:17px;height:17px}
.sv__prog{
  position:relative;height:49px;margin-top:16px;border-radius:var(--r-sm);overflow:hidden;
  background:var(--raised);display:grid;place-items:center;
}
.sv__prog i{
  position:absolute;left:0;top:0;bottom:0;background:linear-gradient(90deg,var(--o14),var(--orange));
  transition:width .15s linear;
}
.sv__prog span{position:relative;font-size:13px;font-weight:800;font-variant-numeric:tabular-nums}
.sv__note{margin:14px 0 0;font-size:11.5px;color:var(--dim);line-height:1.65}

.sv__done{
  max-width:520px;margin:clamp(20px,6vw,60px) auto;text-align:center;padding:34px 28px 26px;
  border-radius:18px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
  animation:reelsIn .3s var(--ease);
}
.sv__done h1{font-family:var(--f-display);font-size:23px;font-weight:800;letter-spacing:-.03em;margin-top:16px}
.sv__done>p{margin:10px auto 0;max-width:42ch;font-size:13.5px;color:var(--muted);line-height:1.7}
.sv__done>p b{color:#E9E8E6}
.sv__done .pres__sum{margin-top:18px}
.sv__done .payres__acts{margin-top:20px}

@media (max-width:900px){.sv__rules{grid-template-columns:1fr 1fr}}
@media (max-width:700px){
  .sv,.ap,.ab{padding-top:14px}
  .sv__drop{padding:30px 16px}
  .sv__chk{padding:14px}
  .sv__chk i{width:24px;height:24px}
}
@media (max-width:480px){.sv__rules{grid-template-columns:1fr 1fr;gap:9px}.sv__rule{padding:13px 14px}}

/* ── başvuru sayfası ── */
.ap__grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:26px;align-items:start}
.ap__form{max-width:none}
.ap__ft{font-family:var(--f-display);font-size:19px;font-weight:800;letter-spacing:-.02em;margin-bottom:14px}
.ap__two{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.ap__about textarea{
  width:100%;padding:12px 14px;border-radius:var(--r-sm);background:var(--surface);
  border:1px solid transparent;color:var(--text);font:inherit;font-size:14px;line-height:1.6;
  resize:vertical;min-height:96px;transition:border-color .16s,background .16s;
}
.ap__about textarea:focus{outline:none;background:var(--raised);border-color:var(--o40)}
.ap__side{
  position:sticky;top:86px;padding:22px;border-radius:16px;
  background:linear-gradient(140deg,var(--o06),var(--panel) 55%);
  box-shadow:inset 0 0 0 1px var(--line);
}
.ap__steps{margin:0;padding:0;list-style:none;display:grid;gap:16px}
.ap__steps li{display:flex;gap:13px}
.ap__num{
  flex:none;width:28px;height:28px;border-radius:50%;display:grid;place-items:center;
  font-family:var(--f-mono);font-size:12px;font-weight:700;color:var(--orange);
  box-shadow:inset 0 0 0 1.5px var(--o40);
}
.ap__steps b{display:block;font-size:13.5px;font-weight:700}
.ap__steps p{margin:5px 0 0;font-size:12px;color:var(--dim);line-height:1.65}
.ap__trust{
  display:flex;gap:11px;align-items:flex-start;margin-top:20px;padding:13px 14px;
  border-radius:11px;background:rgba(4,4,4,.4);box-shadow:inset 0 0 0 1px var(--line);
}
.ap__trust svg{flex:none;width:17px;height:17px;margin-top:1px;stroke:var(--orange)}
.ap__trust p{margin:0;font-size:11.5px;color:var(--muted);line-height:1.65}
@media (max-width:900px){
  .ap__grid{grid-template-columns:1fr;gap:22px}
  .ap__side{position:static}
}
@media (max-width:480px){.ap__two{grid-template-columns:1fr}}

/* ── hakkımızda ── */
.ab__tl{margin:0;padding:0;list-style:none;position:relative;display:grid;gap:0}
.ab__tl::before{content:"";position:absolute;left:31px;top:10px;bottom:10px;width:2px;background:var(--line)}
.ab__tl li{position:relative;display:flex;gap:18px;padding:12px 0}
.ab__yr{
  position:relative;z-index:1;flex:none;width:64px;height:32px;border-radius:8px;
  display:grid;place-items:center;font-family:var(--f-mono);font-size:12px;font-weight:700;
  color:var(--orange);background:var(--bg);box-shadow:inset 0 0 0 1.5px var(--o40);
}
.ab__tlb b{display:block;font-family:var(--f-display);font-size:15.5px;font-weight:800;letter-spacing:-.015em;padding-top:5px}
.ab__tlb p{margin:5px 0 0;font-size:13px;color:var(--muted);line-height:1.7;max-width:58ch}
.ab__vals{margin-bottom:0}
.ab__firm{
  display:grid;grid-template-columns:minmax(0,.7fr) minmax(0,1.3fr);gap:22px;align-items:start;
  padding:22px;border-radius:16px;background:var(--panel);box-shadow:inset 0 0 0 1px var(--line);
}
.ab__firmd{display:grid;gap:1px;margin:0;background:var(--line);border-radius:12px;overflow:hidden}
.ab__firmd>div{display:grid;grid-template-columns:130px 1fr;gap:12px;padding:12px 15px;background:var(--surface);font-size:12.5px}
.ab__firmd dt{color:var(--dim)}
.ab__firmd dd{color:#E9E8E6;font-weight:600}
.ab__firmd dd a{color:var(--orange)}
.ab__firmd dd a:hover{text-decoration:underline}
@media (max-width:800px){
  .ab__firm{grid-template-columns:1fr}
  .ab__firmd>div{grid-template-columns:110px 1fr}
}

/* ════════════════════════════════════════════════════════════
   ADMİN — GELEN VİDEOLAR (onay kuyruğu)
   ════════════════════════════════════════════════════════════ */
.auv__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:13px}
.auvc{
  display:flex;gap:13px;padding:12px;border-radius:14px;background:var(--panel);
  box-shadow:inset 0 0 0 1px var(--line);transition:box-shadow .18s;
}
.auvc:hover{box-shadow:inset 0 0 0 1px var(--o40)}
.auvc--done{opacity:.72}
.auvc__ph{
  position:relative;flex:none;width:148px;aspect-ratio:16/9;border-radius:9px;overflow:hidden;
  background:var(--surface);align-self:flex-start;
}
.auvc__ph img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.auvc__ph:hover img{transform:scale(1.05)}
.auvc__dur{
  position:absolute;right:5px;bottom:5px;padding:2px 6px;border-radius:4px;
  background:rgba(0,0,0,.8);font-size:10px;font-weight:700;
}
.auvc__play{
  position:absolute;inset:0;display:grid;place-items:center;opacity:0;transition:opacity .16s;
  background:rgba(0,0,0,.35);
}
.auvc__ph:hover .auvc__play{opacity:1}
.auvc__play svg{width:26px;height:26px;fill:#fff}
.auvc__b{min-width:0;display:flex;flex-direction:column;align-items:flex-start;gap:6px}
.auvc__b>b{font-size:13.5px;font-weight:700;line-height:1.35}
.auvc__b>small{font-size:11px;color:var(--dim)}
.auvc__why{font-style:normal;font-size:11px;color:#FF8A9A;line-height:1.5}
.auvc__acts{display:flex;gap:6px;margin-top:auto;padding-top:4px;flex-wrap:wrap}
.auvc__acts .btn{height:32px;padding:0 11px;font-size:11.5px;gap:5px}
.auvc__acts .btn svg{width:13px;height:13px}
.auv__empty{padding:52px 0;text-align:center;font-size:14px;color:var(--dim)}
.adraw--wide{width:min(560px,100vw)}
.auv__player{
  position:relative;border-radius:12px;overflow:hidden;aspect-ratio:16/9;background:#000;
  margin-bottom:14px;box-shadow:inset 0 0 0 1px var(--line);
}
.auv__player img{width:100%;height:100%;object-fit:cover;opacity:.85}
.auv__playbig{
  position:absolute;left:50%;top:50%;translate:-50% -50%;width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;background:rgba(255,144,0,.95);color:var(--ink);
  box-shadow:0 14px 40px -12px rgba(255,144,0,.8);
}
.auv__playbig svg{width:22px;height:22px;fill:currentColor;margin-left:3px}
.auv__check{
  display:flex;gap:9px;align-items:flex-start;padding:8px 0;font-size:12.5px;color:var(--muted);line-height:1.55;
}
.auv__check svg{flex:none;width:15px;height:15px;margin-top:1px;stroke:#4CC26B}
.auv__reasons{display:grid;gap:7px;margin:14px 0 0;text-align:left}
.auv__reason{
  display:flex;gap:10px;align-items:center;padding:10px 12px;border-radius:9px;text-align:left;
  background:var(--raised);font-size:12.5px;font-weight:600;color:var(--muted);
  box-shadow:inset 0 0 0 1px transparent;transition:.15s;
}
.auv__reason i{
  flex:none;width:15px;height:15px;border-radius:50%;
  box-shadow:inset 0 0 0 1.5px var(--line);transition:.15s;
}
.auv__reason.on{color:#fff;box-shadow:inset 0 0 0 1.5px var(--o40);background:var(--o08)}
.auv__reason.on i{background:var(--orange);box-shadow:inset 0 0 0 3.5px #241703}
.auv__note{
  width:100%;height:42px;margin-top:10px;padding:0 13px;border-radius:9px;
  background:var(--surface);border:1px solid var(--line);color:var(--text);font:inherit;font-size:13px;
}
.auv__note:focus{outline:none;border-color:var(--o40)}
.auv__reasons+.auv__note+.modal__cta{margin-top:14px}
@media (max-width:700px){
  .auv__grid{grid-template-columns:1fr}
  .auvc__ph{width:124px}
  .adraw--wide{width:100vw}
  .auvc__acts{width:100%}
  .auvc__acts .btn{height:40px;flex:1;font-size:12.5px}
}

/* ── üye çekmecesi: plan seçimi ── */
.adraw__plans{display:flex;gap:7px;flex-wrap:wrap}

/* ════════════════════════════════════════════════════════════
   İÇERİK KALDIRMA + EBEVEYN KONTROLÜ
   ════════════════════════════════════════════════════════════ */
.rm__strip{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin-bottom:24px;
  background:var(--line);border-radius:14px;overflow:hidden;
}
.rm__strip>div{padding:15px 17px;background:var(--panel)}
.rm__strip b{display:block;font-family:var(--f-display);font-size:17px;font-weight:800;letter-spacing:-.02em;color:var(--orange)}
.rm__strip small{display:block;margin-top:4px;font-size:11.5px;color:var(--dim);line-height:1.5}
.rm__types{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.rm__type{
  display:flex;align-items:center;justify-content:space-between;gap:9px;padding:13px 14px;
  border-radius:11px;text-align:left;background:var(--panel);font-size:13px;font-weight:600;
  color:var(--muted);box-shadow:inset 0 0 0 1px var(--line);transition:.15s;
}
.rm__type:hover{box-shadow:inset 0 0 0 1px var(--o40)}
.rm__type.on{color:#fff;background:var(--o08);box-shadow:inset 0 0 0 1.5px var(--orange)}
.rm__type em{
  flex:none;font-style:normal;font-size:9px;font-weight:800;letter-spacing:.08em;
  text-transform:uppercase;padding:3px 7px;border-radius:4px;background:var(--orange);color:var(--ink);
}
.rta{
  display:grid;gap:10px;margin-bottom:22px;padding:18px 20px;border-radius:14px;
  background:linear-gradient(135deg,var(--o08),var(--panel) 58%);box-shadow:inset 0 0 0 1px var(--o40);
}
.rta__badge{
  justify-self:start;font-family:var(--f-mono);font-size:12px;font-weight:700;letter-spacing:.06em;
  color:var(--orange);padding:7px 12px;border-radius:7px;background:rgba(4,4,4,.5);
  box-shadow:inset 0 0 0 1px var(--o40);
}
.rta p{margin:0;font-size:13px;color:var(--muted);line-height:1.7;max-width:64ch}
.rta p b{color:#E9E8E6}
@media (max-width:640px){
  .rm__strip{grid-template-columns:1fr}
  .rm__types{grid-template-columns:1fr}
}
