/* ==========================================================================
   Freespin Veren Siteler — Mayıs 2026
   Stil: aydınlık iGaming editöryal portal
   ========================================================================== */

:root {
  /* Açık tema */
  --bg:           #f1f1f0;          /* sayfa zemini, hafif bej-gri */
  --bg-soft:      #e9e7e2;          /* yan panel arka planı */
  --paper:        #ffffff;          /* kartlar / yan blok */
  --hairline:     #d8d4cb;
  --hairline-2:   #c8c2b3;
  --rule:         #1a1a1a;

  --ink:          #0b0b0b;          /* ana metin */
  --ink-dim:      #4a4a4a;          /* ikinci metin */
  --ink-mute:     #767368;          /* yardımcı */
  --ink-soft:     #9c9686;

  --red:          #d92828;          /* marka kırmızısı */
  --red-deep:     #b81f1f;
  --red-soft:     #ffe5e5;

  --green:        #16a14b;          /* OYNA */
  --green-deep:   #0e7d39;

  --black:        #0e0d0a;          /* kart afiş zemini */
  --black-2:      #1a1815;

  /* Typography */
  --display: 'Inter', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --serif:   'Newsreader', Georgia, serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --wrap:   1280px;
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   ÜST BAR (servis menüsü)
   ========================================================================== */
.utility {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.utility__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  font-size: 13px;
}
.utility__nav {
  display: flex;
  gap: 32px;
}
.utility__nav a {
  color: var(--ink);
  font-weight: 500;
  transition: color .15s;
}
.utility__nav a:hover { color: var(--red); }
.utility__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.utility__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
}
.utility__lang::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background:
    linear-gradient(transparent 49%, currentColor 49% 51%, transparent 51%) center/100% 1.5px no-repeat,
    linear-gradient(90deg, transparent 49%, currentColor 49% 51%, transparent 51%) center/1.5px 100% no-repeat;
}
.utility__search {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  background: transparent;
  transition: background .15s, color .15s;
}
.utility__search::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}
.utility__search::after {
  content: '';
  position: absolute;
  right: 4px; bottom: 4px;
  width: 7px; height: 1.5px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: right center;
}
.utility__search:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 720px) {
  .utility__nav { gap: 18px; font-size: 12.5px; }
  .utility__right { gap: 14px; }
  .utility__lang { font-size: 12px; }
}

/* ==========================================================================
   ANA HEADER (logo + menü + OYNA)
   ========================================================================== */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}
.masthead__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.brand img { height: 44px; width: auto; }

.mainnav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.mainnav a {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .15s;
}
.mainnav a:hover { color: var(--red); }
.mainnav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--red);
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background .15s, transform .15s;
  box-shadow:
    0 4px 12px rgba(22,161,75,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-play:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}
.btn-play__arr { font-size: 16px; }

/* Mobil için ana menü gizlemesi (basit) */
@media (max-width: 900px) {
  .mainnav { display: none; }
}
@media (max-width: 480px) {
  .btn-play { padding: 10px 16px; font-size: 12.5px; letter-spacing: 0.08em; }
  .brand img { height: 36px; }
}

/* ==========================================================================
   ANA LAYOUT (içerik + yan kolon)
   ========================================================================== */
.layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 36px 0 80px;
}
@media (max-width: 1080px) {
  .layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.crumbs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
}
.crumbs a:hover { color: var(--red); }
.crumbs__sep {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin: 0 4px;
  color: var(--ink-soft);
}
.crumbs__home::before {
  content: '⌂';
  font-size: 16px;
  line-height: 1;
}

/* ==========================================================================
   HERO (başlık + intro + meta)
   ========================================================================== */
.hero {
  margin-bottom: 36px;
}
.hero__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 18ch;
}

.hero__lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 64ch;
  margin-bottom: 28px;
}
.hero__lede strong,
.hero__lede .b { color: var(--ink); font-weight: 700; }

