/* ============================================================
   DİKSİYON REHBERİ — STYLE.CSS v2
   Sidebar Layout | Light Premium Theme | Award-winning
   ============================================================ */

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

:root {
  /* ── LUXURY NAVY + GOLD PALETTE ── */
  --primary:       #0F1F3D;
  --primary-h:     #0A1628;
  --primary-l:     #EAF0FA;
  --primary-m:     #6B8CC7;
  --gold:          #C9A84C;
  --gold-l:        #FDF6E3;
  --gold-d:        #9A7324;
  --gold-m:        #EDD28A;
  --accent:        #B85C4A;
  --accent2:       #C9A84C;
  --accent3:       #3A7D5C;
  --accent4:       #2A6496;
  --bg:            #F4F3EF;
  --surface:       #FDFCF9;
  --surface2:      #F8F6F0;
  --border:        #E4DFD0;
  --border-h:      #C9A84C;
  --text:          #0F1F3D;
  --text-2:        #2C3E5D;
  --text-3:        #6B7A93;
  --text-4:        #A8B2C0;
  --ad-bg:         #F5F3EC;
  --ad-border:     #DDD7C3;
  --shadow-xs:     0 1px 4px rgba(15,31,61,.08);
  --shadow-sm:     0 2px 10px rgba(15,31,61,.10);
  --shadow-md:     0 6px 24px rgba(15,31,61,.12);
  --shadow-lg:     0 12px 40px rgba(15,31,61,.15);
  --r-sm:          10px;
  --r-md:          16px;
  --r-lg:          22px;
  --r-xl:          32px;
  --nav-h:         64px;
  --sidebar-w:     270px;
  --sidebar-r-w:   328px;
  --tr:            .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── GRADIENT TEXT ────────────────────────────── */
.hl {
  background: linear-gradient(120deg, var(--gold-d) 0%, var(--gold) 50%, #E8C96B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════ TOPBAR ════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253,252,249,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 2px 16px rgba(15,31,61,.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon-wrap {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), #1E3A6E);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(15,31,61,.35);
}
.logo-texts { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: .95rem; font-weight: 700; color: var(--text); }
.logo-main strong { color: var(--gold); }
.logo-sub { font-size: .68rem; color: var(--text-3); font-weight: 500; }

/* Top nav - Mega Menu */
.top-nav {
  display: flex;
  gap: 15px;
  flex: 1;
  align-items: center;
  height: 100%;
}
.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  padding: 10px 15px;
  border-radius: var(--r-sm);
  transition: all var(--tr);
  display: flex;
  align-items: center;
}
.nav-link:hover {
  color: var(--primary);
  background: var(--surface2);
}
.arrow {
  font-size: 0.8rem;
  margin-left: 6px;
  color: var(--text-3);
}

/* Mega Menu Panel */
.mega-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  width: 100vw;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.nav-item.has-mega.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-link.active .arrow {
  transform: rotate(180deg);
}
.arrow {
  display: inline-block;
  transition: transform var(--tr);
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mega-col h4 {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
/* Sub links inside mega menu */
.top-nav-link {
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--tr);
}
.top-nav-link:hover { background: var(--gold-l); color: var(--gold-d); }
.top-nav-link.active { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(15,31,61,.25); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border-radius: var(--r-sm);
  padding: 8px;
  transition: background var(--tr);
}
.hamburger:hover { background: var(--primary-l); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: all var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none;
  flex-direction: column;
  padding: 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
  width: 100%;
}
.mob-nav.open { display: flex; }

.mob-dropdown {
  border-bottom: 1px solid var(--border);
}
.mob-summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  display: block;
}
.mob-summary::-webkit-details-marker { display: none; }
.mob-summary::after {
  content: '▼';
  position: absolute;
  right: 20px;
  font-size: 0.8rem;
  color: var(--text-3);
  transition: transform 0.3s;
}
.mob-dropdown[open] .mob-summary::after {
  transform: rotate(180deg);
}
.mob-dropdown-content {
  padding: 0 20px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-link {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--tr);
  background: var(--surface2);
  border: 1.5px solid transparent;
}
.mob-link:hover, .mob-link.active { background: var(--primary); color: var(--gold-m); border-color: var(--primary); }

/* ═══════════════════ HERO BAND ═════════════════ */
.hero-band {
  background: linear-gradient(120deg, #080F1E 0%, #0F1F3D 40%, #152844 100%);
  color: #fff;
  padding: 30px 24px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(8,15,30,.35);
}
.hero-band-inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-band-text h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.hero-band-text h1 .hl {
  background: linear-gradient(90deg, var(--gold-m), var(--gold), #F5DFA0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-band-text p {
  font-size: .9rem;
  opacity: .88;
  max-width: 560px;
  line-height: 1.6;
}

.hero-stats-row { display: flex; gap: 28px; }
.hstat { text-align: center; }
.hstat-n {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.hstat-l {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .75;
}

/* ═══════════════════ PAGE LAYOUT ══════════════ */
.page-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr var(--sidebar-r-w);
  gap: 0;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0;
  align-items: start;
}
/* Full-page mode: collapse left sidebar only, keep right sidebar */
.page-layout.full-page-mode {
  grid-template-columns: 1fr var(--sidebar-r-w);
}
.page-layout.full-page-mode .sidebar {
  display: none;
}
/* In full-page mode, right sidebar recorder adapts */
.page-layout.full-page-mode .sidebar-recorder {
  width: 100%;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--surface);
}

/* ═══════════════════ SIDEBAR LEFT ══════════════ */
.sidebar {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  border-right: 1.5px solid var(--border);
  background: var(--surface);
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Sidebar title */
.sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 8px;
  border-bottom: 1.5px solid var(--border);
}
.sidebar-title-text { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); }
.sidebar-count {
  background: var(--gold);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Exercise list in sidebar */
.ex-list { display: flex; flex-direction: column; gap: 2px; }
.ex-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--tr);
  border: 1.5px solid transparent;
  position: relative;
}
.ex-list-item:hover { background: var(--gold-l); border-color: var(--gold-m); }
.ex-list-item.active { background: var(--gold-l); border-color: var(--gold); }
.ex-list-item.done { background: #F0FDF5; border-color: #86EFAC; }
.ex-list-item.done::after {
  content: '✓';
  position: absolute;
  right: 8px;
  font-size: .7rem;
  color: #16A34A;
  font-weight: 800;
}
.eli-text {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eli-dur {
  font-size: .66rem;
  color: var(--text-4);
  background: var(--surface2);
  padding: 2px 6px;
  border-radius: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Progress in sidebar */
.sidebar-progress {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.sp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sp-label { font-size: .78rem; font-weight: 700; color: var(--text-2); }
.sp-reset {
  background: none;
  font-size: .85rem;
  color: var(--text-3);
  padding: 2px 6px;
  border-radius: 6px;
  transition: all var(--tr);
}
.sp-reset:hover { background: var(--border); color: var(--accent); }
.sp-bar-wrap { height: 8px; background: var(--border); border-radius: 99px; overflow: hidden; margin-bottom: 6px; }
.sp-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-m));
  border-radius: 99px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  width: 0%;
}
.sp-text { font-size: .72rem; color: var(--text-3); font-weight: 600; }

/* Voice Recorder in sidebar */
.sidebar-recorder {
  background: linear-gradient(135deg, #0F1F3D, #1A2E52);
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: var(--r-md);
  padding: 16px;
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 250px !important;
}
.sidebar-recorder::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.sr-title { font-size: .85rem; font-weight: 800; color: var(--gold-m); margin-bottom: 2px; }
.sr-subtitle { font-size: .68rem; color: rgba(255,255,255,.45); margin-bottom: 12px; font-weight: 500; }
.sr-visualizer {
  position: relative;
  height: 64px;
  background: rgba(0,0,0,.3);
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.sr-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}
.sr-bars span {
  display: block;
  width: 4px;
  height: 6px;
  background: var(--gold);
  border-radius: 99px;
  transition: height .07s ease;
  opacity: .7;
}
.sr-status {
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sr-status.recording { color: #F87171; animation: blink .9s ease infinite; }
.sr-status.ready { color: #4ADE80; }
.sr-status.playing { color: var(--gold-m); }
.sr-status.error { color: #F87171; }
@keyframes blink { 0%,100% {opacity:1} 50% {opacity:.5} }

.sr-timer {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.sr-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}
.sr-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  font-family: inherit;
}
.sr-record {
  background: linear-gradient(135deg, #DC2626, #EF4444);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220,38,38,.4);
  border: none;
}
.sr-record:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(220,38,38,.6); }
.sr-record.recording {
  background: linear-gradient(135deg, #7F1D1D, #DC2626);
  animation: recordPulse 1.2s ease infinite;
}
@keyframes recordPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.5); }
  50%      { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
}
.sr-play {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(201,168,76,.3);
  border: none;
}
.sr-play:hover:not(:disabled) { transform: scale(1.08); box-shadow: 0 6px 20px rgba(201,168,76,.5); }
.sr-play:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }
.sr-delete {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.15);
}
.sr-delete:hover:not(:disabled) { background: rgba(239,68,68,.2); border-color: rgba(239,68,68,.4); color: #FCA5A5; }
.sr-delete:disabled { opacity: .35; cursor: not-allowed; }
.sr-note {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  line-height: 1.5;
  padding: 0 4px;
}

/* ═══════════════════ MAIN CONTENT ══════════════ */
.main-content {
  padding: 24px 20px;
  min-width: 0;
  border-right: 1.5px solid var(--border);
  background: var(--bg);
}

/* ── AD BLOCKS ──────────────────────────────────── */
.ad-block { margin-bottom: 20px; }
.ad-label {
  display: block;
  font-size: .65rem;
  color: var(--text-4);
  text-align: center;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ad-placeholder {
  background: var(--ad-bg);
  border: 1.5px dashed var(--ad-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-ph-sidebar { height: 250px; width: 100%; }
.ad-ph-leader { height: 90px; width: 100%; }
.ad-ph-inner { text-align: center; color: var(--text-4); }
.ad-ph-icon { font-size: 1.4rem; margin-bottom: 4px; opacity: .5; }
.ad-ph-text { font-size: .75rem; font-weight: 600; line-height: 1.5; }

/* ── EXERCISE PANELS ─────────────────────────────── */
.ex-panel {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 20px;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-h) + 16px);
  transition: box-shadow var(--tr), border-color var(--tr);
}
.ex-panel:hover { box-shadow: var(--shadow-md); }
.ex-panel.done-panel { border-color: #86EFAC; }

/* Panel header */
.ep-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(201,168,76,.04) 0%, var(--surface) 60%);
  cursor: default;
  border-bottom: 1.5px solid var(--border);
  position: relative;
}
.ep-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-d), var(--gold), var(--gold-m));
  border-radius: 0 4px 4px 0;
}
.ep-emoji { font-size: 2rem; flex-shrink: 0; }
.ep-meta { flex: 1; min-width: 0; }
.ep-cat-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 2px 10px;
  border-radius: 99px;
  margin-bottom: 5px;
}
.ep-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.ep-pills { display: flex; gap: 8px; margin-top: 5px; flex-wrap: wrap; }
.ep-pill {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--surface2);
  border: 1.5px solid var(--border);
  padding: 2px 10px;
  border-radius: 99px;
}
.ep-done-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #DCFCE7;
  color: #16A34A;
  font-size: .75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 99px;
  opacity: 0;
  transition: opacity var(--tr);
  flex-shrink: 0;
}
.done-panel .ep-done-badge { opacity: 1; }

