/* ==========================================================================
   Castanbul — Design sistemi v3 (canlı yayın / gradyan temalı mockup'tan)
   Fontlar: Unbounded (başlık), Manrope (gövde)
   Birincil gradyan: pembe-kırmızı -> turuncu (#ff2e63 -> #ff9f1c)
   İkincil renkler: mor #7c2ae8, camgöbeği #22d3ee, yeşil #22c55e
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0d;
  --surface: #141417;
  --surface-2: #17171b;
  --surface-3: #101013;
  --border: rgba(255,255,255,.07);
  --border-strong: rgba(255,255,255,.16);

  --accent: #ff2e63;
  --accent-2: #ff9f1c;
  --accent-soft: rgba(255,46,99,.14);
  --accent-2-soft: rgba(255,159,28,.14);
  --grad-primary: linear-gradient(100deg, #ff2e63, #ff5b3d);
  --grad-cta: linear-gradient(120deg, #ff2e63, #ff5b3d 60%, #ff9f1c);

  --purple: #7c2ae8;
  --cyan: #22d3ee;
  --green: #22c55e;

  --text: #f5f4f7;
  --muted: #a8a5b0;
  --muted-2: #8b8894;
  --muted-3: #6b6874;

  --success: #22c55e;
  --success-soft: rgba(34,197,94,.15);
  --danger: #ff5b5b;
  --danger-soft: rgba(255,91,91,.14);
  --warn: #ff9f1c;
  --warn-soft: rgba(255,159,28,.16);

  --font-display: 'Unbounded', 'Manrope', sans-serif;
  --live-grad: linear-gradient(100deg, #ff2e63, #ff5b3d);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -14px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif; line-height: 1.55;
}
h1, h2, h3, h4, .display {
  font-family: 'Unbounded', 'Manrope', sans-serif;
  font-weight: 700; letter-spacing: -0.01em; margin: 0 0 .4em;
}
.mono { font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Gradyan yardımcı sınıfları (logo/avatar rozetleri için) ---- */
.grad-1 { background: linear-gradient(135deg,#ff9f1c,#ff2e63); }
.grad-2 { background: linear-gradient(135deg,#7c2ae8,#22d3ee); }
.grad-3 { background: linear-gradient(135deg,#22d3ee,#22c55e); }
.grad-4 { background: linear-gradient(135deg,#ff2e63,#ff9f1c); }
.grad-5 { background: linear-gradient(135deg,#ff2e63,#7c2ae8); }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,10,13,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: 1180px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Unbounded'; font-weight: 700; font-size: 1.1rem; }
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.3s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 0; background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); cursor: pointer; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--text); margin: 0 auto; transition: transform .2s, opacity .2s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links { display: flex; gap: 4px; align-items: center; flex-wrap: nowrap; }
.nav-links a { color: var(--muted-2); font-size: .78rem; font-weight: 800; transition: color .15s, background .15s; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.nav-links a:hover { color: #fff; }
.nav-links a:not(.btn) { padding: 8px 10px; border-radius: 999px; }
.nav-links a:not(.btn):hover { background: rgba(255,255,255,.07); }
.nav-links a.active:not(.btn) { background: var(--accent-soft); color: #fff; }
.nav-links a.btn { font-weight: 700; text-transform: none; letter-spacing: normal; white-space: nowrap; }
.nav-cta { padding: 10px 18px !important; box-shadow: 0 8px 22px -8px rgba(255,46,99,.7); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(255,46,99,.85); }

/* ---- Buttons (tam yuvarlak hap) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: .87rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, opacity .15s;
  font-family: 'Manrope', sans-serif;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--grad-primary); color: #fff; }
.btn-primary:hover { opacity: .92; }
.btn-outline { border-color: var(--border-strong); color: var(--text); background: transparent; font-weight: 600; }
.btn-outline:hover { border-color: var(--muted); background: rgba(255,255,255,.03); }
.btn-ghost { color: var(--muted); background: transparent; font-weight: 600; }
.btn-ghost:hover { color: var(--text); }
.btn-danger { background: var(--danger-soft); color: #fff; border: 1px solid rgba(255,91,91,.5); }
.btn-danger:hover { background: rgba(255,91,91,.24); }
.btn-sm { padding: 9px 16px; font-size: .8rem; }
.btn-block { width: 100%; }

/* ---- Pill / live chip ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600;
  color: var(--muted); background: rgba(255,255,255,.05); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px; margin-bottom: 18px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.live-chip {
  display: inline-flex; align-items: center; gap: 5px; font-size: .66rem; font-weight: 800;
  color: #fff; background: var(--accent); padding: 3px 8px; border-radius: 5px; letter-spacing: .04em;
}
.blink-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.3s infinite; }
.avatar-ring { background: conic-gradient(from 180deg, var(--accent), var(--accent-2), var(--accent)); border-radius: 50%; padding: 2px; flex: none; }

/* ---- Hero ---- */
.hero { padding: 56px 0 40px; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); max-width: 560px; line-height: 1.08; }
.hero p.lead { font-size: 1rem; max-width: 460px; line-height: 1.65; }
.hero-cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; margin: 30px 0 0; }
.hero-bars span { width: 5px; background: var(--accent); border-radius: 3px; opacity: .55; animation: bars 1.2s ease-in-out infinite; }
@keyframes bars { 0%,100%{ height: 20% } 50%{ height: 100% } }

/* ---- Hero swipe/match kartları (yüzen, hafif sallanan) ---- */
.match-deck { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; }
.match-card {
  position: absolute; width: 230px; height: 340px; border-radius: 22px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.22); box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.06);
  display: flex; flex-direction: column; justify-content: space-between; padding: 16px;
}
.match-card .viewers { font-size: .66rem; font-weight: 700; color: #fff; background: rgba(0,0,0,.4); padding: 3px 7px; border-radius: 5px; }
.match-card .info { background: linear-gradient(0deg, rgba(0,0,0,.7), transparent); margin: 0 -16px -16px; padding: 16px; }
.match-card .info .name { font-family: 'Unbounded'; font-weight: 700; font-size: 1rem; color: #fff; }
.match-card .info .meta { font-size: .78rem; color: rgba(255,255,255,.8); margin-top: 3px; }
@keyframes sway-front { 0%,100%{transform:rotate(-3deg) translateY(0)} 50%{transform:rotate(2deg) translateY(-8px)} }
@keyframes sway-mid { 0%,100%{transform:rotate(6deg) translateY(10px)} 50%{transform:rotate(4deg) translateY(4px)} }
@keyframes sway-back { 0%,100%{transform:rotate(-10deg) translateY(22px)} 50%{transform:rotate(-8deg) translateY(16px)} }
.orbit-logo {
  position: absolute; width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded'; font-weight: 700; font-size: .95rem; box-shadow: 0 10px 26px -6px rgba(0,0,0,.5); z-index: 3;
  animation: float 3.6s ease-in-out infinite; border: 2px solid rgba(255,255,255,.25);
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.swipe-actions { position: absolute; bottom: -6px; display: flex; gap: 16px; z-index: 5; }
.swipe-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.swipe-btn-no { background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--danger); }
.swipe-btn-yes { background: var(--grad-primary); color: #fff; }
@media (max-width: 900px) { .match-deck { display: none; } }

/* ---- Uygulama logosu rozeti (canli yayin kartlarinin cercevesinde) ---- */
.app-badge {
  position: absolute; bottom: 10px; right: 10px; width: 30px; height: 30px; border-radius: 9px;
  background: var(--surface); border: 2px solid var(--bg); box-shadow: 0 4px 12px rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center; overflow: hidden; z-index: 4;
  font-family: 'Unbounded'; font-weight: 700; font-size: .7rem; color: var(--text);
}
.app-badge img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Canlı yayın şeridi (yatay kaydırmalı / ortalanmış) ---- */
.feed-row { display: flex; gap: 20px; overflow-x: auto; padding: 14px 4px 20px; }
.feed-row-center { justify-content: center; flex-wrap: wrap; }
.feed-card { position: relative; border-radius: 20px; overflow: hidden; background: var(--surface-2); flex: none; width: 180px; height: 240px; }
.feed-card-inner { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.feed-card .bottom-row { padding: 14px; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent); }
.feed-card .name { font-size: .86rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Sade cerceve + ustte uygulama adi etiketi */
.simple-frame { border: 2px solid rgba(255,255,255,.18); box-shadow: 0 12px 28px -14px rgba(0,0,0,.6); }
.app-name-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: 'Unbounded'; font-size: .64rem; font-weight: 700; letter-spacing: .02em;
  color: #fff; background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  padding: 5px 10px; border-radius: 999px;
}

/* ---- Sections / cards ---- */
.section { padding: 56px 0; }
.section-alt { background: var(--surface-3); }
.section-head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.section-head h2 { font-size: 1.7rem; margin: 0; letter-spacing: -.02em; }
.section-head p { font-size: .92rem; margin: 8px auto 0; max-width: 520px; }

/* ---- Hero istatistik kartları ---- */
.hero-stats { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-stat {
  background: var(--surface-2); border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 16px 24px; min-width: 116px; text-align: center;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,.5);
}
.hero-stat .num {
  font-family: 'Unbounded'; font-size: 1.5rem; font-weight: 800;
  background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat .lbl { font-size: .68rem; color: var(--muted-2); margin-top: 5px; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color .18s, transform .18s;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card h3 { font-size: 1rem; margin-bottom: 8px; }
.card p { font-size: .88rem; margin: 0; }
.feature-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-primary); opacity: .9; margin-bottom: 16px; }

/* ---- Uygulama kartları ---- */
.app-grid { grid-template-columns: 1.3fr 1fr 1fr; }
@media (max-width: 900px) { .app-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .app-grid { grid-template-columns: 1fr; } }
.app-card { display: flex; flex-direction: column; gap: 12px; background: var(--surface-2); }
.app-card-logo { width: 44px; height: 44px; object-fit: cover; border-radius: 11px; background: var(--surface); }
.app-card-logo-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded'; font-weight: 700; font-size: 1rem; color: #fff;
}
.app-card-info h3 { font-size: .98rem; margin-bottom: 3px; }
.app-card-info p { font-size: .84rem; margin: 0; }
.app-card-btn { align-self: flex-start; margin-top: auto; }
.app-featured {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-2-soft) 70%);
  border-color: var(--border-strong);
}
.app-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--accent); background: rgba(255,46,99,.16); padding: 3px 10px; border-radius: 6px; margin-bottom: 10px;
}
.app-stats { display: flex; gap: 22px; margin: 4px 0 14px; }
.app-stat { font-size: .76rem; color: var(--muted-2); }
.app-stat b { display: block; font-family: 'Unbounded'; font-size: 1.05rem; color: var(--text); font-weight: 700; }

/* ---- Blog ---- */
.blog-card { display: block; padding: 0; overflow: hidden; background: var(--surface-2); }
.blog-card .blog-card-img { height: 120px; background-size: cover; background-position: center; }
.blog-card .date, .blog-card h3, .blog-card p, .blog-card .tag-row { padding-left: 20px; padding-right: 20px; }
.blog-card .date { font-family: 'Unbounded'; font-size: .7rem; color: var(--muted-2); margin-bottom: 8px; margin-top: 20px; display: block; font-weight: 500; }
.blog-card h3 { font-size: 1rem; }
.blog-card p { padding-bottom: 12px; }
.blog-card .tag-row { display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 20px; }
.tag-pill { font-size: .68rem; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 3px 10px; border-radius: 999px; }

article.post { max-width: 720px; margin: 0 auto; }
article.post h1 { font-size: 1.9rem; }
article.post .meta { font-family: 'Unbounded'; color: var(--accent); font-size: .78rem; margin-bottom: 22px; font-weight: 600; }
article.post .content { color: var(--text); font-size: 1rem; line-height: 1.75; }
.post-cover { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 26px; display: block; }

/* ---- Forms ---- */
.form-wrap { max-width: 460px; margin: 0 auto; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 6px; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: .92rem; font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.field-row { display: flex; gap: 14px; }
.field-row .field { flex: 1; }
.form-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: .87rem; margin-bottom: 18px; }
.alert-error { background: var(--danger-soft); color: #ffb3b3; border: 1px solid rgba(255,91,91,.35); }
.alert-success { background: var(--success-soft); color: var(--success); border: 1px solid rgba(34,197,94,.3); }
.alert-info { background: var(--accent-soft); color: #ffb3c9; border: 1px solid rgba(255,46,99,.3); }

/* ---- Panel yapısı ---- */
.app-shell { display: flex; min-height: 100vh; }
.sidebar {
  width: 236px; flex-shrink: 0; background: var(--surface); border-right: 1px solid var(--border);
  padding: 24px 16px; position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column;
}
.sidebar .brand { padding: 4px 10px 26px; }
.side-link {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius-sm);
  color: var(--muted); font-size: .87rem; font-weight: 600; margin-bottom: 3px;
}
.side-link:hover { color: var(--text); }
.side-link.active { background: var(--accent-soft); color: #ff8fac; }
.side-link .ic { width: 18px; text-align: center; }
.side-spacer { flex: 1; }
.main { flex: 1; padding: 32px 40px; min-width: 0; }
.main-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.main-head h1 { font-size: 1.5rem; margin-bottom: 4px; }
.badge { display: inline-flex; padding: 5px 11px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.badge-pending { background: var(--warn-soft); color: var(--warn); }
.badge-approved { background: var(--success-soft); color: var(--success); }
.badge-rejected { background: var(--danger-soft); color: #ffb3b3; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
@media (max-width: 960px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.stat-card .label { font-size: .76rem; color: var(--muted-2); margin-bottom: 8px; }
.stat-card .value { font-family: 'Unbounded'; font-size: 1.45rem; font-weight: 700; }
.stat-card .value.accent { color: var(--accent); }

.panel-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; }
.panel-card h2 { font-size: 1.05rem; margin-bottom: 18px; }

table { width: 100%; border-collapse: collapse; font-size: .88rem; max-width: 100%; }
th { text-align: left; color: var(--muted-2); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; padding: 10px 12px; border-bottom: 1px solid var(--border); }
td { padding: 12px; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
.rank { display: inline-flex; width: 22px; height: 22px; border-radius: 6px; background: var(--surface); align-items: center; justify-content: center; font-size: .74rem; font-weight: 700; color: var(--accent); margin-right: 8px; font-family: 'Unbounded'; }
.avatar {
  border-radius: 50%; flex-shrink: 0; object-fit: cover;
  background: repeating-linear-gradient(135deg, var(--surface), var(--surface) 6px, var(--surface-3) 6px, var(--surface-3) 12px);
}
.trend { display: inline-flex; align-items: center; gap: 4px; font-size: .74rem; font-weight: 700; }
.trend-up { color: var(--success); }
.trend-down { color: var(--danger); }
.sidebar-profile { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: var(--radius-sm); background: rgba(255,255,255,.04); margin-top: 12px; }
.sidebar-profile .avatar { width: 36px; height: 36px; }
.sidebar-profile .name { font-size: .8rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-profile .role { font-size: .7rem; color: var(--muted); }

.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer p { font-size: .82rem; color: var(--muted-3); }

.empty { text-align: center; padding: 40px 20px; color: var(--muted); }

.cta-banner { text-align: center; padding: 56px 40px; border-radius: 28px; background: var(--grad-cta); }
.cta-banner .eyebrow, .cta-banner h2, .cta-banner p { color: #fff; }
.cta-banner .eyebrow { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.25); opacity: 1; }
.cta-banner p { opacity: .88; font-weight: 600; }
.cta-banner .btn-primary { background: #fff; color: var(--accent); }
.cta-banner .btn-outline { border: 2px solid rgba(255,255,255,.6); color: #fff; }

/* ---- Uygulama tanıtım sayfası (App Store tarzı) ---- */
.app-store-hero-section { padding-top: 32px; padding-bottom: 20px; }
.app-store-icon {
  width: 72px; height: 72px; border-radius: 18px; flex-shrink: 0; overflow: hidden;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
}
.app-store-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-store-icon span { font-family: 'Unbounded'; font-size: 1.7rem; font-weight: 700; color: #fff; }

/* ---- Uygulama sayfası: üst gezinme ve manşet ---- */
.app-hero-section { position: relative; }
.app-hero-section::before {
  content: ''; position: absolute; inset: -10% -10% auto -10%; height: 520px; z-index: -1; pointer-events: none;
  background: radial-gradient(700px 380px at 95% 10%, rgba(255,46,99,.16), transparent 65%);
}
.breadcrumb-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.back-link { font-size: .84rem; font-weight: 600; color: var(--muted-2); }
.back-link:hover { color: var(--text); }
.app-pill { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; color: var(--muted); background: var(--surface-2); border: 1px solid rgba(255,46,99,.3); padding: 7px 14px; border-radius: 999px; }
.app-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.app-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.app-hero-top { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.app-hero-top h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 0; }
.app-hero-desc { font-size: .98rem; line-height: 1.65; max-width: 480px; margin-bottom: 22px; }

.app-stat-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.app-stat-box { background: var(--surface-2); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 16px 20px; min-width: 96px; text-align: center; }
.app-stat-box .v { font-family: 'Unbounded'; font-size: 1.15rem; font-weight: 800; color: var(--accent); }
.app-stat-box .l { font-size: .64rem; color: var(--muted-2); margin-top: 5px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }

.download-label { font-size: .72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 10px; }
.download-row { display: flex; gap: 12px; flex-wrap: wrap; }
.download-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #111; font-weight: 700; font-size: .86rem; padding: 12px 20px; border-radius: 999px; }
.download-btn:hover { background: #eee; }

/* ---- Telefon karuseli (gerçek ekran görüntüleri) ---- */
.phone-mockup-wrap { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 280px; height: 500px; border-radius: 34px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow);
  background: var(--surface-2);
}
.phone-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .35s ease; z-index: 1;
}
.phone-slide.active { opacity: 1; z-index: 2; }
.phone-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.phone-nav-prev { left: 12px; }
.phone-nav-next { right: 12px; }
.phone-nav:hover { background: rgba(0,0,0,.65); }
.phone-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 4; }
.phone-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; }
.phone-dot.active { background: #fff; }

.floating-tag {
  position: absolute; background: var(--surface-2); border: 1px solid rgba(255,46,99,.3);
  color: var(--text); font-size: .74rem; font-weight: 700; padding: 8px 16px; border-radius: 999px;
  box-shadow: var(--shadow); animation: float 3.6s ease-in-out infinite; z-index: 3;
}
.floating-tag-1 { top: 18%; right: -6%; }
.floating-tag-2 { bottom: 22%; left: -8%; animation-delay: .6s; }
@media (max-width: 900px) { .app-hero-grid { grid-template-columns: 1fr; } .phone-mockup-wrap { margin-top: 20px; } .floating-tag { display: none; } }

/* ---- Dökümanlar ---- */
.doc-card { display: flex; align-items: center; gap: 14px; background: var(--surface-2); border: 1px solid rgba(255,46,99,.16); border-radius: var(--radius); padding: 18px 20px; }
.doc-card:hover { border-color: rgba(255,46,99,.4); }
.doc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.doc-title { font-size: .92rem; font-weight: 700; color: var(--text); }
.doc-sub { font-size: .78rem; color: var(--muted-2); margin-top: 2px; }
.doc-arrow { margin-left: auto; color: var(--accent); font-size: .8rem; font-weight: 700; flex-shrink: 0; }

/* ---- Öne çıkanlar kartı ---- */
.features-card { background: var(--surface-2); border: 1px solid rgba(255,46,99,.2); border-top: 3px solid var(--accent); border-radius: var(--radius); padding: 24px; }
.features-card h2 { font-size: 1.05rem; margin: 0; color: var(--accent); }

.screenshot-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
.screenshot-item { height: 410px; width: auto; border-radius: 20px; border: 1px solid var(--border); flex-shrink: 0; object-fit: cover; background: var(--surface-2); }

/* ---- Duyuru sistemi ---- */
.announcement {
  position: relative; border-radius: var(--radius); padding: 22px 46px 22px 24px; margin-bottom: 18px;
  overflow: hidden; box-shadow: var(--shadow); background: var(--surface-2); border: 1px solid var(--border);
}
.announcement-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 12px; flex-shrink: 0;
}
.announcement h3 { font-size: 1.05rem; margin-bottom: 5px; }
.announcement p { font-size: .9rem; margin: 0; color: var(--text); opacity: .9; }
.announcement-close-form { position: absolute; top: 14px; right: 14px; margin: 0; z-index: 2; }
.announcement-close {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.2);
  color: var(--text); cursor: pointer; font-size: .8rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.announcement-close:hover { background: rgba(0,0,0,.4); }
.announcement-badge {
  display: inline-block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.announcement-general { background: linear-gradient(135deg, var(--accent-soft), rgba(255,46,99,.02) 60%); border: 1px solid rgba(255,46,99,.3); }
.announcement-general .announcement-icon { background: rgba(255,46,99,.2); color: var(--accent); }
.announcement-ad { background: linear-gradient(135deg, rgba(255,159,28,.22), rgba(255,159,28,.04) 65%); border: 1px solid rgba(255,159,28,.4); }
.announcement-ad .announcement-icon { background: rgba(255,159,28,.25); color: var(--accent-2); }
.announcement-ad .announcement-badge { background: var(--accent-2); color: #1a1000; }
.announcement-ad h3 { color: #ffd8ae; }
.announcement-new-app {
  background: linear-gradient(135deg, rgba(255,46,99,.25), rgba(124,42,232,.14) 55%, var(--surface-2) 100%);
  border: 1px solid rgba(255,46,99,.4); box-shadow: 0 0 0 1px rgba(255,46,99,.15), 0 20px 50px -20px rgba(255,46,99,.5);
}
.announcement-new-app .announcement-icon { background: var(--grad-primary); color: #fff; }
.announcement-new-app .announcement-badge { background: var(--grad-primary); color: #fff; box-shadow: 0 4px 14px rgba(255,46,99,.5); }
.announcement-new-app h3 { font-size: 1.2rem; }
.announcement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; position: relative; }
.announcement-grid > div { background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 12px 14px; }
.announcement-grid .label { display: block; font-size: .68rem; color: var(--muted-2); margin-bottom: 5px; }
.announcement-grid .value { display: block; font-family: 'Unbounded'; font-weight: 700; font-size: .95rem; color: var(--accent); }
@media (max-width: 700px) { .announcement-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Kaydırınca beliren öğeler ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }

/* ---- Genel taşma güvenliği ---- */
html, body { overflow-x: hidden; }
.panel-card, .form-card { overflow-x: auto; }

@media (max-width: 900px) {
  .app-shell { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; flex-direction: row; overflow-x: auto; }
  .sidebar .brand, .side-link { flex-shrink: 0; }
  .side-spacer { display: none; }
  .main { padding: 24px 18px; }
  .home-hero-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav-inner { flex-wrap: nowrap; padding: 14px 18px; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 12px 18px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 4px; border-bottom: 1px solid var(--border); white-space: normal; }
  .nav-links a.btn { margin: 8px 0 0; width: 100%; }
}

@media (max-width: 700px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p.lead { font-size: .95rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .section { padding: 36px 0; }
  .form-card { padding: 22px; }
  .field-row { flex-direction: column; gap: 0; }

  .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 14px; }
  .stat-card .value { font-size: 1.2rem; }

  .main-head { flex-direction: column; align-items: flex-start; }
  .main-head h1 { font-size: 1.25rem; }

  .cta-banner { padding: 32px 20px; }

  table { font-size: .82rem; }
  th, td { padding: 8px; }

  .sidebar { padding: 10px 12px; gap: 6px; }
  .side-link { padding: 8px 12px; white-space: nowrap; }

  .app-hero-top { flex-direction: column; text-align: center; }
  .app-stat-row, .download-row { justify-content: center; }
  .screenshot-item { height: 300px; }
}

@media (max-width: 420px) {
  .stat-grid { grid-template-columns: 1fr; }
  .screenshot-item { height: 240px; }
  .app-store-info h1 { font-size: 1.4rem; }
}

/* ---- Uygulamalar sayfası: yardımcı sınıflar (live-pill, btn-live, orb'lar) ---- */
.live-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; color: #fff; background: var(--live-grad);
}
.live-pill-soft { background: rgba(255,46,99,.14); color: var(--accent); border: 1px solid rgba(255,46,99,.3); }
.btn-live, .btn-live-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: .87rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, opacity .15s; font-family: 'Manrope', sans-serif;
}
.btn-live { background: var(--live-grad); color: #fff; }
.btn-live:hover { opacity: .92; }
.btn-live-outline { border-color: rgba(255,255,255,.22); color: #fff; background: transparent; }
.btn-live-outline:hover { background: rgba(255,255,255,.05); }
.live-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.live-app-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .3; pointer-events: none; z-index: 0; }
.live-app-orb-a { width: 420px; height: 420px; background: #ff2d78; top: -140px; left: -120px; }
.live-app-orb-b { width: 380px; height: 380px; background: #7c3aed; bottom: -160px; right: -120px; }

.live-back { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 600; color: var(--muted-2); margin-bottom: 20px; }
.live-back:hover { color: #fff; }
.live-section-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.live-section-head .live-pill { margin-bottom: 16px; }
.live-section-head h2 { color: #fff; font-size: 1.5rem; margin: 0; }

/* ---- Apps listing page ---- */
.live-apps-page {
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
  min-height: 70vh;
}
.live-apps-inner { position: relative; z-index: 1; }
.live-apps-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.live-apps-head .live-pill { margin-bottom: 16px; }
.live-apps-head h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  color: #fff;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.live-apps-head p {
  margin: 0;
  color: #a3a3a3;
  font-size: .98rem;
  line-height: 1.65;
}
.live-apps-empty { color: #8a8a8a; padding: 48px 0; text-align: center; }

.apps-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.apps-show-card {
  position: relative;
  display: grid;
  grid-template-rows: 200px auto;
  border-radius: 28px;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), border-color .2s, box-shadow .22s;
}
.apps-show-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 80px -36px rgba(255, 45, 120, 0.55);
}
.apps-show-media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apps-show-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.35), transparent 50%),
    linear-gradient(145deg, #ff2d78, #ff6b4a 55%, #7c3aed);
  transform: scale(1.05);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.apps-show-card:hover .apps-show-mesh { transform: scale(1.12); }
.apps-show-tone-1 .apps-show-mesh {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(145deg, #06b6d4, #3b82f6 50%, #8b5cf6);
}
.apps-show-tone-2 .apps-show-mesh {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(145deg, #f59e0b, #ef4444 50%, #ec4899);
}
.apps-show-tone-3 .apps-show-mesh {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(145deg, #22c55e, #14b8a6 45%, #3b82f6);
}
.apps-show-ring {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.15));
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.65);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}
.apps-show-card:hover .apps-show-ring { transform: translateY(-4px) rotate(-3deg); }
.apps-show-logo {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apps-show-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apps-show-logo span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}
.apps-show-live {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.apps-show-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff2d55;
  box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.6);
  animation: livePulse 1.5s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.6); }
  100% { box-shadow: 0 0 0 8px rgba(255, 45, 85, 0); }
}
.apps-show-index {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
}
.apps-show-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 22px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 40%),
    #111;
}
.apps-show-copy h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.apps-show-copy p {
  margin: 0;
  color: #9a9a9a;
  font-size: .9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.apps-show-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.apps-show-metric {
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.apps-show-metric b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--live-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}
.apps-show-metric span {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #777;
}
.apps-show-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--live-grad);
  box-shadow: 0 14px 32px -16px rgba(255, 45, 120, 0.8);
  transition: filter .15s, transform .15s;
}
.apps-show-card:hover .apps-show-action {
  filter: brightness(1.06);
}
.apps-show-cta {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}
.apps-show-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 1rem;
  transition: transform .2s;
}
.apps-show-card:hover .apps-show-arrow { transform: translateX(3px); }

.live-apps-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 28px 28px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 45, 120, 0.12), transparent 55%),
    #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.live-apps-cta h2 {
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 0 0 6px;
}
.live-apps-cta p { margin: 0; color: #a3a3a3; font-size: .9rem; }

@media (max-width: 900px) {
  .apps-showcase { grid-template-columns: 1fr; }
  .live-apps-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .live-apps-page { padding: 40px 0 56px; }
  .live-apps-cta .live-cta-row { width: 100%; }
  .live-apps-cta .btn-live,
  .live-apps-cta .btn-live-outline { width: 100%; }
}

/* ---- Blog listing + post ---- */
.live-blog-page,
.live-post-page {
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
  min-height: 70vh;
}
.live-blog-inner,
.live-post-inner { position: relative; z-index: 1; }
.live-blog-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.live-blog-head .live-pill { margin-bottom: 16px; }
.live-blog-head h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  color: #fff;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.live-blog-head p {
  margin: 0;
  color: #a3a3a3;
  font-size: .98rem;
  line-height: 1.65;
}
.live-blog-empty { text-align: center; color: #8a8a8a; padding: 48px 0; }

.blog-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), box-shadow .22s, border-color .2s;
}
.blog-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 120, 0.35);
  box-shadow: 0 36px 70px -34px rgba(255, 45, 120, 0.55);
}
.blog-feature-media {
  position: relative;
  min-height: 320px;
  background: #1a1a1a;
  overflow: hidden;
}
.blog-feature-media-empty {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 45%),
    linear-gradient(145deg, #ff2d78, #ff6b4a 50%, #7c3aed);
}
.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.blog-feature:hover .blog-feature-media img { transform: scale(1.05); }
.blog-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(17,17,17,0.35));
  pointer-events: none;
}
.blog-feature-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 36px 32px;
}
.blog-date {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #ff7a9a;
  text-transform: uppercase;
}
.blog-feature-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.blog-feature-copy p {
  margin: 0;
  color: #9a9a9a;
  font-size: .95rem;
  line-height: 1.6;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}