/* meta satırı: güncelleme + paylaş */
.meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 18px;
}
.meta-tile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-tile__flag {
  width: 12px;
  height: 16px;
  background: var(--red);
  flex-shrink: 0;
}
.meta-tile__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.meta-tile__label {
  font-size: 11.5px;
  color: var(--ink-mute);
  font-weight: 500;
}
.meta-tile__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.factchecked {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.factchecked__label {
  font-size: 10.5px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}
.factchecked__check::after {
  content: '✓✓';
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -3px;
  margin-left: 4px;
}
.factchecked__by {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.factchecked__by-sub {
  display: block;
  font-size: 11.5px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 1px;
}

.share {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--hairline-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.share:hover { background: var(--red); border-color: var(--red); color: #fff; }

@media (max-width: 720px) {
  .factchecked { margin-left: 0; }
}

.editorial-note {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-bottom: 32px;
}
.editorial-note b { color: var(--ink); font-weight: 700; font-style: italic; }
.editorial-note u {
  text-decoration: underline;
  text-decoration-color: var(--ink-mute);
  text-underline-offset: 2px;
}

/* ==========================================================================
   VİTRİN — siyah afiş kartları
   ========================================================================== */
.shelf {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner {
  position: relative;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 170px 1fr 210px;
  gap: 0;
  min-height: 130px;
  align-items: center;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* sıra numarası — sol üst */
.banner__rank {
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  padding: 9px 18px;
  z-index: 3;
  letter-spacing: -0.01em;
}

/* renkli halo — sola yakın, brand'e göre */
.banner__halo {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}
.banner--green .banner__halo { background: #16a14b; }
.banner--red   .banner__halo { background: #b81f1f; }
.banner--purple .banner__halo { background: #6d28b8; }
.banner--orange .banner__halo { background: #d97706; }

/* sol — logo bölgesi */
.banner__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px 20px 28px;
}
.banner__logo img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* expert rating bloğu */
.banner__rating {
  position: relative;
  z-index: 2;
  background: #161513;
  border-radius: 4px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
.banner__rating-label {
  font-size: 11px;
  color: #c5c2bd;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.banner__rating-value {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.02em;
}
.banner__rating-value::after {
  content: '★';
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.banner__rating-tier {
  font-size: 12px;
  color: #c5c2bd;
  font-weight: 600;
}

/* welcome bonus bölgesi */
.banner__bonus {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  color: #fff;
}
.banner__bonus-label {
  font-size: 12px;
  font-weight: 500;
  color: #d4d1cc;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.banner__bonus-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.015em;
}
.banner__bonus-text em {
  font-style: normal;
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 1.12em;
}

/* PLAY NOW butonu */
.banner__cta-wrap {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
}
.banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 18px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 180px;
  transition: background .15s, transform .15s;
  box-shadow:
    0 4px 16px rgba(217,40,40,0.32),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.banner__cta:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

/* alt strip: Est. yılı */
.banner__strip {
  grid-column: 1 / -1;
  background: #060604;
  color: #88847a;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.banner__strip b { color: #d4d1cc; font-weight: 700; margin-left: 4px; }

/* banner: 2 satır grid (içerik + strip) */
.banner {
  grid-template-rows: 1fr auto;
  grid-template-columns: 240px 170px 1fr 210px;
}
.banner__logo,
.banner__rating,
.banner__bonus,
.banner__cta-wrap { grid-row: 1; }
.banner__strip { grid-row: 2; }

/* mobil */
@media (max-width: 980px) {
  .banner {
    grid-template-columns: 220px 170px 1fr;
    grid-template-rows: 1fr auto auto;
  }
  .banner__cta-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 14px 24px 18px;
    justify-content: stretch;
  }
  .banner__cta { width: 100%; }
  .banner__strip { grid-row: 3; }
}
@media (max-width: 640px) {
  .banner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    min-height: 0;
  }
  .banner__rank { font-size: 14px; padding: 7px 14px; }
  .banner__logo {
    padding: 50px 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    grid-row: 1;
  }
  .banner__rating {
    grid-row: 2;
    margin: 18px 24px 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }
  .banner__rating-label { font-size: 12px; }
  .banner__rating-value { font-size: 22px; }
  .banner__bonus {
    grid-row: 3;
    padding: 18px 24px;
  }
  .banner__cta-wrap { grid-row: 4; }
  .banner__strip { grid-row: 5; padding: 8px 24px; }
}

/* ==========================================================================
   YAN PANEL (sağ kolon)
   ========================================================================== */
.aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mission {
  background: var(--bg-soft);
  border-radius: 4px;
  padding: 28px 28px 32px;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 22px 22px;
}
.mission__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 7px 14px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.mission__tag::after {
  content: '◆';
  font-size: 10px;
  opacity: 0.85;
}
.mission__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 22px;
}
.mission__h em {
  font-style: normal;
  color: var(--red);
}
.mission__h .since {
  display: inline-block;
}
.mission__h .since b {
  color: var(--red);
  font-weight: 800;
}

.mission__list { list-style: none; margin-bottom: 24px; }
.mission__list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
}
.mission__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
}
.mission__list li b,
.mission__list li .b { color: var(--red); font-weight: 700; }

.mission__btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.mission__btn:hover { background: var(--ink); color: var(--paper); }

/* en popüler liste */
.popular__head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.popular__head::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 6px;
  background: var(--red);
}
.popular__head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.popular__group { margin-bottom: 22px; }
.popular__group h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.popular__group ul { list-style: none; }
.popular__group li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  transition: color .15s;
}
.popular__group li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 800;
}
.popular__group li:hover { color: var(--red); }

/* mobil için aside içi düzenle */
@media (max-width: 1080px) {
  .aside { flex-direction: row; gap: 24px; flex-wrap: wrap; }
  .mission, .popular { flex: 1 1 320px; }
}

/* ==========================================================================
   REHBER / EDITORIAL prose
   ========================================================================== */
.read {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}

.chapter {
  padding: 32px 0;
}
.chapter + .chapter { border-top: 1px solid var(--hairline); }

.chapter__num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.chapter__num::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--red);
}

.display-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 24ch;
}

.lede {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--ink-dim);
  margin-bottom: 24px;
  max-width: 64ch;
}
.lede strong,
.lede .b { color: var(--ink); font-weight: 700; }