/* Panel body */
.ep-body { padding: 24px; }

/* Description */
.ep-desc {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 22px;
  padding: 16px 20px;
  background: linear-gradient(120deg, var(--gold-l) 0%, var(--surface2) 100%);
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
}

/* Steps */
.ep-steps-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.ep-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.ep-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--surface2);
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  transition: border-color var(--tr), background var(--tr);
}
.ep-step:hover { border-color: var(--gold-m); background: var(--gold-l); }
.ep-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold-m);
  font-size: .72rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--gold-m), 0 3px 8px rgba(15,31,61,.2);
  letter-spacing: 0;
}
.ep-step-text { font-size: .9rem; color: var(--text-2); line-height: 1.6; }

/* ── EXERCISE EXTRA SECTIONS ─────────────────────── */
.ep-section { margin-bottom: 22px; }
.ep-section-title {
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 10px;
  color: var(--text-3);
}

/* Benefits list */
.ep-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ep-benefit-list li {
  font-size: .88rem;
  color: var(--text-2);
  padding: 9px 14px 9px 36px;
  background: linear-gradient(120deg, #E9F5EE, var(--surface2));
  border: 1.5px solid #C6E8D2;
  border-radius: 9px;
  position: relative;
  line-height: 1.5;
  transition: border-color var(--tr);
}
.ep-benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 9px;
  font-size: .8rem;
  font-weight: 900;
  color: #1A5C35;
}
.ep-benefit-list li:hover { border-color: #86EFAC; }

/* Mistakes list */
.ep-mistake-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ep-mistake-list li {
  font-size: .88rem;
  color: #7A2A1A;
  padding: 9px 14px 9px 36px;
  background: linear-gradient(120deg, #FEF0EC, var(--surface2));
  border: 1.5px solid #FAC8B8;
  border-radius: 9px;
  position: relative;
  line-height: 1.5;
  transition: border-color var(--tr);
}
.ep-mistake-list li::before {
  content: '!';
  position: absolute;
  left: 12px;
  top: 9px;
  font-size: .85rem;
  font-weight: 900;
  color: #C9604A;
  background: #FAC8B8;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.ep-mistake-list li:hover { border-color: #F9A8D4; }

/* Variations */
.ep-var-list { display: flex; flex-direction: column; gap: 8px; }
.ep-var-item {
  font-size: .88rem;
  color: var(--gold-d);
  background: var(--gold-l);
  border: 1.5px solid var(--gold-m);
  border-radius: 9px;
  padding: 10px 14px;
  line-height: 1.5;
  transition: background var(--tr), border-color var(--tr);
}
.ep-var-item:hover { background: #FBF0D8; border-color: var(--gold); }

/* Related exercises */
.ep-related {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0 4px;
  border-top: 1.5px solid var(--border);
  margin-top: 10px;
}
.ep-related-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-4);
  flex-shrink: 0;
}
.ep-related-chip {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-l);
  border: 1.5px solid #C8D8EF;
  padding: 5px 12px;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
}
.ep-related-chip:hover { background: var(--primary); color: var(--gold-m); border-color: var(--primary); }


/* Tip box */
.ep-tip {
  background: linear-gradient(120deg, #FFFBEB, #FFF3C4);
  border: 1.5px solid #FDE68A;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: .88rem;
  color: #78350F;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Phrase / Tekerleme highlight */
.ep-phrase {
  background: linear-gradient(120deg, var(--gold-l), #FBF4E4);
  border: 1.5px solid var(--gold-m);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-d);
  margin-bottom: 22px;
  font-style: italic;
  line-height: 1.7;
  text-align: center;
}

/* Complete button */
.ep-footer { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-done {
  padding: 11px 26px;
  border-radius: 99px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(34,197,94,.25);
  transition: all var(--tr);
  display: flex; align-items: center; gap: 6px;
}
.btn-done:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,.35); }
.btn-done.done-state { background: linear-gradient(135deg, #86EFAC, #4ADE80); opacity: .8; cursor: default; }
.ep-meta-pills { display: flex; gap: 8px; }
.ep-meta-pill {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-3);
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
}

/* Category badge colors — luxury muted tones */
.badge-nefes     { background: #E8F0FA; color: #1E3A6E; }
.badge-tekerleme { background: #FAE8E0; color: #7A2A1A; }
.badge-ses       { background: #E5F5EC; color: #1A5C35; }
.badge-telaffuz  { background: #F5E8EE; color: #7A1A3C; }
.badge-ritim     { background: #FDF5E0; color: #7A5800; }
.badge-vurgu     { background: #F0EAF7; color: #4A1A7A; }
.badge-duraklama { background: #E4F2FA; color: #0D4070; }
.badge-rezonans  { background: #E0F5F2; color: #0A4A42; }

/* Accent stripes — navy + gold family */
.ep-panel-nefes .ep-header::before     { background: linear-gradient(180deg, #1E3A6E, #4A7CC7); }
.ep-panel-tekerleme .ep-header::before { background: linear-gradient(180deg, #7A2A1A, #C9604A); }
.ep-panel-ses .ep-header::before       { background: linear-gradient(180deg, #1A5C35, #3A9C65); }
.ep-panel-telaffuz .ep-header::before  { background: linear-gradient(180deg, #7A1A3C, #C94A7C); }
.ep-panel-ritim .ep-header::before     { background: linear-gradient(180deg, var(--gold-d), var(--gold)); }
.ep-panel-vurgu .ep-header::before     { background: linear-gradient(180deg, #4A1A7A, #8B5CC7); }
.ep-panel-duraklama .ep-header::before { background: linear-gradient(180deg, #0D4070, #2A7AC7); }
.ep-panel-rezonans .ep-header::before  { background: linear-gradient(180deg, #0A4A42, #2A9A8C); }

/* ── TIPS SECTION (inline) ────────────────────── */
.tips-section-inline {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.tsi-header { margin-bottom: 20px; }
.tsi-header h2 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.tsi-header p { font-size: .85rem; color: var(--text-3); }
.tips-grid-inline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.tip-card-inline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--tr);
}
.tip-card-inline:hover { border-color: var(--gold-m); background: var(--gold-l); }
.tci-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.tip-card-inline strong { display: block; font-size: .85rem; font-weight: 800; margin-bottom: 4px; }
.tip-card-inline p { font-size: .8rem; color: var(--text-2); line-height: 1.55; }

/* ═══════════════════ SIDEBAR RIGHT ════════════ */
.sidebar-right {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  background: var(--surface);
}
/* Prevent flex children from shrinking inside scrollable sidebar */
.sidebar-right > * {
  flex-shrink: 0;
}

/* ═══════════ RIGHT-SIDEBAR WIDGET SYSTEM ═══════════ */
.rw-widget {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--surface2);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.rw-widget:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  border-color: rgba(201,168,76,.35);
}

/* Widget header */
.rw-widget-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-bottom: 1.5px solid var(--border);
}
.rw-widget-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border-radius: 10px;
  background: var(--gold-l);
  flex-shrink: 0;
}
.rw-widget-title {
  font-size: .82rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .02em;
}

/* ── TIP WIDGET ── */
.rw-tip-widget .rw-widget-icon { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.rw-widget-body {
  padding: 16px;
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.7;
  min-height: 60px;
}
.rw-widget-body:empty::after {
  content: 'İpucu yükleniyor...';
  color: var(--text-3);
  font-style: italic;
}

/* ── CATEGORIES WIDGET ── */
.rw-cat-widget .rw-widget-icon { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.rw-cat-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.rw-cat-list::-webkit-scrollbar { width: 3px; }
.rw-cat-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Category items — using existing .cs-item class from JS */
.cs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--surface);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
}
.cs-item:hover {
  border-color: var(--gold);
  color: var(--gold-d);
  background: var(--gold-l);
  transform: translateX(3px);
}
.cs-count {
  font-size: .68rem;
  background: var(--gold-l);
  color: var(--gold-d);
  padding: 2px 9px;
  border-radius: 99px;
  font-weight: 800;
  min-width: 24px;
  text-align: center;
}

/* ── PROGRESS WIDGET ── */
.rw-progress-widget .rw-widget-icon { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.rw-progress-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rw-prog-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rw-prog-label {
  font-size: .78rem;
  color: var(--text-3);
  font-weight: 600;
}
.rw-prog-value {
  font-size: .88rem;
  font-weight: 800;
  color: var(--gold-d);
}
.rw-prog-bar-wrap {
  height: 8px;
  background: var(--surface);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.rw-prog-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  border-radius: 99px;
  transition: width .5s ease;
}
.rw-prog-msg {
  font-size: .72rem;
  color: var(--text-3);
  line-height: 1.55;
  text-align: center;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}


/* ═══════════════════ FOOTER ════════════════════ */
.footer {
  background: #080F1E;
  color: rgba(255,255,255,.7);
  padding: 48px 24px 28px;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-left { flex: 2; min-width: 220px; }
.footer-left .logo-main { color: rgba(255,255,255,.9); font-size: 1rem; }
.footer-left .logo-main strong { color: var(--gold); }
.footer-left p { margin-top: 12px; font-size: .85rem; line-height: 1.65; max-width: 320px; }
.footer-links-col {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col strong { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.footer-links-col a { font-size: .85rem; color: rgba(255,255,255,.7); transition: color var(--tr); }
.footer-links-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1520px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ═══════════════════ TOAST ═════════════════════ */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text);
  color: #fff;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1280px) {
  :root { --sidebar-r-w: 260px; }
  /* Sidebar-right always visible, just narrower */
  .sidebar-right { display: flex !important; }
  /* 3 column grid maintained, just narrower right sidebar */
  .page-layout { grid-template-columns: var(--sidebar-w) 1fr var(--sidebar-r-w); }
  /* In full-page mode, collapse left sidebar only */
  .page-layout.full-page-mode {
    grid-template-columns: 1fr var(--sidebar-r-w);
  }
}

@media (max-width: 960px) {
  :root { --sidebar-w: 220px; --sidebar-r-w: 220px; }
  .arena-settings-row { gap: 12px; }
}

@media (max-width: 860px) {
  /* On mobile/tablet: hide both sidebars, single column */
  .sidebar { display: none; }
  .sidebar-right { display: none !important; }
  .page-layout { grid-template-columns: 1fr !important; }
  .top-nav { display: none; }
  .hamburger { display: flex; background: none; }
  .hero-stats-row { gap: 16px; }
  .ep-header { padding: 16px; gap: 10px; }
  .ep-body { padding: 16px; }
  .ep-emoji { font-size: 1.6rem; }
  .arena-section { padding: 20px 16px; border-radius: var(--r-lg); }
  .arena-header { margin-bottom: 18px; }
  .alphabet-grid { grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); gap: 6px; }
  .tekerleme-display { padding: 20px 18px; }
  .td-text { font-size: 1.1rem; }
  .arena-controls { gap: 6px; }
  .arena-btn { padding: 8px 14px; font-size: .78rem; }
  .tips-grid-inline { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-band { padding: 22px 16px; }
  .hero-band-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-band-text h1 { font-size: 1.4rem; }
  .hero-stats-row { width: 100%; justify-content: space-between; gap: 8px; }
  .hstat-n { font-size: 1.4rem; }
  .tips-grid-inline { grid-template-columns: 1fr; }
  .ep-pills { flex-wrap: wrap; gap: 4px; }
  .ep-pill { font-size: .66rem; padding: 2px 8px; }
  .ep-title { font-size: 1rem; }
  .ep-desc { font-size: .88rem; padding: 12px 14px; }
  .ep-step { padding: 10px 12px; gap: 10px; }
  .ep-step-text { font-size: .85rem; }
  .btn-done { padding: 10px 20px; font-size: .82rem; }
  .arena-btn { padding: 8px 12px; font-size: .75rem; }
  .arena-section { padding: 16px 12px; }
  .arena-icon { width: 44px; height: 44px; font-size: 1.4rem !important; }
  .arena-title h2 { font-size: 1.15rem; }
  .asb-item { padding: 8px 12px; min-width: 64px; }
  .asb-n { font-size: 1.2rem; }
  .alphabet-grid { grid-template-columns: repeat(auto-fill, minmax(44px, 1fr)); gap: 5px; }
  .alpha-btn { font-size: 1rem; }
  .tekerleme-display { padding: 16px 14px; min-height: 90px; }
  .td-text { font-size: 1rem; }
  .arena-settings-row { flex-direction: column; gap: 10px; padding: 12px; }
  .arena-setting-group { justify-content: space-between; width: 100%; }
  .ep-footer { flex-direction: column; align-items: stretch; gap: 8px; }
  .ep-footer .btn-done { width: 100%; justify-content: center; }
  .ep-meta-pills { justify-content: center; }
  .ep-related { gap: 6px; }
  .ep-related-chip { font-size: .72rem; padding: 4px 10px; }
  .footer-inner { gap: 28px; }
  .footer-links-col { min-width: 120px; }
  .topbar-inner { padding: 0 14px; gap: 12px; }
  .mob-link { font-size: .85rem; padding: 7px 12px; }

  /* Mobile bottom action bar for arena on small screens */
  .arena-controls { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 400px) {
  .hero-band-text h1 { font-size: 1.2rem; }
  .ep-header { flex-wrap: wrap; }
  .ep-done-badge { display: none; }
  .arena-settings-row { gap: 8px; }
  .ars-options { flex-wrap: wrap; }
  .asb-item { min-width: 56px; padding: 7px 10px; }
}

/* Mobile accordion cleanup */
@media (max-width: 860px) {
  .mob-link {
    text-align: left;
    justify-content: flex-start;
  }
}

/* ═══════════════════ TEKERLEME ARENASI ═════════════ */
.arena-section {
  background: linear-gradient(135deg, #080F1E 0%, #0F1F3D 60%, #152844 100%);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-bottom: 24px;
  border: 1.5px solid rgba(201,168,76,.3);
  box-shadow: 0 16px 48px rgba(8,15,30,.4), inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.arena-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 60%);
  pointer-events: none;
}
.arena-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.arena-title-group { display: flex; align-items: center; gap: 14px; }
.arena-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
  flex-shrink: 0;
}
.arena-title { color: #fff; }
.arena-title h2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.arena-title h2 .hl {
  background: linear-gradient(90deg, var(--gold-m), #F5DFA0);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.arena-title p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.4; }

.arena-score-board {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.asb-item {
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  min-width: 80px;
}
.asb-n {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}
.asb-l {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  font-weight: 700;
}

/* Alphabet grid */
.alphabet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
.alpha-btn {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.alpha-btn:hover {
  background: rgba(201,168,76,.2);
  border-color: var(--gold);
  color: var(--gold-m);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,.25);
}
.alpha-btn.active {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  border-color: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(201,168,76,.45);
}
.alpha-btn .ab-count {
  font-size: .55rem;
  font-weight: 700;
  opacity: .65;
  letter-spacing: .03em;
}
.alpha-btn.active .ab-count { opacity: .75; color: var(--primary-h); }

/* Tongue twister display */
.tekerleme-display {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(201,168,76,.25);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s ease;
}
.tekerleme-display.pulse {
  animation: tdPulse .4s ease;
}
@keyframes tdPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}
.td-letter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 4px;
  background: linear-gradient(90deg, var(--gold-d), rgba(201,168,76,.2));
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold-m);
  text-transform: uppercase;
  letter-spacing: .08em;
  align-self: flex-start;
}
.td-letter-badge .tdlb-char {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}
.td-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: .01em;
}
.td-text.highlight-letters span.hl-char {
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(201,168,76,.5);
}
.td-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.td-num {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
}

/* Speed test */
.speed-test-area {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: none;
}
.speed-test-area.active { display: block; }
.sta-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.sta-input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color .2s;
  resize: none;
  min-height: 80px;
}
.sta-input::placeholder { color: rgba(255,255,255,.3); }
.sta-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.sta-stats {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.sta-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.sta-stat strong { color: var(--gold); }

/* Accuracy visual */
.accuracy-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
}
.accuracy-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #EF4444, #F59E0B, #22C55E);
  background-size: 200% 100%;
  transition: width .5s ease, background-position .5s ease;
}

/* Arena body two-col grid */
.arena-body-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .arena-body-grid { grid-template-columns: 1fr; }
  .arena-list-col { display: none; }
}
.arena-main-col { display: flex; flex-direction: column; gap: 16px; }

/* Arena right list */
.arena-list-col {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  overflow: hidden;
  max-height: 560px;
  display: flex;
  flex-direction: column;
}
.arena-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.arena-list-count {
  background: rgba(201,168,76,.2);
  color: var(--gold-m);
  font-size: .7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 99px;
}
.arena-list-items {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}
.arena-list-items::-webkit-scrollbar { width: 4px; }
.arena-list-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px; }
.arena-list-empty {
  padding: 24px 16px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.arena-list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s;
}
.arena-list-item:hover { background: rgba(255,255,255,.06); }
.arena-list-item.active {
  background: rgba(201,168,76,.12);
  border-left: 3px solid var(--gold);
}
.ali-num {
  font-size: .68rem;
  font-weight: 800;
  color: rgba(255,255,255,.3);
  padding-top: 2px;
  min-width: 20px;
  flex-shrink: 0;
}
.arena-list-item.active .ali-num { color: var(--gold); }
.ali-text {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
}
.arena-list-item.active .ali-text { color: rgba(255,255,255,.9); }

/* Arena settings row */
.arena-settings-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
}
.arena-setting-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ars-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}
.ars-options {
  display: flex;
  gap: 4px;
}
.ars-opt {
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.ars-opt:hover { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.ars-opt.active {
  background: rgba(201,168,76,.25);
  border-color: var(--gold);
  color: var(--gold-m);
}

/* Arena icon as letter — not emoji */
.arena-icon {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem !important;
  letter-spacing: 0;
}

/* Arena controls */
.arena-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.arena-btn {
  padding: 10px 20px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s cubic-bezier(.4,0,.2,1);
}
.arena-btn-primary {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(201,168,76,.35);
}
.arena-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,168,76,.5); }
.arena-btn-secondary {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.15);
}
.arena-btn-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }
.arena-btn-danger {
  background: rgba(239,68,68,.15);
  color: #FCA5A5;
  border: 1.5px solid rgba(239,68,68,.25);
}
.arena-btn-danger:hover { background: rgba(239,68,68,.25); }

/* Speed timer in arena */
.arena-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 20px;
  background: rgba(255,255,255,.05);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.1);
}
.at-label { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.at-time {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.at-time.running { color: #4ADE80; }
.at-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.at-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #F5DFA0);
  border-radius: 99px;
  transition: width .1s linear;
  width: 100%;
}
.at-bar.running { background: linear-gradient(90deg, #22C55E, #4ADE80); }

/* Result overlay */
.arena-result {
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  display: none;
  animation: resultIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes resultIn {
  from { opacity: 0; transform: scale(.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.arena-result.show { display: block; }
.ar-emoji { font-size: 3.5rem; display: block; margin-bottom: 12px; }
.ar-grade {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}
.ar-time { font-size: 1.1rem; color: rgba(255,255,255,.7); margin-bottom: 20px; font-weight: 600; }
.ar-stats { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.ar-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  min-width: 100px;
}
.ar-stat-n { display: block; font-size: 1.4rem; font-weight: 900; color: var(--gold); }
.ar-stat-l { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.5); font-weight: 700; }

/* Per-letter exercise from TEKERLEMELER DB */
.tekerleme-ep .ep-tekerlemeler {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.teker-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gold-l);
  border: 1.5px solid var(--gold-m);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.teker-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold-d), var(--gold));
}
.teker-item:hover {
  background: #FBF0D8;
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 4px 0 16px rgba(201,168,76,.15);
}
.teker-item.speaking {
  background: linear-gradient(120deg, #0F1F3D 0%, #1E3A6E 100%);
  border-color: var(--gold);
  color: #fff;
}
.teker-item.speaking::before { background: linear-gradient(180deg, var(--gold), #F5DFA0); }
.teker-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold-m);
  font-size: .68rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.teker-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold-d);
  line-height: 1.55;
  flex: 1;
}
.teker-item.speaking .teker-text { color: rgba(255,255,255,.9); }
.teker-item.speaking .teker-num { background: var(--gold); color: var(--primary); }
.teker-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--tr);
}
.teker-item:hover .teker-actions { opacity: 1; }
.teker-action-btn {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(15,31,61,.08);
  border: 1px solid rgba(15,31,61,.12);
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: all var(--tr);
}
.teker-action-btn:hover { background: var(--primary); color: var(--gold-m); }

/* Letter header for tekerleme exercise */
.ep-letter-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--border);
  background: linear-gradient(90deg, var(--gold-l) 0%, var(--surface) 70%);
}
.ep-letter-char {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), #1E3A6E);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-m);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(15,31,61,.3);
}
.ep-letter-info h2 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.ep-letter-info p { font-size: .82rem; color: var(--text-3); }
.ep-letter-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}
.ep-letter-action-btn {
  padding: 8px 16px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 5px;
  transition: all var(--tr);
}
.ep-letter-action-btn.primary {
  background: var(--primary);
  color: var(--gold-m);
  box-shadow: 0 4px 14px rgba(15,31,61,.25);
}
.ep-letter-action-btn.primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,31,61,.35); }
.ep-letter-action-btn.secondary {
  background: var(--gold-l);
  color: var(--gold-d);
  border: 1.5px solid var(--gold-m);
}
.ep-letter-action-btn.secondary:hover { background: #FBF0D8; border-color: var(--gold); }

/* Active step highlight in tekerleme panel */
.teker-item.done-teker {
  background: linear-gradient(120deg, #E9F5EE, var(--surface2));
  border-color: #86EFAC;
}
.teker-item.done-teker .teker-text { color: #1A5C35; }
.teker-item.done-teker .teker-num { background: #16A34A; }

/* Arena mode — letter browse pagination */
.arena-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.arena-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.arena-nav-btn:hover { background: rgba(201,168,76,.2); border-color: var(--gold); color: var(--gold-m); }
.arena-nav-info {
  flex: 1;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}

/* Scramble mode */
.scramble-panel {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 16px;
  display: none;
}
.scramble-panel.active { display: block; }
.scramble-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.scramble-word-chip {
  padding: 8px 18px;
  background: rgba(201,168,76,.15);
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 99px;
  color: var(--gold-m);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.scramble-word-chip:hover { background: rgba(201,168,76,.3); }
.scramble-word-chip.placed {
  background: rgba(34,197,94,.15);
  border-color: rgba(34,197,94,.3);
  color: #4ADE80;
  text-decoration: line-through;
  opacity: .6;
}

/* Scrollbar global */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-m); }

/* Confetti animation for Arena */
.confetti {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
  z-index: 99999;
  pointer-events: none;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ── INTERACTIVE BREATHING (NEFES EKRANI) ── */
.nefes-section {
  background: var(--surface-m);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: 0 12px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.nefes-header {
  text-align: center;
  margin-bottom: 24px;
}
.nefes-header h2 { font-size: 1.8rem; letter-spacing: -0.5px; margin-bottom: 8px; font-weight: 700; color: var(--gold); }
.nefes-header p { color: var(--text-m); font-size: 0.95rem; }

.nefes-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.n-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-m); font-family: inherit; font-size: 0.9rem; font-weight: 600;
  padding: 8px 16px; border-radius: 99px; cursor: pointer; transition: all 0.2s;
}
.n-btn:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); color: #fff; }
.n-btn.active { background: var(--primary); border-color: var(--gold-d); color: var(--gold); }

.breathing-circle-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.breathing-circle {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, var(--gold) 0%, var(--gold-d) 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(201,168,76,.4);
  position: absolute;
  transition: all transform 0.1s linear; /* fallback */
  transform: scale(1);
}

.breathing-ring {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px dashed rgba(201,168,76,.3);
  animation: rotateRing 30s linear infinite;
}
@keyframes rotateRing { 100% { transform: rotate(360deg); } }

.breathing-text-wrapper {
  position: absolute;
  z-index: 10;
  text-align: center;
}
.b-action-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
  letter-spacing: 1px;
}
.b-timer-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-l);
  margin-top: 4px;
}

.nefes-action-row {
  margin-top: 32px;
}
.nefes-start-btn {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--primary);
  border: none;
  font-family: inherit; font-size: 1.1rem; font-weight: 700;
  padding: 14px 36px; border-radius: 99px; cursor: pointer;
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
  transition: all 0.2s;
}
.nefes-start-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,168,76,.4); }

.nefes-instructions {
  margin-top: 24px;
  background: rgba(0,0,0,.2);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.05);
  max-width: 500px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-m);
  line-height: 1.5;
}

/* ── RECORDER PLAYBACK BAR ───────────────────────────────── */
.sr-playback-wrap {
  margin: 8px 0;
}
.sr-pb-bar-wrap {
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
  cursor: pointer;
}
.sr-pb-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  border-radius: 99px;
  transition: width 0.15s linear;
}
.sr-pb-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-m);
  margin-top: 4px;
}

