/* --- PREMIUM DARK MODE CSS — FON MAĞDURLARI --- */
:root {
  --bg: #070b14;
  --bg2: #0c1220;
  --surface: #111827;
  --surface2: #162035;
  --surface-hover: #1c2a45;
  --border: #1e2d47;
  --border-light: #253654;

  --text: #f1f5f9;
  --text-muted: #7a8fac;
  --text-sub: #4d6080;

  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.25);

  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.15);
  --green: #10b981;
  --green-dim: rgba(16, 185, 129, 0.15);
  --yellow: #f59e0b;
  --yellow-dim: rgba(245, 158, 11, 0.15);

  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 3rem;
  /* Subtle grid bg */
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===================== HEADER ===================== */
.header {
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 20, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header .container {
  max-width: 1360px;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.logo {
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  flex: 1;
  margin: 0 0.5rem;
}
.nav-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s, transform 0.15s;
  white-space: nowrap;
}
.nav-menu a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.80rem;
  font-weight: 700;
  background: #0d1a2d;
  color: #e2e8f0;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #23354e;
  white-space: nowrap;
  flex-shrink: 0;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: livePulse 1.6s infinite ease-in-out;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(16, 185, 129, 0.9); }
  50% { opacity: 0.3; box-shadow: 0 0 3px rgba(16, 185, 129, 0.2); }
}
.btn-sm {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.48rem 1.15rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.02em;
}
.btn-header-cta {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.65rem 1.5rem;
  border-radius: 9px;
  border: 1px solid #f87171;
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.45);
  flex-shrink: 0;
  transition: all 0.18s ease-in-out;
  letter-spacing: 0.02em;
}
.btn-header-cta:hover {
  background: linear-gradient(135deg, #f87171, #ef4444);
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.65);
  transform: translateY(-2px);
}

/* ===================== HERO ===================== */
.hero {
  padding: 2.5rem 0 1.5rem;
}
.hero-top-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-hashtag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #60a5fa;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.15s;
}
.hero-hashtag-pill:hover {
  color: #ffffff;
}
.meta-divider {
  color: #334155;
  font-size: 0.8rem;
}
.meta-desc {
  font-size: 0.80rem;
  font-weight: 600;
  color: #94a3b8;
}
.hashtag-pulse {
  width: 7px;
  height: 7px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 8px #60a5fa;
  display: inline-block;
  animation: hashtagPulse 1.8s infinite ease-in-out;
}
@keyframes hashtagPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.75rem;
}
.hero-accent {
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

/* HERO SOSYAL / TOPLULUK ÇUBUĞU */
.hero-social-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.social-bar-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-bar-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease-in-out;
  white-space: nowrap;
}
.tg-chip {
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}
.tg-chip:hover {
  background: rgba(2, 132, 199, 0.3);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}
.x-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #334155;
  color: #e2e8f0;
}
.x-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

/* HERO 3 ANA AKSİYON BUTONLARI */
.hero-action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.hero-btn:hover {
  transform: translateY(-3px);
}
.hero-btn-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.hero-btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.hero-btn-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.3;
}
.hero-btn-text small {
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.85;
}
.hero-btn-arrow {
  font-size: 1.15rem;
  font-weight: 800;
  transition: transform 0.2s;
  opacity: 0.75;
}
.hero-btn:hover .hero-btn-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* 1. Şikayet Sihirbazı Butonu - Mavi Gradyan */
.hero-btn-wizard {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(15, 23, 42, 0.85));
  border: 1.5px solid rgba(59, 130, 246, 0.45);
}
.hero-btn-wizard:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}
.hero-btn-wizard .hero-btn-text strong {
  color: #bfdbfe;
}
.hero-btn-wizard .hero-btn-text small {
  color: #93c5fd;
}
.hero-btn-wizard .hero-btn-arrow {
  color: #60a5fa;
}