.blog-read i {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--live-grad);
  font-style: normal;
  transition: transform .2s;
}
.blog-feature:hover .blog-read i { transform: translateX(3px); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.blog-tile {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.blog-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 45, 120, 0.35);
  box-shadow: 0 28px 56px -30px rgba(255, 45, 120, 0.5);
}
.blog-tile-media {
  position: relative;
  height: 180px;
  background: #1a1a1a;
  overflow: hidden;
}
.blog-tile-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.14), transparent 50%),
    linear-gradient(145deg, #ff2d78, #ff6b4a);
}
.blog-tile-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}
.blog-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}
.blog-tile:hover .blog-tile-media img { transform: scale(1.06); }
.blog-tile-date {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
}
.blog-tile-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.blog-tile-body h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.blog-tile-body p {
  margin: 0;
  color: #8a8a8a;
  font-size: .85rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-tile-more {
  margin-top: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: #ff7a9a;
}

.live-post-head {
  max-width: 780px;
  margin: 12px auto 28px;
  text-align: center;
}
.live-post-head h1 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}
.live-post-lead {
  margin: 0 auto;
  max-width: 620px;
  color: #a3a3a3;
  font-size: 1.05rem;
  line-height: 1.65;
}
.live-post-cover {
  margin: 0 auto 32px;
  max-width: 920px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}