/* ── OKUMA PARÇALARI MODULE ──────────────────────────────── */
.okuma-header {
  text-align: center;
  padding: 32px 16px 8px;
}
.okuma-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.okuma-header p {
  color: var(--text-m);
  font-size: 0.95rem;
}

.okuma-filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 16px;
  margin-bottom: 16px;
}
.okuma-cat-filter, .okuma-level-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.ocf-btn, .olf-btn {
  padding: 6px 18px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 99px;
  background: transparent;
  color: var(--text-m);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.ocf-btn:hover, .olf-btn:hover { border-color: var(--gold); color: var(--gold); }
.ocf-btn.active, .olf-btn.active {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--primary);
  border-color: transparent;
  font-weight: 700;
}

.okuma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  padding: 0 16px 32px;
}
.okuma-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s;
}
.okuma-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.oc-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.oc-icon { font-size: 2rem; flex-shrink: 0; }
.oc-meta { flex: 1; }
.oc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 6px;
}
.oc-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.oc-level-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
}
.oc-dur {
  font-size: 0.72rem;
  color: var(--text-m);
}
.oc-focus {
  font-size: 0.78rem;
  color: var(--text-m);
  font-style: italic;
}
.oc-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: center;
  transition: all 0.2s;
}
.okuma-card:hover .oc-arrow { opacity: 1; transform: translateX(4px); }