.chapter p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 68ch;
}
.chapter p strong,
.chapter p .b { color: var(--ink); font-weight: 700; }

.chapter h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

/* listeler */
.checklist {
  list-style: none;
  margin: 20px 0 24px;
  max-width: 68ch;
}
.checklist li {
  position: relative;
  padding: 11px 0 11px 32px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--hairline);
}
.checklist li:first-child { border-top: 1px solid var(--hairline); }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
}
.checklist strong,
.checklist .b { color: var(--ink); font-weight: 700; }

.steplist {
  list-style: none;
  counter-reset: stp;
  margin: 22px 0;
  max-width: 68ch;
}
.steplist li {
  counter-increment: stp;
  position: relative;
  padding: 14px 0 14px 48px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--hairline);
}
.steplist li:first-child { border-top: 1px solid var(--hairline); }
.steplist li::before {
  content: counter(stp);
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
}
.steplist strong,
.steplist .b { color: var(--ink); font-weight: 700; }

/* tablo */
.tablebox {
  margin: 24px 0;
  border: 1px solid var(--hairline-2);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.tablebox__scroll { overflow-x: auto; }
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 480px;
}
.tbl thead { background: var(--ink); }
.tbl th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.tbl td {
  padding: 13px 18px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--hairline);
}
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover { background: #faf8f2; }
.tbl td strong,
.tbl td .b { color: var(--ink); font-weight: 700; }

/* uyarı kutusu */
.warn {
  margin: 26px 0;
  padding: 18px 22px;
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.warn strong,
.warn strong, .warn .warn__lbl {
  display: inline-block;
  margin-right: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--red);
}

/* pull quote */
.pullquote {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: 4px;
  left: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 70px;
  line-height: 1;
  color: var(--red);
}
.pullquote p {
  padding-left: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: #fff;
  margin: 0;
  max-width: 100%;
}
.pullquote__by {
  display: block;
  margin-top: 14px;
  padding-left: 36px;
  font-family: var(--display);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d92828;
}

/* formül kutusu */
.formula {
  margin: 24px 0;
  padding: 26px 28px;
  background: var(--paper);
  border: 1px solid var(--hairline-2);
  border-left: 3px solid var(--red);
  border-radius: 2px;
}
.formula__expr {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.formula__ex {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.formula__ex b {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--mono);
  font-size: 13.5px;
  padding: 2px 7px;
  background: #f5f0e6;
  border-radius: 3px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  margin-top: 12px;
  border-top: 1px solid var(--ink);
}
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 48px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  position: relative;
  letter-spacing: -0.01em;
  transition: color .15s;
}
.faq__q:hover { color: var(--red); }
.faq__sign {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  transition: transform .25s, background .15s, color .15s;
  font-weight: 800;
}
.faq__item.is-open .faq__sign {
  transform: translateY(-50%) rotate(45deg);
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
}
.faq__a > div { padding: 0 60px 22px 0; max-width: 64ch; }
.faq__item.is-open .faq__a { max-height: 700px; }

/* ==========================================================================
   SEO TEXT BLOCK (önceden tutulan, son footer öncesi)
   ========================================================================== */
.longread {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}
.longread h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 32px 0 12px;
}
.longread p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  background: var(--ink);
  color: #d4d1cc;
  padding: 48px 0 24px;
  margin-top: 64px;
}
.foot__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.foot__cols h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.foot__cols p {
  font-size: 13.5px;
  color: #aaa6a0;
  line-height: 1.65;
  max-width: 44ch;
}
.foot__cols ul { list-style: none; }
.foot__cols li {
  font-size: 13px;
  color: #aaa6a0;
  line-height: 1.9;
}
.foot__bot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #8a857c;
}
.foot__age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--red);
  color: var(--red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  border-radius: 3px;
}
@media (max-width: 780px) {
  .foot__cols { grid-template-columns: 1fr; gap: 28px; }
}