.live-post-cover img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.live-post-content {
  max-width: 720px;
  margin: 0 auto;
}
.live-post-content p {
  color: #d4d4d4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.15em;
}
.live-post-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 920px;
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.live-post-more {
  max-width: 1140px;
  margin: 56px auto 0;
}
.live-post-more .live-section-head {
  text-align: left;
  margin-bottom: 20px;
}
.live-post-more .live-section-head h2 {
  color: #fff;
  margin: 10px 0 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

@media (max-width: 900px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: 220px; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .live-blog-page,
  .live-post-page { padding: 40px 0 56px; }
  .blog-feature-copy { padding: 24px 20px; }
  .live-post-footer { flex-direction: column; align-items: stretch; }
  .live-post-footer .live-cta-row { width: 100%; flex-direction: column; }
}

/* ---- Haftanın Yayıncısı (yayıncılar sayfası sahnesi) ---- */
.week-stage {
  margin-bottom: 64px;
  padding: 12px 0 8px;
}
.week-stage-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}
.week-stage-head .live-pill { margin-bottom: 14px; }
.week-stage-head h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.week-stage-head p {
  margin: 0;
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.6;
}

.week-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  justify-items: center;
  gap: 18px 28px;
  min-height: 420px;
  padding: 48px 20px 36px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 50% 18%, rgba(255, 184, 0, 0.14), transparent 62%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 45, 120, 0.1), transparent 55%),
    #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1180px;
  margin: 0 auto;
}
.week-beam {
  position: absolute;
  top: -8%;
  left: 50%;
  width: min(280px, 48%);
  height: 70%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 220, 140, 0.22), rgba(255, 184, 0, 0.04) 55%, transparent);
  clip-path: polygon(32% 0, 68% 0, 100% 100%, 0 100%);
  pointer-events: none;
  animation: weekBeam 5s ease-in-out infinite alternate;
}
@keyframes weekBeam {
  from { opacity: .75; }
  to { opacity: 1; filter: brightness(1.15); }
}
.week-floor {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 8%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 184, 0, 0.22), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.week-winner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 2;
  text-align: center;
}
.week-crown {
  width: 56px;
  margin-bottom: -6px;
  filter: drop-shadow(0 8px 14px rgba(255, 184, 0, 0.5));
  animation: weekCrown 2.6s ease-in-out infinite;
}
@keyframes weekCrown {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}
.week-crown svg { width: 100%; height: auto; display: block; }