/* Okuma panel */
.okuma-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 18px;
  margin: 0 16px 32px;
  padding: 28px;
}
.op-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.op-back-btn {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.op-back-btn:hover { background: rgba(201,168,76,.2); }
.op-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 4px;
}
.op-meta {
  font-size: 0.8rem;
  color: var(--text-m);
}

.op-text-box {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-h);
  letter-spacing: 0.02em;
}
.op-line { margin: 0 0 12px; }
.op-line:last-child { margin-bottom: 0; }

.op-hints {
  margin-bottom: 20px;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: 16px 20px;
}
.op-hints-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.op-hint {
  font-size: 0.85rem;
  color: var(--text-m);
  margin-bottom: 4px;
  line-height: 1.5;
}

.op-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.op-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.op-btn-primary {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--primary);
}
.op-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.op-btn-secondary {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-h);
}
.op-btn-secondary:hover { background: rgba(255,255,255,.12); }

/* ── VOICE RECORDER NEW LAYOUT FIXES ─────────────────────── */
.sr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
}
.sr-icon {
  background: rgba(201,168,76,.15);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: inset 0 2px 8px rgba(201,168,76,.1);
}
.sr-title { font-size: 0.95rem; font-weight: 800; color: var(--gold-m); margin-bottom: 2px; }
.sr-subtitle { font-size: 0.72rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* ── NEW FULL FOOTER ─────────────────────────────────────── */
.footer {
  background: #0B1120;
  color: #fff;
  border-top: 2px solid var(--gold);
  padding: 60px 24px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer .logo-main { color: #fff; }
.footer .logo-main strong { color: var(--gold); }
.footer .logo-sub { color: #94A3B8; }
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand {
  padding-right: 40px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fs-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  color: #CBD5E1;
  font-weight: 600;
}
.fcol-title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col a {
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}
.footer-links-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: #64748B;
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: #64748B;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── LEGAL MODAL SYSTEM ──────────────────────────────────── */
.legal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.legal-overlay.active { opacity: 1; visibility: visible; }

.legal-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%; max-width: 700px;
  max-height: 85vh;
  background: #fff;
  border-radius: 24px;
  z-index: 1001;
  opacity: 0; visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  overflow: hidden;
}
.legal-modal.active {
  opacity: 1; visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.lm-header {
  padding: 24px 32px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.lm-title-row { display: flex; align-items: center; gap: 16px; }
.lm-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(201,168,76,.3);
}
.lm-title {
  font-size: 1.4rem; font-weight: 800; color: #0F172A; margin-bottom: 4px;
}
.lm-sub { font-size: 0.9rem; color: #64748B; font-weight: 500; }
.lm-close {
  background: #F1F5F9;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem; color: #64748B;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.lm-close:hover { background: #E2E8F0; color: #0F172A; }

.lm-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}
.lm-body::-webkit-scrollbar { width: 6px; }
.lm-body::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 6px; }

.lm-section { margin-bottom: 32px; }
.lm-section:last-child { margin-bottom: 0; }
.lm-section h3 {
  font-size: 1.1rem; font-weight: 800; color: #0F172A; margin-bottom: 12px;
}
.lm-section p {
  color: #475569; font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px;
}
.lm-list {
  padding-left: 20px; color: #475569; font-size: 0.95rem; line-height: 1.6;
}
.lm-list li { margin-bottom: 8px; }

.lm-legal-banner {
  background: #F0FDF4; border: 1px solid #BBF7D0;
  padding: 16px; border-radius: 12px;
  display: flex; gap: 12px; align-items: center;
  color: #166534; font-weight: 600; font-size: 0.95rem;
  margin-bottom: 32px;
}

/* Modals - About Cards */
.lm-highlight-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px;
}
.lm-hcard {
  background: #F8FAFC; border: 1px solid #E2E8F0; padding: 16px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.lm-hc-icon { font-size: 1.8rem; margin-bottom: 4px; }
.lm-hcard strong { font-size: 1rem; color: #0F172A; }
.lm-hcard span { font-size: 0.85rem; color: #64748B; }

/* Modals - Contact */
.lm-contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.lm-contact-card {
  background: #F8FAFC; border: 1px solid #E2E8F0; padding: 20px 16px; border-radius: 16px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.lm-cc-icon { font-size: 2rem; margin-bottom: 4px; }
.lm-contact-card strong { color: #0F172A; font-size: 0.95rem; }
.lm-contact-card a { color: var(--gold-d); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.lm-contact-card a:hover { text-decoration: underline; }
.lm-cc-note { font-size: 0.75rem; color: #94A3B8; margin-top: auto; }

/* Modals - Form */
.lm-form {
  background: #F8FAFC; border: 1px solid #E2E8F0; padding: 24px; border-radius: 16px;
}
.lm-form-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lm-form-row { margin-bottom: 16px; }
.lm-form-row label {
  display: block; font-size: 0.85rem; font-weight: 700; color: #334155; margin-bottom: 6px;
}
.lm-form-row input, .lm-form-row select, .lm-form-row textarea {
  width: 100%; border: 1px solid #CBD5E1; border-radius: 8px; padding: 10px 14px;
  font-family: inherit; font-size: 0.95rem; color: #0F172A; transition: border-color 0.2s;
}
.lm-form-row input:focus, .lm-form-row select:focus, .lm-form-row textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.lm-submit-btn {
  background: var(--primary); color: #fff; border: none; border-radius: 8px;
  padding: 12px 24px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s;
  width: 100%;
}
.lm-submit-btn:hover { background: var(--gold-d); }
.lm-form-note { margin-top: 12px; font-size: 0.85rem; text-align: center; }

@media (max-width: 768px) {
  .lm-highlight-grid, .lm-contact-grid, .lm-form-rows { grid-template-columns: 1fr; }
  .lm-header { padding: 20px; }
  .lm-body { padding: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   📰 BLOG — DİKSİYON REHBERİ
   ═══════════════════════════════════════════════════════════ */

.blog-header { text-align: center; padding: 40px 20px 32px; }
.blog-header-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--primary);
  font-size: .72rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 16px; border-radius: 99px; margin-bottom: 16px;
}
.blog-header h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; margin-bottom: 12px; }
.blog-header p { font-size: .97rem; color: var(--text-3); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.blog-grid { display: flex; flex-direction: column; gap: 20px; padding: 0 0 24px; }

.blog-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  cursor: pointer; transition: all var(--tr);
  position: relative; overflow: hidden;
}
.blog-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold-d), var(--gold));
  border-radius: 0 4px 4px 0;
  transform: scaleY(0); transition: transform var(--tr);
}
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-m); transform: translateY(-2px); }
.blog-card:hover::before { transform: scaleY(1); }

.bc-emoji {
  font-size: 2rem; flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--gold-l); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gold-m); transition: transform var(--tr);
}
.blog-card:hover .bc-emoji { transform: scale(1.08) rotate(-3deg); }

.bc-body { flex: 1; min-width: 0; }

.bc-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.bc-cat {
  background: var(--primary); color: var(--gold-m);
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 3px 10px; border-radius: 99px;
}
.bc-read, .bc-date { font-size: .75rem; color: var(--text-3); font-weight: 600; }

.bc-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.35; transition: color var(--tr); }
.blog-card:hover .bc-title { color: var(--gold-d); }
.bc-subtitle { font-size: .88rem; color: var(--text-3); line-height: 1.6; margin-bottom: 12px; }

.bc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.bc-tag {
  font-size: .7rem; font-weight: 600; color: var(--text-3);
  background: var(--surface2); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 99px; transition: all var(--tr);
}
.blog-card:hover .bc-tag { border-color: var(--gold-m); color: var(--gold-d); }

.bc-read-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 800; color: var(--gold-d);
  background: var(--gold-l); border: 1.5px solid var(--gold-m);
  padding: 7px 18px; border-radius: 99px; transition: all var(--tr);
}
.blog-card:hover .bc-read-btn { background: var(--gold-d); color: #fff; border-color: var(--gold-d); }

.blog-seo-note {
  display: flex; align-items: center; gap: 10px;
  background: var(--primary-l); border: 1.5px solid #C8D8EF;
  border-radius: var(--r-md); padding: 12px 18px;
  font-size: .82rem; color: var(--text-3); line-height: 1.5;
}
.blog-seo-note strong { color: var(--text-2); }

/* ── Blog Post ─────────────────────────────────────────────── */
.blog-post { max-width: 780px; margin: 0 auto; padding: 8px 0 40px; }

.bp-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--text-3);
  background: var(--surface2); border: 1.5px solid var(--border);
  padding: 8px 16px; border-radius: 99px; margin-bottom: 24px;
  transition: all var(--tr);
}
.bp-back-btn:hover { background: var(--primary-l); color: var(--primary); border-color: var(--primary); }