/* 2. Virman İptali (21.8 Milyar TL) Butonu - Kırmızı/Turuncu Vurgu */
.hero-btn-virman {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.22), rgba(15, 23, 42, 0.85));
  border: 1.5px solid rgba(239, 68, 68, 0.45);
}
.hero-btn-virman:hover {
  border-color: #ef4444;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}
.hero-btn-virman .hero-btn-text strong {
  color: #fecaca;
}
.hero-btn-virman .hero-btn-text small {
  color: #fca5a5;
}
.hero-btn-virman .hero-btn-arrow {
  color: #f87171;
}

/* 3. Meclis & Milletvekili Butonu - Mor/Lacivert Vurgu */
.hero-btn-tbmm {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.22), rgba(15, 23, 42, 0.85));
  border: 1.5px solid rgba(168, 85, 247, 0.45);
}
.hero-btn-tbmm:hover {
  border-color: #a855f7;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.35);
}
.hero-btn-tbmm .hero-btn-text strong {
  color: #e9d5ff;
}
.hero-btn-tbmm .hero-btn-text small {
  color: #d8b4fe;
}
.hero-btn-tbmm .hero-btn-arrow {
  color: #c084fc;
}

/* SİHİRBAZ ADIM GÖSTERGESİ */
.tool-head-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.steps-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
}
.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.80rem;
  font-weight: 700;
  color: #94a3b8;
}
.step-chip.active {
  color: #60a5fa;
}
.step-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1e3a5f;
  color: #60a5fa;
  font-size: 0.72rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-chip.active .step-num {
  background: #2563eb;
  color: #ffffff;
}
.step-sep {
  color: #475569;
  font-size: 0.8rem;
  font-weight: 800;
}

/* MAĞDUR SAYACI */
.victim-counter-wrap {
  margin-bottom: 1.75rem;
}
.victim-counter {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0f1a2e, #162035);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 4px 30px rgba(239, 68, 68, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}
.counter-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.counter-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.counter-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}
.counter-number {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  transition: all 0.3s;
}
.counter-plus {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
}
.btn-victim {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  white-space: nowrap;
}
.btn-victim:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(220, 38, 38, 0.55);
}
.btn-victim:active { transform: translateY(0); }
.victim-btn-icon { font-size: 1.1rem; }
.victim-note {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-top: 0.5rem;
}

/* HERO CTAs */
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-size: 0.90rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-lg {
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
}
.btn-primary {
  background: #2563eb;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
}
.btn-red {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
}
.btn-red:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(220, 38, 38, 0.5);
}
.btn-x {
  background: #000;
  color: #ffffff !important;
  border: 1px solid #444;
  font-weight: 800;
}
.btn-x:hover {
  background: #111;
  border-color: #666;
  transform: translateY(-1px);
}
.btn-outline {
  background: #131d2e;
  color: #e2e8f0 !important;
  border: 1px solid #2e4468;
  font-weight: 700;
}
.btn-outline:hover {
  background: #1e2e47;
  color: #ffffff !important;
  border-color: #3b82f6;
  transform: translateY(-1px);
}