.week-portrait {
  position: relative;
  width: clamp(168px, 28vw, 220px);
  height: clamp(168px, 28vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.22), transparent 45%),
    linear-gradient(145deg, #ff2d78, #7c3aed 55%, #1a1a1a);
  border: 3px solid rgba(255, 184, 0, 0.75);
  box-shadow:
    0 0 0 8px rgba(255, 184, 0, 0.12),
    0 24px 48px -20px rgba(0, 0, 0, 0.8);
}
.week-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.week-letter {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}
.week-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 184, 0, 0.35);
  animation: weekSpin 18s linear infinite;
  pointer-events: none;
}
@keyframes weekSpin {
  to { transform: rotate(360deg); }
}

.week-plaque { margin-top: 22px; max-width: 320px; }
.week-rank {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.14);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: #ffd36a;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.week-plaque h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}
.week-plaque p {
  margin: 0 0 10px;
  color: #b0b0b0;
  font-size: .92rem;
}
.week-meta {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 45, 120, 0.16);
  border: 1px solid rgba(255, 45, 120, 0.32);
  color: #ffb0c8;
  font-size: .74rem;
  font-weight: 700;
}

.week-finalist {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 140px;
  padding-bottom: 48px;
  opacity: .92;
}
.week-finalist-l { grid-column: 1; justify-self: end; }
.week-finalist-r { grid-column: 3; justify-self: start; }
.week-finalist-orb {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3a3a3a, #151515);
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.8);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.week-finalist-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.week-finalist strong {
  color: #fff;
  font-size: .92rem;
  letter-spacing: -0.02em;
}
.week-finalist > span {
  color: #8a8a8a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.week-stage-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .week-spotlight {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    padding: 36px 16px 28px;
  }
  .week-winner { grid-column: 1; order: 1; }
  .week-finalist-l,
  .week-finalist-r {
    grid-column: 1;
    justify-self: center;
    padding-bottom: 0;
    flex-direction: row;
    max-width: none;
    gap: 12px;
  }
  .week-finalist-l { order: 2; }
  .week-finalist-r { order: 3; }
  .week-finalist-orb { width: 64px; height: 64px; font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .week-beam,
  .week-crown,
  .week-ring { animation: none !important; }
}