.bp-hero {
  text-align: center; padding: 36px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #1A2E52 100%);
  border-radius: var(--r-xl); margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.bp-hero::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 140%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 65%);
  pointer-events: none;
}
.bp-emoji { font-size: 3rem; margin-bottom: 14px; display: block; }
.bp-meta-row { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; position: relative; }
.bp-meta-row .bc-cat { background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.4); color: var(--gold-m); }
.bp-meta-row .bc-read, .bp-meta-row .bc-date { color: rgba(255,255,255,.6); }
.bp-title { font-size: clamp(1.25rem,3vw,1.85rem); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 10px; position: relative; }
.bp-subtitle { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 16px; position: relative; }
.bp-hero .bc-tags { justify-content: center; }
.bp-hero .bc-tag { border-color: rgba(201,168,76,.35); color: var(--gold-m); background: rgba(201,168,76,.08); }

.bp-intro {
  font-size: 1.02rem; color: var(--text-2); line-height: 1.8;
  padding: 20px 24px;
  background: linear-gradient(120deg, var(--gold-l), var(--surface2));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: 24px;
}
.bp-intro strong { color: var(--text); }

.bp-toc {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 28px;
}
.bp-toc-title { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 10px; }
.bp-toc-item { font-size: .85rem; color: var(--text-2); padding: 6px 0; border-bottom: 1px dashed var(--border); font-weight: 600; }
.bp-toc-item:last-child { border-bottom: none; }