/* ===================== SON GELİŞMELER ===================== */
.news-section {
  margin-bottom: 2.5rem;
}
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.news-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
}
.news-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.news-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  border-left-width: 3px;
  transition: border-color 0.15s;
}
.news-item:hover { border-color: var(--primary-glow); }
.news-red { border-left-color: var(--red); }
.news-yellow { border-left-color: var(--yellow); }
.news-green { border-left-color: var(--green); }
.news-blue { border-left-color: var(--primary); }
.news-date {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-sub);
  white-space: nowrap;
  min-width: 130px;
  padding-top: 0.1rem;
  font-family: var(--mono);
}
.news-content {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.news-content strong { color: #fff; }

/* ÇELİŞKİ / YALANLAMA KUTUSU */
.statement-conflict-box {
  background: linear-gradient(135deg, #0d1627 0%, #151d30 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 25px rgba(239, 68, 68, 0.12);
  position: relative;
  overflow: hidden;
}
.statement-conflict-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}
.conflict-head {
  margin-bottom: 1.25rem;
}
.conflict-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.conflict-head p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.conflict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.conflict-card {
  background: #090e1a;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.takasbank-card {
  border-top: 3px solid var(--green);
}
.midas-card {
  border-top: 3px solid var(--red);
}
.conflict-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.source-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
}
.source-time {
  font-size: 0.7rem;
  color: var(--text-sub);
  font-family: var(--mono);
}
.conflict-card blockquote {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1rem;
  font-style: normal;
}
.conflict-card blockquote strong {
  color: #fff;
}
.card-verdict {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  line-height: 1.4;
}
.verdict-green {
  background: var(--green-dim);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.verdict-red {
  background: var(--red-dim);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.conflict-footer {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed #2e4468;
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: #e2e8f0;
  line-height: 1.6;
}
.conflict-footer strong {
  color: #fbbf24;
}

/* ===================== SİHİRBAZ ===================== */
.tool-section {
  background: linear-gradient(135deg, #0f1a2e 0%, #111827 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.tool-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.tool-section-head {
  margin-bottom: 1.5rem;
}
.tool-section-head h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.tool-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.selector-wrap {
  margin-bottom: 1.25rem;
}
.hidden-step { display: none !important; }
.fade-in-step { animation: stepAppear 0.3s ease forwards; }
@keyframes stepAppear {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.selector-wrap label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  background: #111e33;
  border: 1px solid #273b5a;
  color: #f1f5f9;
  font-family: var(--font);
  font-size: 0.90rem;
  font-weight: 700;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s ease-in-out;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.pill:hover {
  background: #1d3356;
  color: #ffffff;
  border-color: #4b72aa;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.pill.active {
  background: #2563eb;
  border-color: #60a5fa;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.6);
}
.pill-desc {
  display: block;
  font-size: 0.72rem;
  font-weight: normal;
  color: #94a3b8;
  margin-top: 0.25rem;
  opacity: 0.9;
}
.pill.active .pill-desc {
  color: #dbeafe;
}

/* Çıktı Kartı */
.result-card {
  background: rgba(9, 14, 24, 0.8);
  border: 1px solid #1e3352;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-top: 1.25rem;
}
.res-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.res-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-weight: 700;
}
.res-tag.red { background: var(--red-dim); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.res-tag.green { background: var(--green-dim); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.res-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.res-list {
  list-style: none;
  margin-bottom: 1.25rem;
}
.res-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  color: #e2e8f0;
}
.res-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.res-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb;
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid #3b82f6;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.18s;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.res-btn:hover {
  background: #1d4ed8;
  border-color: #60a5fa;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
}

/* ===================== MKK KUTUSU ===================== */
.mkk-check-box {
  background: #09101f;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.mkk-check-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}
.mkk-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.mkk-check-box > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.mkk-codes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.code-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.code-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.code-pblk { border-left: 3px solid var(--green); }
.code-pblk .code-badge { background: var(--green-dim); color: #34d399; }
.code-serb { border-left: 3px solid var(--red); }
.code-serb .code-badge { background: var(--red-dim); color: #f87171; }
.code-log { border-left: 3px solid var(--yellow); }
.code-log .code-badge { background: var(--yellow-dim); color: #fbbf24; }
.code-card p { font-size: 0.84rem; color: #94a3b8; line-height: 1.5; }
.mkk-action {
  font-size: 0.85rem;
  background: #080c14;
  border: 1px dashed #2d4060;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  color: #e2e8f0;
  line-height: 1.6;
}

/* ===================== TABLO ===================== */
.section-block { margin-bottom: 2.5rem; }
.section-block h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; }
.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
  background: var(--surface);
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.86rem;
}
th {
  background: #0a1020;
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #131d30;
  color: #cbd5e1;
}
tr:last-child td { border-bottom: none; }
.tag {
  font-size: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  font-family: var(--mono);
}
.tag-red { background: var(--red-dim); color: #f87171; border: 1px solid rgba(239,68,68,0.15); }
.tag-green { background: var(--green-dim); color: #34d399; border: 1px solid rgba(16,185,129,0.15); }

/* ===================== FON DETAY KARTLARI ===================== */
.fund-detail-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 0.85rem;
  transition: border-color 0.15s;
}
.fund-detail-box:hover { border-color: var(--border-light); }
.fund-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #131d30;
  padding-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fund-detail-head h3 { font-size: 0.98rem; font-weight: 700; color: #fff; }
.fund-detail-body p { font-size: 0.86rem; color: #94a3b8; margin-bottom: 0.5rem; line-height: 1.6; }
.fund-detail-body p:last-child { margin-bottom: 0; }
.fund-detail-body strong { color: #e2e8f0; }
.fund-detail-body u { text-decoration-color: var(--primary); }

/* ===================== ŞABLONLAR ===================== */
.template-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.active-selection-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}
.active-selection-badge strong { color: #38bdf8; }
.template-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: border-color 0.15s;
}
.template-box:hover { border-color: var(--border-light); }
.template-box-highlight {
  border: 1px solid rgba(239, 68, 68, 0.45);
  background: linear-gradient(135deg, #111422 0%, #171120 100%);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.12);
}
.template-box-highlight:hover {
  border-color: rgba(239, 68, 68, 0.75);
}
.template-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}
.template-to {
  font-size: 0.72rem;
  color: var(--primary);
  font-family: var(--mono);
  display: block;
  margin-bottom: 0.2rem;
}
.template-top h3 { font-size: 0.95rem; font-weight: 700; }
.btn-copy {
  background: #1e3a5f;
  border: 1px solid #3b82f6;
  color: #ffffff !important;
  font-family: var(--font);
  padding: 0.5rem 1rem;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.btn-copy:hover {
  background: #2563eb;
  border-color: #60a5fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
pre {
  background: #060a12;
  border: 1px solid #16243b;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: #94a3b8;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 260px;
  overflow-y: auto;
  line-height: 1.6;
}

/* ===================== ACCORDION ===================== */
.expandable-guides { display: flex; flex-direction: column; gap: 0.75rem; }
.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.guide-card:hover { border-color: var(--border-light); }
.guide-card.open {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.guide-header {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.guide-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.guide-sub { font-size: 0.76rem; color: var(--text-muted); }
.guide-icon {
  font-size: 0.7rem;
  color: var(--primary);
  transition: transform 0.25s;
}
.guide-card.open .guide-icon { transform: rotate(180deg); }
.guide-body {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
}
.guide-card.open .guide-body { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.guide-steps { padding-left: 1.25rem; margin-bottom: 1rem; }
.guide-steps li { font-size: 0.86rem; color: #94a3b8; margin-bottom: 0.5rem; line-height: 1.5; }
.guide-steps strong { color: #fff; }
.guide-action {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}
.guide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.94rem;
  font-weight: 800;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #ffffff !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.guide-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}
.guide-btn-cimer,
.guide-btn-spk,
.guide-btn-tspb,
.guide-btn-midas {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 1px solid #3b82f6;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}
.guide-btn-cimer:hover,
.guide-btn-spk:hover,
.guide-btn-tspb:hover,
.guide-btn-midas:hover {
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
}

/* ===================== KAMPANYA ===================== */
.campaign-section {
  background: linear-gradient(135deg, #090f1e 0%, #0f172a 50%, #0a0f1e 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.campaign-section::after {
  content: '𝕏';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
}
.campaign-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}
.campaign-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.campaign-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.tweet-preview {
  background: #060a12;
  border: 1px solid #1c2d45;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  text-align: left;
}
.tweet-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sub);
  margin-bottom: 0.35rem;
}
.tweet-text {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
  font-family: var(--mono);
}
.campaign-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 200px;
}
.btn-campaign {
  width: 100%;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
}

/* ===================== FOOTER ===================== */
.footer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 700;
}
.footer-links a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-links span {
  color: var(--text-sub);
}

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #10b981;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===================== MOBİL ===================== */
@media (max-width: 960px) {
  .nav-menu { gap: 1rem; }
  .nav-menu a { font-size: 0.78rem; }
}

@media (max-width: 800px) {
  .nav-menu { display: none; }
  .campaign-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .campaign-actions { flex-direction: row; flex-wrap: wrap; }
  .btn-campaign { width: auto; flex: 1; min-width: 140px; }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }

  /* Header */
  .header { padding: 0.55rem 0; }
  .nav-wrap { gap: 0.5rem; }
  .logo { font-size: 0.88rem; }
  .live-tag {
    font-size: 0.68rem;
    padding: 0.28rem 0.55rem;
    display: none;
  }
  .btn-header-cta { padding: 0.38rem 0.75rem; font-size: 0.74rem; }

  /* Hero */
  .hero { padding: 1.75rem 0 1.5rem; }
  .hero h1 { font-size: 1.9rem; }
  .subtitle { font-size: 0.9rem; }
  .hero-social-bar { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .tool-head-top { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .steps-indicator { width: 100%; flex-wrap: wrap; gap: 0.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-lg { width: 100%; }

  /* Sayaç */
  .victim-counter {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: 0.85rem;
  }
  .btn-victim { width: 100%; justify-content: center; }
  .counter-number { font-size: 2rem; }

  /* News & Conflict */
  .conflict-grid { grid-template-columns: 1fr; }
  .news-item { flex-direction: column; gap: 0.3rem; }
  .news-date { min-width: unset; }

  /* Sihirbaz */
  .tool-section { padding: 1.25rem 1rem; }
  .tool-section-head h2 { font-size: 1.1rem; }
  .pill { flex-grow: 1; text-align: left; font-size: 0.82rem; padding: 0.5rem 0.75rem; }
  .result-card { padding: 1rem; }
  .res-title { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  /* MKK */
  .mkk-check-box { padding: 1.1rem 1rem; }
  .mkk-codes { grid-template-columns: 1fr; }

  /* Tablo */
  table { font-size: 0.78rem; }
  th, td { padding: 0.65rem 0.75rem; }

  /* Şablonlar */
  .template-section-header { flex-direction: column; align-items: flex-start; }
  .active-selection-badge { font-size: 0.72rem; width: 100%; }
  .template-top { flex-direction: column; }
  .btn-copy { width: 100%; text-align: center; }

  /* Accordion */
  .guide-header { padding: 0.85rem 1rem; }
  .guide-title { font-size: 0.86rem; }
  .guide-body { padding: 0.85rem 1rem 1rem; }

  /* Kampanya */
  .campaign-section { padding: 1.25rem 1rem; }
  .campaign-actions { flex-direction: column; }
  .btn-campaign { width: 100%; }

  /* Toast */
  .toast { left: 1rem; right: 1rem; bottom: 1rem; text-align: center; }

  /* TBMM Chunks Grid Mobile */
  .tbmm-chunks-grid { grid-template-columns: 1fr; }
}

/* ===================== TBMM & MECLİS BASKISI STYLES ===================== */
.meclis-section {
  border-top: 1px solid rgba(239, 68, 68, 0.2);
  padding-top: 2.5rem;
}
.meclis-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.meclis-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.gergerlioglu-card {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(15, 23, 42, 0.85));
  border: 1.5px solid rgba(239, 68, 68, 0.45);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.15);
}
.gergerlioglu-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fca5a5;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.gergerlioglu-card p {
  color: #e2e8f0;
  font-size: 0.90rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.tbmm-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.tbmm-box-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.85rem;
}
.tbmm-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.tbmm-box-head h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
}
.tbmm-info-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  background: rgba(30, 41, 59, 0.6);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid #3b82f6;
}
.tbmm-chunks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem;
}
.tbmm-chunk-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.2s ease;
}
.tbmm-chunk-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(30, 41, 59, 0.7);
  transform: translateY(-2px);
}
.tbmm-chunk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tbmm-chunk-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
}
.tbmm-chunk-count {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}
.tbmm-chunk-actions {
  display: flex;
  gap: 0.5rem;
}
.btn-chunk {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.45rem 0.5rem;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-chunk-copy {
  background: #1e293b;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-chunk-copy:hover {
  background: #334155;
  color: #ffffff;
}
.btn-chunk-mail {
  background: #2563eb;
  color: #ffffff;
}
.btn-chunk-mail:hover {
  background: #1d4ed8;
}

/* ==========================================================================
   YENİ EKLENEN: TBMM E-DİLEKÇE (D28-41322) & SPK MADDE 6 KANIT STİLLERİ
   ========================================================================== */

/* Hero E-Dilekçe Butonu - Sitenin Mor/Lacivert Meclis Teması */
.hero-btn-edilekce {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.22), rgba(15, 23, 42, 0.9));
  border: 1.5px solid rgba(99, 102, 241, 0.45);
}
.hero-btn-edilekce:hover {
  border-color: #6366f1;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
}
.hero-btn-edilekce .hero-btn-text strong {
  color: #c7d2fe;
}
.hero-btn-edilekce .hero-btn-text small {
  color: #a5b4fc;
}
.hero-btn-edilekce .hero-btn-arrow {
  color: #818cf8;
}

/* TBMM E-Dilekçe Kartı - Şık Koyu Lacivert & Mavi Vurgulu */
.tbmm-edilekce-card {
  background: linear-gradient(180deg, #111827 0%, #0b1120 100%);
  border: 1.5px solid rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.edilekce-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}
.edilekce-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}
.edilekce-pulse {
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
  animation: livePulse 1.6s infinite ease-in-out;
}
.edilekce-code-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #090e17;
  border: 1px solid #334155;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}
.edilekce-code-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}
.edilekce-code-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.05em;
}
.btn-copy-code {
  background: #1e293b;
  border: 1px solid #475569;
  color: #e2e8f0;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-copy-code:hover {
  background: #334155;
  color: #fff;
}
.edilekce-content h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.edilekce-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.edilekce-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.edilekce-step {
  display: flex;
  gap: 0.85rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: var(--radius);
}
.edilekce-step .step-badge {
  width: 28px;
  height: 28px;
  background: #3b82f6;
  color: #ffffff;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.edilekce-step strong {
  display: block;
  font-size: 0.88rem;
  color: #f1f5f9;
  margin-bottom: 0.2rem;
}
.edilekce-step p {
  font-size: 0.80rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}
.code-inline {
  background: #020617;
  color: #38bdf8;
  font-family: 'JetBrains Mono', monospace;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-weight: 700;
}
.edilekce-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.btn-edilekce-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 800;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}
.btn-edilekce-primary:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  color: #ffffff;
}

/* SPK Madde 6 ve Hukuki Kanıt Bölümü */
.legal-proof-section {
  background: #090f1d;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  margin-bottom: 3rem;
}
.proof-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  margin-bottom: 0.75rem;
}
.spk-quote-box {
  background: linear-gradient(180deg, #111e38 0%, #0a1122 100%);
  border: 2px solid #3b82f6;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 1.5rem 0 2rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.spk-quote-badge {
  font-size: 0.82rem;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}
.spk-quote-text {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.65;
  color: #f8fafc;
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  border-left: 4px solid #facc15;
}
.spk-quote-text strong {
  color: #facc15;
}
.spk-quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  color: #cbd5e1;
}
.btn-pdf-link {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.80rem;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-pdf-link:hover {
  background: #2563eb;
  color: #fff;
}

/* Kriz İstatistikleri Grid */
.crisis-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.metric-card {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.metric-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.metric-label {
  font-size: 0.82rem;
  color: #e2e8f0;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.metric-source {
  font-size: 0.70rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.metric-card-alert {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
}
.metric-card-alert .metric-num {
  color: #ef4444;
}

/* Kurumların Çatışması (VS) */
.institutions-clash-box {
  background: #0b1324;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.clash-head h3 {
  font-size: 1.15rem;
  color: #f1f5f9;
  margin-bottom: 0.4rem;
}
.clash-head p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}
.clash-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .clash-cards {
    grid-template-columns: 1fr;
  }
  .clash-vs {
    margin: 0 auto;
  }
}
.clash-side {
  background: #0f172a;
  border: 1px solid #23354e;
  border-radius: 8px;
  padding: 1.1rem;
}
.clash-side p {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}
.side-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.side-broker .side-tag {
  color: #f87171;
}
.side-tefas .side-tag {
  color: #38bdf8;
}
.clash-vs {
  font-size: 1.4rem;
  font-weight: 900;
  color: #f59e0b;
  background: #1e293b;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #334155;
}
.clash-verdict {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 1.25rem;
}
.clash-verdict h4 {
  font-size: 0.95rem;
  color: #93c5fd;
  margin-bottom: 0.75rem;
}
.clash-verdict ul {
  margin: 0;
  padding-left: 1.25rem;
}
.clash-verdict li {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.clash-verdict li:last-child {
  margin-bottom: 0;
}