/* ---- Tum Yayincilar (gercek veriyle) ---- */
.bcast-head {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 30px;
}
.bcast-head h2 { color: #fff; font-size: 1.6rem; margin: 0 0 6px; letter-spacing: -.02em; }
.bcast-head p { margin: 0; color: var(--muted-2); font-size: .88rem; }
.bcast-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.bcast-filter-pill {
  padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 700;
  background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--muted);
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.bcast-filter-pill:hover { color: #fff; }
.bcast-filter-pill.active { background: var(--accent-soft); color: var(--accent); border-color: rgba(255,46,99,.4); }

.bcast-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 960px) { .bcast-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bcast-grid { grid-template-columns: 1fr; } }

.bcast-card {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 22px;
  padding: 26px 20px 20px; text-align: center; transition: transform .2s, border-color .2s;
}
.bcast-card:hover { transform: translateY(-4px); border-color: rgba(255,46,99,.3); }
.bcast-avatar-wrap { position: relative; width: 72px; height: 72px; margin: 0 auto 16px; }
.bcast-avatar {
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded'; font-size: 1.7rem; font-weight: 800; color: #fff;
  box-shadow: 0 14px 28px -14px rgba(255,46,99,.6);
}
.bcast-app-badge {
  position: absolute; top: -4px; left: -4px; width: 26px; height: 26px; border-radius: 8px;
  background: #111; border: 2px solid var(--bg); color: #fff; font-family: 'Unbounded'; font-weight: 700;
  font-size: .74rem; display: flex; align-items: center; justify-content: center; z-index: 2;
}
.bcast-name { color: #fff; font-weight: 700; font-size: .96rem; margin-bottom: 10px; }
.bcast-pills { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.pill-app, .pill-country {
  font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.pill-app { background: var(--accent-soft); color: var(--accent); }
.pill-country { background: rgba(255,255,255,.06); color: var(--muted-2); }
.bcast-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.bcast-amount { font-family: 'Unbounded'; font-weight: 800; font-size: .92rem; color: var(--accent); }
.bcast-link { font-size: .78rem; font-weight: 700; color: var(--muted-2); }
.bcast-link:hover { color: #fff; }

/* ---- Ajans dizini: eksik yardimci siniflar ---- */
.pub-list-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.pub-list-head h2 { color: #fff; font-size: 1.5rem; margin: 8px 0 6px; }
.pub-list-head p { margin: 0; color: #9a9a9a; font-size: .85rem; }
.pub-tag { font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(255,45,120,.14); color: #ff7a9a; }
.pub-tag-muted { background: rgba(255,255,255,.06); color: #9a9a9a; }
.pub-stat { font-family: 'Unbounded'; font-weight: 800; color: #ff2d78; font-size: .92rem; }
.pub-card-link { font-size: .78rem; font-weight: 700; color: #fff; }
.pub-card-link-muted { color: #8a8a8a; }
.agency-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0 12px; }
.agency-card-body { flex: 1; min-width: 0; }
.agency-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); }
.agency-dir { margin-top: 8px; }

/* ---- Ajanslar sayfasi ---- */
.live-agency-page {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  background: #050505;
  min-height: 70vh;
}
.live-agency-inner { position: relative; z-index: 1; }
.agency-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.agency-head h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.agency-head p {
  margin: 0 auto 22px;
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 540px;
}
.agency-head-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.agency-stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.agency-stat-pill strong {
  color: #ff2d78;
  font-size: 1.15rem;
}
.agency-stat-pill span {
  color: #9a9a9a;
  font-size: .78rem;
  font-weight: 600;
}

.agency-best {
  display: grid;
  grid-template-columns: auto 1.2fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 56px;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 184, 0, 0.1), transparent 42%),
    linear-gradient(200deg, rgba(255, 45, 120, 0.12), transparent 50%),
    #111;
  border: 1px solid rgba(255, 184, 0, 0.28);
  box-shadow: 0 28px 60px -36px rgba(255, 184, 0, 0.35);
}
.agency-best-seal {
  position: relative;
  width: 110px;
  height: 110px;
}
.agency-best-seal svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(255, 184, 0, 0.35));
}
.agency-best-seal .seal-spin {
  transform-origin: 44px 44px;
  animation: agencySeal 12s linear infinite;
}
@keyframes agencySeal { to { transform: rotate(360deg); } }
.agency-best-seal span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: #ffd36a;
}
.agency-best-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.14);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: #ffd36a;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.agency-best-body h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}
.agency-best-lead { margin: 0 0 14px; color: #b0b0b0; }
.agency-best-apps { display: flex; flex-wrap: wrap; gap: 8px; }
.agency-app-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8e8e8;
  font-size: .78rem;
  font-weight: 600;
}
.agency-best-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 148px;
}
.agency-metric {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.agency-metric strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 2px;
}
.agency-metric span {
  color: #8a8a8a;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.agency-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.agency-card.is-top {
  border-color: rgba(255, 184, 0, 0.4);
  background: linear-gradient(160deg, rgba(255, 184, 0, 0.08), transparent 55%), #141414;
}
.agency-card-top-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.16);
  border: 1px solid rgba(255, 184, 0, 0.35);
  color: #ffd36a;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
}
.agency-card-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff2d78, #ff8a00);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  flex-shrink: 0;
}
.agency-card-body h3 { margin: 0; color: #fff; font-size: 1.08rem; }

@media (max-width: 900px) {
  .agency-best { grid-template-columns: 1fr; }
  .agency-best-metrics { flex-direction: row; width: 100%; }
  .agency-metric { flex: 1; }
  .agency-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .agency-grid { grid-template-columns: 1fr; }
  .agency-best-metrics { flex-direction: column; }
}

/* ---- Yeni Yayincilar: hikaye halkasi konsepti ---- */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin-border { to { --angle: 360deg; } }

.story-row { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; padding: 16px 0 8px; }
.story-item { display: flex; flex-direction: column; align-items: center; text-align: center; width: 120px; }
.story-ring { position: relative; width: 108px; height: 108px; margin-bottom: 14px; }
.story-ring::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%; z-index: 0;
  background: conic-gradient(from var(--angle), var(--accent), var(--purple), var(--cyan), var(--accent-2), var(--accent));
  animation: spin-border 6s linear infinite;
}
.story-photo {
  position: relative; z-index: 1; width: 100%; height: 100%; border-radius: 50%;
  background-color: var(--surface-2); border: 3px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded'; font-weight: 800; font-size: 1.7rem; color: #fff;
}
.story-app-badge {
  position: absolute; bottom: 0; right: 0; z-index: 2; width: 30px; height: 30px; border-radius: 50%;
  background: #111; border: 3px solid var(--bg); display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded'; font-weight: 700; font-size: .74rem; color: #fff;
}
.story-name { color: #fff; font-weight: 700; font-size: .92rem; letter-spacing: -.01em; }
.story-app-label { color: var(--muted-2); font-size: .72rem; margin-top: 3px; font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .story-ring::before { animation: none; }
}
@media (max-width: 700px) {
  .story-row { gap: 22px; }
  .story-item { width: 92px; }
  .story-ring { width: 84px; height: 84px; }
  .story-photo { font-size: 1.3rem; }
}

/* ---- Yuzen WhatsApp butonu ---- */
.wa-widget { position: fixed; right: 22px; bottom: 22px; z-index: 200; }
.wa-fab {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.6);
  transition: transform .18s;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-menu {
  position: absolute; bottom: 72px; right: 0; width: 240px; background: var(--surface-2);
  border: 1px solid var(--border-strong); border-radius: 16px; box-shadow: var(--shadow);
  padding: 10px; opacity: 0; transform: translateY(10px) scale(.96); pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.wa-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.wa-menu-head { font-size: .78rem; font-weight: 700; color: var(--muted-2); padding: 6px 10px 10px; }
.wa-menu-item {
  display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px;
  color: var(--text); font-size: .88rem; font-weight: 600;
}
.wa-menu-item:hover { background: rgba(255,255,255,.06); }
.wa-menu-dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; flex-shrink: 0; }
@media (max-width: 700px) {
  .wa-widget { right: 16px; bottom: 16px; }
  .wa-fab { width: 52px; height: 52px; }
  .wa-menu { width: 200px; right: -4px; }
}

/* ==========================================================================
   ANA SAYFA — "Yayın Akış Planı" (Rundown) konsepti
   Yayıncılık dünyasının kendi diliyle: tali ışığı, zaman kodu, kanal rehberi,
   kontrol paneli. Kasıtlı olarak AÇIK (light) tema — sitenin geri kalanından
   bilinçli bir kopuş.
   ========================================================================== */
.rd-wrap {
  --rd-bg: #eef1ee;
  --rd-panel: #ffffff;
  --rd-panel-2: #e3e8e2;
  --rd-ink: #14201b;
  --rd-muted: #5b6b62;
  --rd-muted-2: #8a978f;
  --rd-border: #ccd4cc;
  --rd-tally: #c62828;
  --rd-tally-soft: rgba(198,40,40,.08);
  --rd-signal: #1a7a4c;
  --rd-signal-soft: rgba(26,122,76,.1);
  background: var(--rd-bg);
  color: var(--rd-ink);
  font-family: 'IBM Plex Sans', sans-serif;
}
.rd-wrap a { color: inherit; }
.rd-wrap p { color: var(--rd-muted); }
.rd-mono { font-family: 'IBM Plex Mono', monospace; }

/* Masthead / hero */
.rd-hero { padding: 44px 0 0; }
.rd-hero-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 12px; }
.rd-tag {
  font-family: 'IBM Plex Mono'; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rd-muted); border: 1px solid var(--rd-border); padding: 5px 10px;
}
.rd-clock { font-family: 'IBM Plex Mono'; font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.rd-clock .rd-blink { width: 7px; height: 7px; border-radius: 50%; background: var(--rd-tally); animation: rd-pulse 1.1s infinite; }
@keyframes rd-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

.rd-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: end; padding-bottom: 36px; border-bottom: 1px solid var(--rd-border); }
.rd-stamp {
  display: inline-flex; align-items: center; gap: 8px; border: 3px solid var(--rd-tally); color: var(--rd-tally);
  font-family: 'IBM Plex Mono'; font-weight: 700; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; transform: rotate(-2.5deg); margin-bottom: 22px;
}
.rd-hero h1 {
  font-family: 'IBM Plex Mono'; font-weight: 700; text-transform: uppercase; letter-spacing: -.01em;
  font-size: clamp(2.1rem, 5.2vw, 3.8rem); line-height: 1.04; margin: 0 0 20px; color: var(--rd-ink);
}
.rd-lead { font-size: 1.02rem; max-width: 520px; line-height: 1.65; margin: 0 0 30px; }
.rd-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.rd-btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono'; font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .04em; padding: 13px 22px; border: 2px solid var(--rd-ink); color: var(--rd-ink);
  background: transparent; transition: background .15s, color .15s; cursor: pointer;
}
.rd-btn:hover { background: var(--rd-ink); color: var(--rd-bg); }
.rd-btn-solid { background: var(--rd-tally); border-color: var(--rd-tally); color: #fff; }
.rd-btn-solid:hover { background: #a81f1f; border-color: #a81f1f; color: #fff; }

.rd-hero-side { text-align: right; }
.rd-hero-side .rd-live-panel {
  display: inline-block; text-align: left; border: 1px solid var(--rd-border); background: var(--rd-panel); padding: 18px 20px;
}
.rd-hero-side .rd-live-panel .lbl { font-family: 'IBM Plex Mono'; font-size: .66rem; color: var(--rd-muted-2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.rd-vu { display: flex; align-items: flex-end; gap: 3px; height: 34px; margin-top: 4px; }
.rd-vu span { width: 4px; background: var(--rd-signal); opacity: .8; animation: rd-vu 1.1s ease-in-out infinite; }
@keyframes rd-vu { 0%, 100% { height: 20%; } 50% { height: 100%; } }

.rd-hero-foot { display: flex; margin-top: 0; }
.rd-stat { flex: 1; padding: 18px 22px; border-left: 1px solid var(--rd-border); }
.rd-stat:first-child { border-left: none; padding-left: 0; }
.rd-stat b { display: block; font-family: 'IBM Plex Mono'; font-size: 1.5rem; font-weight: 700; }
.rd-stat span { display: block; font-family: 'IBM Plex Mono'; font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rd-muted-2); margin-top: 4px; }

/* Section heads (rundown segment rows) */
.rd-section { padding: 54px 0; }
.rd-section-alt { background: var(--rd-panel-2); }
.rd-seg-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.rd-seg-num { font-family: 'IBM Plex Mono'; font-size: .76rem; color: var(--rd-tally); font-weight: 700; white-space: nowrap; }
.rd-seg-title { font-family: 'IBM Plex Mono'; font-weight: 700; text-transform: uppercase; font-size: 1.25rem; letter-spacing: -.01em; }
.rd-seg-rule { flex: 1; height: 1px; background: var(--rd-border); }
.rd-seg-desc { margin: 0 0 30px; font-size: .92rem; }

/* Kanal Rehberi (uygulama tablosu) */
.rd-table-row { display: grid; grid-template-columns: 62px 46px 1.6fr .9fr auto; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--rd-border); }
.rd-table-row:first-child { border-top: 1px solid var(--rd-border); }
.rd-ch { font-family: 'IBM Plex Mono'; font-weight: 700; color: var(--rd-muted-2); font-size: .82rem; }
.rd-ch-logo { width: 42px; height: 42px; object-fit: cover; border: 1px solid var(--rd-border); background: var(--rd-panel-2); display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono'; font-weight: 700; }
.rd-ch-name { font-weight: 700; font-size: 1rem; color: var(--rd-ink); }
.rd-ch-desc { font-size: .8rem; margin-top: 2px; }
.rd-status { font-family: 'IBM Plex Mono'; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; display: inline-flex; align-items: center; gap: 6px; }
.rd-status .rd-dot { width: 6px; height: 6px; border-radius: 50%; }
.rd-status-on { color: var(--rd-signal); } .rd-status-on .rd-dot { background: var(--rd-signal); }
.rd-status-off { color: var(--rd-muted-2); } .rd-status-off .rd-dot { background: var(--rd-muted-2); }
.rd-link { font-family: 'IBM Plex Mono'; font-size: .76rem; font-weight: 700; text-transform: uppercase; border-bottom: 1px solid var(--rd-ink); white-space: nowrap; }

/* Yayın Listesi (kontakt sayfası fotoğraf karoları) */
.rd-sheet-row { display: flex; gap: 18px; overflow-x: auto; padding: 4px 4px 12px; }
.rd-tile { flex: none; width: 132px; }
.rd-tile-photo { position: relative; width: 132px; height: 132px; border: 1px solid var(--rd-border); background: var(--rd-panel-2); overflow: hidden; display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono'; font-weight: 700; font-size: 1.8rem; color: var(--rd-muted-2); }
.rd-tile-photo img { width: 100%; height: 100%; object-fit: cover; }
.rd-tile-tag { position: absolute; top: 0; left: 0; background: var(--rd-tally); color: #fff; font-family: 'IBM Plex Mono'; font-size: .58rem; font-weight: 700; padding: 2px 6px; letter-spacing: .03em; }
.rd-tile-name { font-family: 'IBM Plex Mono'; font-size: .78rem; font-weight: 600; margin-top: 8px; color: var(--rd-ink); }

/* Kontrol Paneli (özellik satırları) */
.rd-panel-list { border-top: 1px solid var(--rd-border); }
.rd-panel-row { display: grid; grid-template-columns: 92px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--rd-border); align-items: start; }
.rd-mod-code { font-family: 'IBM Plex Mono'; font-size: .7rem; color: var(--rd-muted-2); display: flex; align-items: center; gap: 8px; padding-top: 3px; }
.rd-led { width: 8px; height: 8px; border-radius: 50%; background: var(--rd-signal); flex-shrink: 0; }
.rd-panel-row h3 { margin: 0 0 6px; font-size: 1.02rem; font-weight: 700; color: var(--rd-ink); }
.rd-panel-row p { margin: 0; font-size: .9rem; }

/* Yayın Günlüğü (blog) */
.rd-log-row { display: grid; grid-template-columns: 118px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--rd-border); }
.rd-log-row:first-child { border-top: 1px solid var(--rd-border); }
.rd-log-date { font-family: 'IBM Plex Mono'; font-size: .74rem; color: var(--rd-muted-2); padding-top: 2px; }
.rd-log-row h3 { margin: 0 0 6px; font-size: 1rem; color: var(--rd-ink); }
.rd-log-row p { margin: 0; font-size: .88rem; }

/* Sign-off (CTA) */
.rd-signoff { background: var(--rd-tally); color: #fff; padding: 56px 40px; text-align: center; }
.rd-signoff h2 { font-family: 'IBM Plex Mono'; text-transform: uppercase; font-size: clamp(1.5rem, 3.8vw, 2.3rem); margin: 0 0 12px; }
.rd-signoff p { color: rgba(255,255,255,.85); margin: 0 0 26px; }
.rd-signoff .rd-btn { border-color: rgba(255,255,255,.7); color: #fff; }
.rd-signoff .rd-btn:hover { background: #fff; color: var(--rd-tally); }
.rd-signoff .rd-btn-solid { background: #fff; color: var(--rd-tally); border-color: #fff; }
.rd-signoff .rd-btn-solid:hover { background: transparent; color: #fff; }

.rd-footer { padding: 28px 0; border-top: 1px solid var(--rd-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.rd-footer p { margin: 0; font-family: 'IBM Plex Mono'; font-size: .78rem; }
.rd-footer .links { display: flex; gap: 20px; }
.rd-footer .links a { font-size: .78rem; color: var(--rd-muted); }
.rd-footer .links a:hover { color: var(--rd-ink); }

@media (max-width: 860px) {
  .rd-hero-grid { grid-template-columns: 1fr; }
  .rd-hero-side { text-align: left; }
  .rd-hero-side .rd-live-panel { display: block; }
  .rd-table-row { grid-template-columns: 42px 1fr; grid-template-areas: "ch name" "logo name" "status link"; }
}
@media (max-width: 700px) {
  .rd-section { padding: 40px 0; }
  .rd-hero-foot { flex-direction: column; }
  .rd-stat { border-left: none !important; border-top: 1px solid var(--rd-border); padding: 14px 0 !important; }
  .rd-stat:first-child { border-top: none; }
  .rd-table-row { grid-template-columns: 1fr; row-gap: 8px; }
  .rd-panel-row { grid-template-columns: 1fr; }
  .rd-log-row { grid-template-columns: 1fr; }
}

/* ---- Dil degistirici (nav) ---- */
.lang-switch { display: flex; gap: 2px; margin-left: 4px; padding-left: 10px; border-left: 1px solid var(--border-strong); flex-shrink: 0; }
.lang-switch a {
  font-family: 'Unbounded'; font-size: .66rem; font-weight: 700; color: var(--muted-2);
  padding: 6px 7px; border-radius: 6px; white-space: nowrap; text-transform: uppercase;
}
.lang-switch a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.lang-switch a.active { color: var(--accent); background: var(--accent-soft); }
@media (max-width: 1040px) {
  .lang-switch { border-left: none; padding-left: 0; margin: 8px 0 0; }
}