.bp-content { display: flex; flex-direction: column; gap: 32px; }

.bp-section-heading {
  font-size: 1.18rem; font-weight: 800; color: var(--text);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-m); display: inline-block;
}
.bp-section-content { font-size: .97rem; color: var(--text-2); line-height: 1.8; }
.bp-section-content strong { color: var(--text); font-weight: 700; }
.bp-section-content em { color: var(--gold-d); font-style: italic; }

.blog-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 12px 0; }
.blog-list li {
  font-size: .9rem; color: var(--text-2);
  padding: 9px 14px; background: var(--surface2);
  border: 1.5px solid var(--border); border-radius: 9px;
  line-height: 1.5; transition: border-color var(--tr);
}
.blog-list li:hover { border-color: var(--gold-m); background: var(--gold-l); }

.blog-fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 14px 0; }
.blog-fact-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
  transition: all var(--tr);
}
.blog-fact-card:hover { border-color: var(--gold-m); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.bfc-icon { font-size: 1.4rem; }
.blog-fact-card strong { font-size: .9rem; color: var(--text); font-weight: 700; }
.blog-fact-card p { font-size: .82rem; color: var(--text-3); line-height: 1.5; margin: 0; }

.blog-highlight-box {
  background: linear-gradient(120deg, #FFFBEB, #FEF3C7);
  border: 1.5px solid #FDE68A; border-radius: var(--r-md);
  padding: 14px 18px; font-size: .9rem; color: #78350F;
  line-height: 1.6; margin: 14px 0;
}
.blog-highlight-box strong { color: #92400E; }

.blog-quote {
  position: relative;
  background: var(--primary-l); border-left: 4px solid var(--primary-m);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px 16px 30px;
  font-size: .93rem; color: var(--text-2); line-height: 1.7;
  margin: 14px 0; font-style: italic;
}
.blog-quote::before {
  content: '"'; position: absolute; left: 8px; top: 4px;
  font-size: 2.5rem; color: var(--primary-m); line-height: 1;
  font-style: normal; opacity: .4;
}

.blog-step-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 16px 20px;
  display: flex; gap: 16px; align-items: flex-start;
  margin: 14px 0; transition: border-color var(--tr);
}
.blog-step-card:hover { border-color: var(--gold-m); }
.bsc-num {
  background: var(--primary); color: var(--gold-m);
  font-size: .75rem; font-weight: 800;
  padding: 5px 12px; border-radius: 99px; white-space: nowrap;
  flex-shrink: 0; margin-top: 2px;
}
.bsc-body { font-size: .9rem; color: var(--text-2); line-height: 1.65; }
.bsc-body strong { color: var(--text); }

.bp-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1A2E52 100%);
  border-radius: var(--r-xl); padding: 28px 32px;
  text-align: center; margin: 32px 0 20px;
  position: relative; overflow: hidden;
}
.bp-cta::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 120%; height: 160%;
  background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 65%);
  pointer-events: none;
}
.bp-cta-text { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: 14px; position: relative; }
.bp-cta-btn {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--primary); font-size: .92rem; font-weight: 800;
  padding: 12px 28px; border-radius: 99px; border: none;
  box-shadow: 0 4px 16px rgba(201,168,76,.4); transition: all var(--tr); position: relative;
}
.bp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.55); }

.bp-share {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 0 0; border-top: 1.5px solid var(--border);
  font-size: .85rem; color: var(--text-3);
}
.bp-share-btn {
  background: var(--surface2); border: 1.5px solid var(--border);
  color: var(--text-2); font-size: .82rem; font-weight: 700;
  padding: 7px 16px; border-radius: 99px; transition: all var(--tr);
}
.bp-share-btn:hover { background: var(--primary-l); border-color: var(--primary-m); color: var(--primary); }

@media (max-width: 700px) {
  .blog-card { flex-direction: column; gap: 14px; }
  .bc-emoji { width: 48px; height: 48px; font-size: 1.8rem; }
  .blog-fact-grid { grid-template-columns: 1fr; }
  .bp-hero { padding: 24px 16px; }
  .bp-cta { padding: 22px 18px; }
}