/* Ana sütun mobil overflow düzeltmesi */
.layout > main { min-width: 0; }
.layout > main * { max-width: 100%; }

/* Mobil için editorial alanı düzeltmeleri */
@media (max-width: 720px) {
  .meta-row { gap: 12px; }
  .meta-tile__label { font-size: 11px; }
  .meta-tile__value { font-size: 13px; }
  .factchecked__label { font-size: 9.5px; }
  .factchecked__by { font-size: 13px; }
  .factchecked__by-sub { font-size: 11px; }
  .editorial-note { font-size: 11.5px; line-height: 1.55; }
  .hero__h { font-size: clamp(28px, 8vw, 38px); }
  .chapter p, .chapter h3 { word-wrap: break-word; }
  .display-h { word-wrap: break-word; }
}

/* Layout grid'in iç içe taşmamasını garantile */
.layout {
  min-width: 0;
}
.layout > * { min-width: 0; }

/* ==========================================================================
   Reveal animasyonu
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ==========================================================================
   Tipografi yardımcı sınıfları (strong/em yerine)
   ========================================================================== */
.b { font-weight: 700; color: var(--ink); }
.i { font-style: italic; }
.em-red { color: var(--red); font-weight: 700; }
.em-light { color: #fff; font-weight: 700; }
.em-ink { color: var(--ink); font-weight: 700; }

/* Long-read içindeki .b kırmızı vurgular için */
.longread .b { color: var(--ink); font-weight: 700; }
.longread .i { font-style: italic; color: var(--ink-dim); }

/* Footer içinde beyaz vurgular */
.foot .b { color: #fff; font-weight: 700; }

/* ==========================================================================
   YENİ SINIFLAR — strong/em yerine kullanılanlar için ek stiller
   ========================================================================== */

/* H1 — tek başlık */
h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 22ch;
}

/* Long-read içindeki h2/h3 (SEO bloğu) */
.longread h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 48px 0 16px;
  max-width: 24ch;
  position: relative;
  padding-top: 24px;
}
.longread h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--red);
}
.longread h2:first-child { margin-top: 0; }

.longread h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}

.longread__lede {
  font-size: clamp(16px, 1.7vw, 19px) !important;
  line-height: 1.55 !important;
  color: var(--ink-dim);
  margin-bottom: 24px !important;
  max-width: 64ch;
}

.longread {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}
.longread p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 68ch;
}

/* mono (eski formula__ex b ile aynı görünüm) */
.mono {
  font-family: var(--mono);
  font-size: 0.9em;
  padding: 2px 7px;
  background: #f5f0e6;
  border-radius: 3px;
  color: var(--ink);
}

/* b-light — koyu kart üzerinde beyaz vurgu (eski <b> stripte) */
.b-light { color: #d4d1cc; font-weight: 700; }

/* warn label */
.warn .warn__lbl {
  display: inline-block;
  margin-right: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--red);
}

/* foot/popular/yan panel başlıkları — h4/h3 yerine div */
.foot__col-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.popular__head-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.popular__group-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.mission__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 22px;
}

/* foot yeşilay paragrafı */
.foot__yesilay { margin-top: 8px; }
.foot__yesilay .b { color: #fff; font-weight: 700; }

/* underline yardımcı (eski <u>) */
.u {
  text-decoration: underline;
  text-decoration-color: var(--ink-mute);
  text-underline-offset: 2px;
}

/* editorial-note özel kombinasyonu için */
.editorial-note .i.b {
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
}