/* ═══════════════════ ARENA RECORDER WIDGET ═════════════ */
.arena-recorder-widget {
  background: linear-gradient(135deg, #06101E 0%, #0A1628 50%, #101E38 100%);
  border: 1.5px solid rgba(201,168,76,.28);
  border-radius: 24px;
  margin-top: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(6,16,30,.5), inset 0 1px 0 rgba(255,255,255,.04);
}
.arw-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px 16px;
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.arw-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.arw-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-m);
  margin-bottom: 3px;
}
.arw-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.48);
  line-height: 1.45;
}
.arw-body {
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Visualizer */
.arw-visualizer {
  height: 68px;
  background: rgba(0,0,0,.38);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.arw-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 50px;
}
.arw-bars span {
  display: block;
  width: 6px;
  height: 5px;
  background: linear-gradient(to top, var(--gold-d), var(--gold));
  border-radius: 99px;
  transition: height .06s ease;
  opacity: .55;
}
.arw-status-text {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  text-align: center;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}
.arw-status-text.arw-recording {
  color: #FCA5A5;
  animation: arwBlink .9s ease infinite;
}
.arw-status-text.arw-ready { color: #86EFAC; }
.arw-status-text.arw-playing { color: var(--gold-m); }
.arw-status-text.arw-error { color: #FCA5A5; }
@keyframes arwBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* Controls row */
.arw-controls-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.arw-timer {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: .06em;
  min-width: 64px;
}
.arw-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.arw-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .18s ease;
  font-family: inherit;
}
.arw-btn-icon { font-size: .9rem; }
.arw-rec-btn {
  background: linear-gradient(135deg, #DC2626, #EF4444);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220,38,38,.35);
}
.arw-rec-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(220,38,38,.55); }
.arw-rec-btn.recording {
  background: linear-gradient(135deg, #7F1D1D, #DC2626);
  animation: arwRecPulse 1.2s ease infinite;
}
@keyframes arwRecPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.6); }
  50%      { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
}
.arw-play-btn {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: #0F1F3D;
  box-shadow: 0 4px 14px rgba(201,168,76,.25);
}
.arw-play-btn:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,168,76,.45); }
.arw-play-btn:disabled { opacity: .35; cursor: not-allowed; }
.arw-del-btn, .arw-dl-btn {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
  border: 1.5px solid rgba(255,255,255,.12) !important;
  border: none;
}
.arw-del-btn:hover:not(:disabled) { background: rgba(239,68,68,.2); color: #FCA5A5; }
.arw-dl-btn:hover:not(:disabled) { background: rgba(74,222,128,.2); color: #86EFAC; }
.arw-del-btn:disabled, .arw-dl-btn:disabled { opacity: .3; cursor: not-allowed; }

/* Playback */
.arw-pb-wrap {
  flex-direction: column;
  gap: 4px;
}
.arw-pb-bg {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  overflow: hidden;
}
.arw-pb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  border-radius: 99px;
  width: 0%;
  transition: width .1s linear;
}
.arw-pb-times {
  display: flex;
  justify-content: space-between;
  font-size: .62rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.arw-note {
  font-size: .72rem;
  color: rgba(255,255,255,.32);
  line-height: 1.45;
  text-align: center;
}

.arw-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
}
.arw-tip {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .arw-controls-row { flex-direction: column; align-items: flex-start; }
  .arw-timer { font-size: 1.3rem; }
  .arw-btns { width: 100%; }
  .arw-tips { grid-template-columns: 1fr; }
  .arw-header { padding: 16px; }
  .arw-body { padding: 14px 16px 18px; }
}


/* SEO Full List Styles */
.tekerleme-full-list { margin-top: 32px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }
.tfl-header { margin-bottom: 20px; text-align: center; }
.tfl-header h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 6px; font-weight: 800; letter-spacing: -0.02em; }
.tfl-header p { font-size: 0.85rem; color: rgba(255,255,255,.5); }
.tfl-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.tfl-card { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06); padding: 16px; border-radius: 12px; cursor: pointer; transition: all .2s ease; }
.tfl-card:hover { background: rgba(255,255,255,.05); border-color: rgba(201,168,76,.3); transform: translateY(-2px); }
.tfl-card.active { background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05)); border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,.1); }
.tfl-num { font-size: 0.75rem; font-weight: 800; color: var(--gold-d); background: rgba(201,168,76,.15); padding: 4px 8px; border-radius: 6px; min-width: 28px; text-align: center; }
.tfl-card p { font-size: 0.95rem; line-height: 1.5; color: rgba(255,255,255,.85); margin: 0; }
.tfl-card.active p { color: #fff; font-weight: 500; }
@media (min-width: 768px) { .tfl-grid { grid-template-columns: repeat(2, 1fr); } }


/* Popular Categories Pills */
.arena-categories { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ac-title { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 12px; letter-spacing: 0.03em; }
.ac-pills { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.ac-pills::-webkit-scrollbar { display: none; }
.ac-pill { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 99px; color: rgba(255,255,255,.8); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all .2s ease; text-decoration: none; }
.ac-pill:hover { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3); color: var(--gold-m); transform: translateY(-1px); }
.ac-pill.active { background: linear-gradient(135deg, var(--gold-d), var(--gold)); border-color: var(--gold); color: var(--primary); font-weight: 800; box-shadow: 0 4px 12px rgba(201,168,76,.3); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   RETORİK SAYFASI — PREMIUM STİLLER
═══════════════════════════════════════════════════════════ */
.retorik-page { animation: fadeIn 0.4s ease forwards; padding-bottom: 80px; }

/* ── HERO ── */
.ret-hero {
  text-align: center;
  padding: 70px 30px 50px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: var(--r-lg);
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ret-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(201,168,76,.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(201,168,76,.08) 0%, transparent 50%);
  animation: retShimmer 8s ease-in-out infinite;
}
@keyframes retShimmer { 0%,100%{transform:rotate(0)} 50%{transform:rotate(3deg)} }
.ret-hero-badge {
  display: inline-block; background: rgba(201,168,76,.2); color: var(--gold);
  padding: 8px 20px; border-radius: 99px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px; border: 1px solid rgba(201,168,76,.3); position: relative;
}
.ret-hero-title {
  font-size: 4rem; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px; position: relative;
}
.ret-hero-tagline { font-size: 1.4rem; color: var(--gold); font-weight: 600; margin-bottom: 20px; position: relative; }
.ret-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 650px; margin: 0 auto 35px; line-height: 1.7; position: relative; }
.ret-hero-stats { display: flex; justify-content: center; gap: 40px; position: relative; }
.ret-stat { text-align: center; }
.ret-stat-n { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); }
.ret-stat-l { font-size: 0.8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── SECTIONS ── */
.ret-section {
  background: var(--surface); border-radius: var(--r-md); padding: 40px;
  border: 1px solid var(--border); margin-bottom: 30px; box-shadow: 0 4px 20px rgba(0,0,0,.03);
}
.ret-section-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.ret-section-icon { font-size: 2rem; }
.ret-section-header h2 { font-size: 1.6rem; font-weight: 800; color: var(--text); margin: 0; }
.ret-section-sub { font-size: 0.9rem; color: var(--text-3); margin: 4px 0 0; }
.ret-section-body p { color: var(--text-2); line-height: 1.8; font-size: 1rem; margin-bottom: 16px; }
.ret-section-body p strong { color: var(--text); }

/* ── QUOTE ── */
.ret-quote {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.03));
  border-left: 4px solid var(--gold-m); padding: 24px 28px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 24px 0 0;
}
.ret-quote p { font-size: 1.15rem; font-style: italic; color: var(--text); margin-bottom: 8px !important; font-weight: 500; }
.ret-quote cite { font-size: 0.85rem; color: var(--gold-d); font-style: normal; font-weight: 600; }

/* ── 3 PILLARS ── */
.ret-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.ret-pillar {
  padding: 32px; border-radius: var(--r-md); border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.ret-pillar::before { content:''; position:absolute; top:0;left:0;right:0; height:4px; }
.ret-pillar-ethos { background: linear-gradient(180deg, rgba(59,130,246,.05), transparent); }
.ret-pillar-ethos::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.ret-pillar-pathos { background: linear-gradient(180deg, rgba(239,68,68,.05), transparent); }
.ret-pillar-pathos::before { background: linear-gradient(90deg, #ef4444, #f87171); }
.ret-pillar-logos { background: linear-gradient(180deg, rgba(16,185,129,.05), transparent); }
.ret-pillar-logos::before { background: linear-gradient(90deg, #10b981, #34d399); }
.ret-pillar:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.ret-pillar-icon { font-size: 2.5rem; margin-bottom: 16px; }
.ret-pillar h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.ret-pillar h3 span { font-weight: 500; color: var(--text-3); font-size: 0.95rem; }
.ret-pillar-q { font-style: italic; color: var(--gold-d); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.ret-pillar p { color: var(--text-2); line-height: 1.7; font-size: 0.95rem; }
.ret-pillar ul { margin-top: 16px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ret-pillar ul li { position: relative; padding-left: 24px; color: var(--text-2); font-size: 0.9rem; }
.ret-pillar ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-d); font-weight: 700; }

/* ── TIMELINE ── */
.ret-timeline { position: relative; padding-left: 32px; }
.ret-timeline::before {
  content:''; position:absolute; left:10px; top:0; bottom:0; width:3px;
  background: linear-gradient(180deg, var(--gold-m), var(--gold-l)); border-radius: 3px;
}
.ret-tl-item { position: relative; margin-bottom: 32px; }
.ret-tl-item:last-child { margin-bottom: 0; }
.ret-tl-dot {
  position: absolute; left: -28px; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gold);
  border: 3px solid var(--surface); box-shadow: 0 0 0 3px rgba(201,168,76,.3);
}
.ret-tl-content h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ret-tl-content p { color: var(--text-2); line-height: 1.7; font-size: 0.95rem; }
.ret-tl-content strong { color: var(--gold-d); }

/* ── 5 CANONS ── */
.ret-canons { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.ret-canon {
  background: var(--bg); padding: 24px; border-radius: var(--r-sm);
  border: 1px solid var(--border); text-align: center; transition: transform 0.3s ease;
}
.ret-canon:hover { transform: translateY(-4px); }
.ret-canon-num {
  display: inline-block; width: 36px; height: 36px; line-height: 36px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold)); color: var(--primary);
  border-radius: 50%; font-weight: 800; font-size: 0.85rem; margin-bottom: 12px;
}
.ret-canon h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; font-style: italic; }
.ret-canon p { font-size: 0.85rem; color: var(--text-3); line-height: 1.5; }

/* ── WHY GRID ── */
.ret-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.ret-why-card {
  background: var(--bg); padding: 28px; border-radius: var(--r-sm);
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.ret-why-card:hover { border-color: var(--gold-m); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.ret-why-icon { font-size: 2rem; margin-bottom: 14px; }
.ret-why-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ret-why-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

/* ── USERS GRID ── */
.ret-users-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.ret-user {
  background: var(--bg); padding: 20px; border-radius: var(--r-sm);
  border: 1px solid var(--border); text-align: center; transition: all 0.3s ease;
}
.ret-user:hover { border-color: var(--gold-m); transform: translateY(-3px); }
.ret-user-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.ret-user strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 4px; }
.ret-user p { font-size: 0.8rem; color: var(--text-3); margin: 0; }

/* ── FAMOUS QUOTES ── */
.ret-quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.ret-famous-quote {
  background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.2); padding: 28px; border-radius: var(--r-sm); text-align: center;
}
.ret-famous-quote p { font-size: 1.1rem; font-style: italic; color: var(--text); font-weight: 500; margin-bottom: 12px; line-height: 1.6; }
.ret-famous-quote cite { font-size: 0.85rem; color: var(--gold-d); font-style: normal; font-weight: 600; }

/* ── CTA ── */
.ret-cta {
  text-align: center; padding: 60px 30px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: var(--r-lg); margin-top: 40px; color: #fff;
}
.ret-cta-icon { font-size: 3rem; margin-bottom: 16px; }
.ret-cta h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; color: var(--gold); }
.ret-cta p { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto 30px; line-height: 1.7; }
.ret-cta-modules { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.ret-cta-mod {
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); padding: 12px 20px; border-radius: 99px; font-weight: 600; font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ret-hero { padding: 40px 20px 30px; }
  .ret-hero-title { font-size: 2.5rem; }
  .ret-hero-stats { gap: 20px; }
  .ret-section { padding: 24px; }
  .ret-pillars { grid-template-columns: 1fr; }
  .ret-canons { grid-template-columns: repeat(2, 1fr); }
  .ret-why-grid { grid-template-columns: 1fr; }
  .ret-users-grid { grid-template-columns: repeat(2, 1fr); }
  .ret-quotes-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════════════
   DİYALEKTİK SAYFASI — YEŞİL TEMA
═══════════════════════════════════════════════════════════ */
.diy-hero {
  text-align: center;
  padding: 70px 30px 50px;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #065f46 100%);
  border-radius: var(--r-lg);
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.diy-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(16,185,129,.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(16,185,129,.08) 0%, transparent 50%);
  animation: retShimmer 8s ease-in-out infinite;
}
.diy-hero-title {
  font-size: 4rem; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #34d399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px; position: relative;
}
.diy-hero-tagline { font-size: 1.4rem; color: #34d399; font-weight: 600; margin-bottom: 20px; position: relative; }
.diy-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 650px; margin: 0 auto 35px; line-height: 1.7; position: relative; }

.diy-pillar {
  padding: 32px; border-radius: var(--r-md); border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(16,185,129,.05), transparent);
}
.diy-pillar::before { content:''; position:absolute; top:0;left:0;right:0; height:4px; background: linear-gradient(90deg, #10b981, #34d399); }
.diy-pillar:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(16,185,129,.08); }
.diy-pillar h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.diy-pillar p { color: var(--text-2); line-height: 1.7; font-size: 0.95rem; }

.diy-quote {
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(16,185,129,.03));
  border-left: 4px solid #10b981; padding: 24px 28px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 24px 0 0;
}
.diy-quote p { font-size: 1.15rem; font-style: italic; color: var(--text); margin-bottom: 8px !important; font-weight: 500; }
.diy-quote cite { font-size: 0.85rem; color: #34d399; font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   ŞİİR SAYFASI — MOR TEMA
═══════════════════════════════════════════════════════════ */
.sir-hero {
  text-align: center;
  padding: 70px 30px 50px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  border-radius: var(--r-lg);
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sir-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(139,92,246,.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(139,92,246,.08) 0%, transparent 50%);
  animation: retShimmer 8s ease-in-out infinite;
}
.sir-hero-title {
  font-size: 4rem; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px; position: relative;
}
.sir-hero-tagline { font-size: 1.4rem; color: #a78bfa; font-weight: 600; margin-bottom: 20px; position: relative; }
.sir-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 650px; margin: 0 auto 35px; line-height: 1.7; position: relative; }

.sir-why-card {
  background: var(--bg); padding: 28px; border-radius: var(--r-sm);
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.sir-why-card:hover { border-color: #8b5cf6; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(139,92,246,.1); }
.sir-why-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sir-why-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

.sir-quote {
  background: linear-gradient(135deg, rgba(139,92,246,.08), rgba(139,92,246,.03));
  border-left: 4px solid #8b5cf6; padding: 24px 28px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 24px 0 0;
}
.sir-quote p { font-size: 1.15rem; font-style: italic; color: var(--text); margin-bottom: 8px !important; font-weight: 500; }
.sir-quote cite { font-size: 0.85rem; color: #a78bfa; font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   SAFSATA SAYFASI — KIRMIZI/TURUNCU TEMA
═══════════════════════════════════════════════════════════ */
.saf-hero {
  text-align: center;
  padding: 70px 30px 50px;
  background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 50%, #991b1b 100%);
  border-radius: var(--r-lg);
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.saf-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(249,115,22,.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
  animation: retShimmer 8s ease-in-out infinite;
}
.saf-hero-title {
  font-size: 4rem; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #fb923c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px; position: relative;
}
.saf-hero-tagline { font-size: 1.4rem; color: #fb923c; font-weight: 600; margin-bottom: 20px; position: relative; }
.saf-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 650px; margin: 0 auto 35px; line-height: 1.7; position: relative; }

.saf-why-card {
  background: var(--bg); padding: 28px; border-radius: var(--r-sm);
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.saf-why-card:hover { border-color: #f97316; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(249,115,22,.1); }
.saf-why-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.saf-why-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

.saf-quote {
  background: linear-gradient(135deg, rgba(249,115,22,.08), rgba(249,115,22,.03));
  border-left: 4px solid #ea580c; padding: 24px 28px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 24px 0 0;
}
.saf-quote p { font-size: 1.15rem; font-style: italic; color: var(--text); margin-bottom: 8px !important; font-weight: 500; }
.saf-quote cite { font-size: 0.85rem; color: #fb923c; font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   DİYALEKTİK ÖZEL UI (SPLIT VIEW)
═══════════════════════════════════════════════════════════ */
.diy-split-section { padding: 40px 0; }
.diy-split-container {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; position: relative; margin-bottom: 40px;
}
@media (max-width: 768px) {
  .diy-split-container { flex-direction: column; }
}
.diy-split-left, .diy-split-right { flex: 1; min-width: 0; }
.diy-split-center {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.diy-vs-circle {
  width: 50px; height: 50px; background: #0f172a; border-radius: 50%;
  color: #fff; font-weight: 800; display: flex; align-items: center;
  justify-content: center; border: 3px solid #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); z-index: 2;
}
.diy-box {
  background: var(--bg); border: 2px solid var(--border); border-radius: var(--r-md);
  padding: 30px; text-align: center; position: relative;
  transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.tez-box { border-color: #34d399; }
.antitez-box { border-color: #ef4444; }
.tez-box:hover { box-shadow: 0 8px 30px rgba(52, 211, 153, 0.15); transform: translateY(-3px); }
.antitez-box:hover { box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15); transform: translateY(-3px); }
.diy-box-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.diy-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.diy-box p { color: var(--text-2); line-height: 1.6; }

.diy-sentez-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff; border-radius: var(--r-md); padding: 40px; text-align: center;
  max-width: 800px; margin: 0 auto; box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
  position: relative;
}
.diy-sentez-box::before {
  content: '⬇'; position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  font-size: 24px; color: #10b981;
}
.diy-sentez-box h3 { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; }
.diy-sentez-box p { color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   ŞİİR ÖZEL UI (MASONRY ELEGANT)
═══════════════════════════════════════════════════════════ */
.sir-masonry-section { padding: 40px 0; }
.sir-masonry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .sir-masonry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sir-masonry-grid { grid-template-columns: 1fr; }
}
.sir-masonry-card {
  background: var(--bg); border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--r-md); padding: 35px 25px; text-align: center;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.05); transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.sir-masonry-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent); opacity: 0; transition: 0.4s;
}
.sir-masonry-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1); }
.sir-masonry-card:hover::after { opacity: 1; }
.sir-card-tall { padding: 50px 25px; background: linear-gradient(180deg, var(--bg), rgba(139, 92, 246, 0.03)); }
.sir-icon { font-size: 3rem; display: inline-block; margin-bottom: 20px; }
.sir-masonry-card h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 15px; }
.sir-masonry-card p { color: var(--text-2); line-height: 1.7; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════
   SAFSATA ÖZEL UI (ACCORDION DETECTIVE)
═══════════════════════════════════════════════════════════ */
.saf-accordion-section { padding: 40px 0; }
.saf-accordion { display: flex; flex-direction: column; gap: 15px; }
.saf-acc-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm);
  overflow: hidden; transition: all 0.3s ease; cursor: pointer;
}
.saf-acc-item:hover { border-color: #ea580c; box-shadow: 0 4px 15px rgba(234, 88, 12, 0.1); }
.saf-acc-item.active { border-color: #ea580c; box-shadow: 0 8px 25px rgba(234, 88, 12, 0.15); }
.saf-acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 25px; background: linear-gradient(90deg, rgba(234, 88, 12, 0.03), transparent);
}
.saf-acc-title { display: flex; align-items: center; gap: 15px; }
.saf-acc-icon { font-size: 1.5rem; }
.saf-acc-title h4 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 0; }
.saf-acc-arrow { font-size: 0.9rem; color: #ea580c; transition: transform 0.3s ease; }
.saf-acc-item.active .saf-acc-arrow { transform: rotate(180deg); }
.saf-acc-body {
  padding: 0 25px; max-height: 0; overflow: hidden; opacity: 0;
  transition: all 0.3s ease;
}
.saf-acc-item.active .saf-acc-body { padding: 0 25px 25px; max-height: 500px; opacity: 1; }
.saf-alert {
  background: rgba(234, 88, 12, 0.08); border-left: 4px solid #ea580c;
  padding: 15px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--text); font-size: 0.95rem; line-height: 1.6;
}
.saf-alert strong { color: #ea580c; }

/* ═══════════════════════════════════════════════════════════
   YENİ MODÜLLER İÇİN YARATICI CSS (Sahne, Beden Dili, vb.)
═══════════════════════════════════════════════════════════ */

/* Sahne Ustalığı - Spotlight Effect */
.module-dark {
  transition: background 0.3s ease;
}
.module-dark:hover .spotlight-bg {
  opacity: 1;
}

/* Nefes Dairesi Animasyonu */
@keyframes breathe {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(59, 130, 246, 0.2); }
  50% { transform: scale(1.5); box-shadow: 0 0 50px rgba(59, 130, 246, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(59, 130, 246, 0.2); }
}

/* Beden Dili - Hover Effect */
.body-part-card:hover {
  transform: translateX(10px);
}

/* Özgüven - Glass Break (Kırık Cam) Efekti */
.glass-break-card.broken .gbc-front {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1) rotate(5deg);
  filter: blur(10px);
}
.glass-break-card.broken .gbc-back {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Manipülasyon - Decoder Effect */
.decoder-card:hover .dc-cover {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

/* Hikayeleştirme - Hover Steps */
.hj-step { transition: transform 0.3s; }
.hj-step:hover { transform: translateY(-10px); }

/* Topbar Nav Scroll Fix */
.topbar-nav { overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; scrollbar-width: none; }
.topbar-nav::-webkit-scrollbar { display: none; }
.header { padding-left: 10px; padding-right: 10px; }
