/* =========================================================
   Casibom Index — 2026 modern CSS
   - Design tokens, dark-first, fluid typography
   - Zero-CLS, system fallback, prefers-reduced-motion
   ========================================================= */

:root {
  /* Casibom official brand: flat yellow on dark grey */
  --bg: #1a1a1a;            /* slightly grey black, ekran görüntüsüyle aynı */
  --bg-2: #202020;
  --surface: #242424;
  --surface-2: #2d2d2d;
  --border: rgba(251,191,0,.18);
  --border-soft: rgba(255,255,255,.08);
  --text: #ffffff;
  --muted: #b0b0b0;
  --primary: #fbbf00;        /* Casibom sarısı - flat */
  --primary-2: #f5b800;      /* hover için bir tık koyu */
  --primary-ink: #111111;    /* buton üzerinde metin */
  --accent: #fbbf00;         /* flat sarı, gradient YOK */
  --accent-hot: #fbbf00;
  --success: #22c55e;
  --danger: #ff3d00;
  --shadow-lg: 0 24px 60px -20px rgba(0,0,0,.75);
  --shadow-glow: 0 0 0 1px rgba(251,191,0,.25), 0 12px 30px -10px rgba(251,191,0,.45);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --display: 'Manrope', var(--font);
}

/* Light scheme kapalı — Casibom saf siyah/sarı kimliği her zaman dark */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg); /* flat casibom dark-grey, parıltısız */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

h1,h2,h3,h4 { font-family: var(--display); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 em, .accent { color: var(--primary); font-style: normal; background: none; -webkit-background-clip: initial; background-clip: initial; }
h1 { font-size: clamp(2rem, 3.4vw + 1rem, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2.25rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--muted); }
strong, b { color: var(--text); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #000; padding: 10px 14px; border-radius: 0 0 8px 0; font-weight: 700; z-index: 9999; }
.skip-link:focus { left: 0; }

.accent { color: var(--primary); }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: .75rem; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: var(--primary-ink); box-shadow: var(--shadow-glow); }
.btn--primary:hover { color: var(--primary-ink); background: var(--primary-2); }
.btn--hot { background: var(--primary); color: var(--primary-ink); box-shadow: var(--shadow-glow); }
.btn--hot:hover { color: var(--primary-ink); background: var(--primary-2); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--primary-ink); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--text); }
.btn--block { width: 100%; }
.btn--xl { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 8px 14px; font-size: .85rem; }

/* ========= HEADER ========= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(20,20,20,.88);
  border-bottom: 2px solid var(--primary);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; padding: 14px 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.brand__text { color: var(--primary); }
.brand__text b { color: #fff; font-weight: 800; }
.site-nav { margin-left: auto; }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; }
.site-nav__list a { color: var(--muted); font-weight: 500; font-size: .95rem; }
.site-nav__list a:hover { color: var(--text); }
.site-header__cta { display: flex; gap: 10px; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-header__cta .btn--ghost { display: none; }
}

/* ========= BREADCRUMBS ========= */
.breadcrumbs { padding: 14px 20px 0; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "›"; margin-right: 8px; opacity: .5; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ========= HERO ========= */
.hero { padding: 56px 0 40px; position: relative; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--primary); }
.hero__grid { display: grid; gap: 40px; grid-template-columns: 1.2fr .9fr; align-items: center; }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } }
.hero .lede { font-size: 1.1rem; max-width: 55ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.trust-row { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 14px 22px; color: var(--muted); font-size: .9rem; }
.trust-row li { display: inline-flex; align-items: center; gap: 6px; }

/* Ratecard */
.ratecard {
  background: var(--surface);
  border: 1px solid var(--primary); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-lg);
}
.ratecard__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.stars { color: var(--primary); letter-spacing: 2px; font-size: 1.1rem; }
.score { font-family: var(--display); font-weight: 800; font-size: 1.5rem; }
.score small { color: var(--muted); font-weight: 600; }
.ratecard__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin: 0 0 18px; }
.ratecard__grid dt { color: var(--muted); font-size: .82rem; }
.ratecard__grid dd { margin: 0 0 8px; font-weight: 700; }
.ratecard__foot { margin: 10px 0 0; font-size: .8rem; color: var(--muted); text-align: center; }

/* ========= SECTION HEAD ========= */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 36px; }

/* ========= FEATURES ========= */
.features { padding: 60px 0; }
.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 22px; border-radius: var(--radius); transition: transform .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--primary) 35%, var(--border)); }
.card__icon { font-size: 1.6rem; margin-bottom: 8px; }

/* ========= BONUSES ========= */
.bonuses { padding: 60px 0; background: var(--bg-2); }
.bonus-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.bonus {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: transform .25s var(--ease);
}
.bonus:hover { transform: translateY(-3px); }
.bonus--hot { border-color: var(--primary); background: var(--surface); box-shadow: var(--shadow-glow); }
.badge { display: inline-block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.08); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; color: var(--muted); }
.badge--hot { background: var(--primary); color: var(--primary-ink); font-weight: 800; }
.bonus__meta { list-style: none; padding: 0; margin: 14px 0 16px; display: grid; gap: 6px; font-size: .9rem; color: var(--muted); }

/* ========= GAMES ========= */
.games { padding: 60px 0; }
.games-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.game {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; text-align: center; transition: transform .25s var(--ease), border-color .25s;
}
.game:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--primary) 40%, var(--border)); }
.game__art {
  aspect-ratio: 4/3; border-radius: 12px; margin-bottom: 12px;
  background: radial-gradient(circle at 30% 30%, #ff9eb0, #7a39ff 70%);
}
.game__art[data-art="sweet"]{ background: radial-gradient(circle at 30% 30%,#ff9eb0,#7a39ff 70%); }
.game__art[data-art="crazy"]{ background: radial-gradient(circle at 30% 30%,#ffcb3b,#ff5e62 70%); }
.game__art[data-art="gates"]{ background: radial-gradient(circle at 30% 30%,#6be7ff,#3056ff 70%); }
.game__art[data-art="blackjack"]{ background: radial-gradient(circle at 30% 30%,#11c279,#064e2d 70%); }
.game__art[data-art="aviator"]{ background: radial-gradient(circle at 30% 30%,#ff7a00,#b31010 70%); }
.game__art[data-art="mega"]{ background: radial-gradient(circle at 30% 30%,#ffe26b,#a16bff 70%); }

/* ========= PAYMENTS ========= */
.payments { padding: 60px 0; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.payments-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.payments-table th, .payments-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.payments-table thead th { background: var(--surface-2); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.payments-table tbody tr:last-child th, .payments-table tbody tr:last-child td { border-bottom: 0; }
.payments-table tbody tr:hover { background: color-mix(in oklab, var(--primary) 5%, transparent); }

/* ========= HOWTO ========= */
.howto { padding: 60px 0; }
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.steps li { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.steps__n {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--primary-ink); font-weight: 800;
}

/* ========= MOBILE SECTION ========= */
.mobile { padding: 60px 0; }
.mobile__grid { display: grid; gap: 40px; grid-template-columns: 1.1fr .9fr; align-items: center; }
@media (max-width: 960px) { .mobile__grid { grid-template-columns: 1fr; } }
.checklist { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 8px; }
.checklist li::before { content: "✓"; color: var(--success); font-weight: 800; margin-right: 8px; }

.mobile__phone { display: flex; justify-content: center; }
.phone {
  width: 260px; aspect-ratio: 9/19; border-radius: 36px; padding: 10px;
  background: #000;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), inset 0 0 0 1px rgba(251,191,0,.25);
  position: relative;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 26px; position: relative; overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(251,191,0,.2);
}
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 90px; height: 18px; background: #000; border-radius: 12px; }
.phone__content { padding: 60px 22px 24px; display: grid; gap: 10px; text-align: center; }
.phone__content strong { font-size: 1.2rem; color: var(--primary); }
.phone__content small { color: var(--muted); }
.phone__btn { margin-top: 16px; padding: 12px; border-radius: 12px; background: var(--primary); color: var(--primary-ink); font-weight: 800; font-size: .9rem; }

/* ========= TRUST ========= */
.trust { padding: 60px 0; }
.trust-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 32px; }
.trust-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.trust-card strong { display: block; margin-bottom: 4px; }
.author {
  display: flex; gap: 16px; align-items: center; padding: 20px; border: 1px solid var(--border);
  background: var(--surface); border-radius: var(--radius);
}
.author__avatar {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--primary-ink); font-weight: 800;
}
.author p { margin: 4px 0 0; }

/* ========= FAQ ========= */
.faq { padding: 60px 0; }
.faq-list { display: grid; gap: 10px; max-width: 860px; margin: 0 auto; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; transition: border-color .2s;
}
.faq-list details[open] { border-color: color-mix(in oklab, var(--primary) 40%, var(--border)); }
.faq-list summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-list summary::after { content: "+"; font-size: 1.4rem; color: var(--muted); transition: transform .2s; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: 10px; }

/* ========= CTA STRIP ========= */
.cta-strip { padding: 50px 0; }
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--primary); color: var(--primary-ink);
  border-radius: var(--radius); padding: 28px;
}
.cta-strip__inner h2, .cta-strip__inner p { color: var(--primary-ink); margin: 0; }
.cta-strip__inner .accent { color: #000 !important; -webkit-text-fill-color: #000 !important; border-bottom: 3px solid #000; }
.cta-strip__inner .btn--primary { background: #111; color: var(--primary); }
.cta-strip__inner .btn--primary:hover { background: #000; color: var(--primary); }
.cta-strip h2 { margin: 0; }

/* ========= FOOTER ========= */
.site-footer { padding: 50px 0 20px; border-top: 1px solid var(--border); margin-top: 40px; background: rgba(0,0,0,.15); }
.site-footer__grid { display: grid; gap: 28px; grid-template-columns: 2fr 1fr 1fr 1fr; }
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
.site-footer nav strong { display: block; margin-bottom: 10px; }
.site-footer nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer nav a { color: var(--muted); }
.site-footer nav a:hover { color: var(--text); }
.license { font-size: .82rem; color: var(--muted); }
.social { display: flex !important; gap: 10px !important; grid-auto-flow: column; }
.social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
}
.social a:hover { background: var(--primary); color: var(--primary-ink); }
.site-footer__bottom { margin-top: 30px; color: var(--muted); font-size: .85rem; }

/* ========= STATS ========= */
.stats { padding: 40px 0; }
.stats-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); text-align: center; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 14px; }
.stat__n { font-family: var(--display); font-size: clamp(1.6rem,2vw + 1rem,2.4rem); font-weight: 800; color: var(--primary); }
.stat__l { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* ========= SPORTS ========= */
.sports { padding: 60px 0; }
.sports-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); }
.sport {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 12px; text-align: center; transition: transform .2s var(--ease), border-color .2s;
}
.sport:hover { transform: translateY(-3px); border-color: var(--primary); }
.sport__icon { font-size: 2rem; }
.sport strong { font-size: 1rem; }
.sport small { color: var(--muted); font-size: .8rem; }

/* ========= LIVE CASINO ========= */
.livecasino { padding: 60px 0; background: var(--bg-2); }
.live-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.live-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; display: flex; gap: 14px; align-items: flex-start;
}
.live-card__dot {
  width: 10px; height: 10px; border-radius: 50%; background: #ff3d00; margin-top: 8px;
  box-shadow: 0 0 0 0 rgba(255,61,0,.6); animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,61,0,.6)} 70%{box-shadow:0 0 0 10px rgba(255,61,0,0)} 100%{box-shadow:0 0 0 0 rgba(255,61,0,0)} }
.live-card h3 { margin-bottom: 4px; }
.live-card small { color: var(--muted); }

/* ========= PROVIDERS ========= */
.providers { padding: 60px 0; }
.providers-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.provider {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 12px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); font-family: var(--display); font-weight: 800;
  font-size: .95rem; color: var(--text); text-align: center;
  transition: border-color .2s, transform .2s var(--ease), background .2s;
}
.provider:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); background: var(--surface-2); }

/* ========= VIP TIERS ========= */
.vip { padding: 60px 0; }
.vip-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); }
.tier {
  position: relative; padding: 22px 18px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); text-align: center;
}
/* Tüm VIP tier'lar aynı yüzey, görsel fark sadece sarı vurgu + ikonla */
.tier[data-tier="gold"] { border: 2px solid var(--primary); box-shadow: var(--shadow-glow); }
.tier[data-tier="gold"]::after { content: "★"; position: absolute; top: -10px; right: -10px; width: 28px; height: 28px; background: var(--primary); color: var(--primary-ink); border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.tier h3 { font-family: var(--display); letter-spacing: .05em; text-transform: uppercase; }
.tier ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 6px; color: var(--muted); font-size: .88rem; }
.tier ul li::before { content: "◆ "; color: var(--primary); }

/* ========= PROMOTIONS ========= */
.promos { padding: 60px 0; }
.promo-list { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.promo {
  position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 20px 20px 92px; min-height: 110px;
}
.promo::before {
  content: attr(data-day); position: absolute; left: 14px; top: 14px; bottom: 14px; width: 64px;
  display: flex; align-items: center; justify-content: center; border-radius: 10px;
  background: var(--primary); color: var(--primary-ink); font-weight: 800; font-family: var(--display);
  font-size: .82rem; text-align: center; line-height: 1.1; padding: 6px;
}
.promo h3 { margin-bottom: 4px; }
.promo p { margin: 0; }

/* ========= COMPARISON ========= */
.compare { padding: 60px 0; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; background: var(--surface-2); }
.compare-table tbody th { font-weight: 600; color: var(--text); }
.compare-table .col-us { background: rgba(255,214,0,.08); border-left: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.compare-table .col-us.head { color: var(--primary); font-weight: 800; }
.yes { color: var(--success); font-weight: 800; }
.no { color: var(--danger); font-weight: 800; }

/* ========= TESTIMONIALS ========= */
.testimonials { padding: 60px 0; background: var(--bg-2); }
.quote-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.quote {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
  position: relative;
}
.quote::before { content: "\201C"; font-family: var(--display); font-size: 4rem; line-height: 1; color: var(--primary); opacity: .4; position: absolute; top: -12px; left: 14px; }
.quote blockquote { margin: 0 0 14px; color: var(--text); font-style: italic; }
.quote__author { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--muted); }
.quote__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--primary-ink); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.quote .stars { font-size: .95rem; }

/* ========= GLOSSARY ========= */
.glossary { padding: 60px 0; }
.glossary-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.glossary dt { font-weight: 800; color: var(--primary); margin-top: 6px; }
.glossary dd { margin: 2px 0 10px; color: var(--muted); font-size: .92rem; }

/* ========= NEWSLETTER ========= */
.newsletter { padding: 50px 0; }
.newsletter__box {
  background: var(--surface);
  border: 2px solid var(--primary); border-radius: var(--radius); padding: 28px; text-align: center;
}
.newsletter form { display: flex; gap: 10px; max-width: 520px; margin: 16px auto 6px; flex-wrap: wrap; justify-content: center; }
.newsletter input[type="email"] {
  flex: 1 1 240px; padding: 13px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font: inherit;
}
.newsletter input:focus { outline: 2px solid var(--primary); outline-offset: 2px; border-color: var(--primary); }
.newsletter small { color: var(--muted); display: block; margin-top: 8px; }

/* ========= YELLOW STRIP (like casibom.org) ========= */
.yellow-strip {
  background: var(--primary); color: var(--primary-ink);
  padding: 18px 0; font-weight: 700; text-align: center;
  font-size: clamp(.95rem, .5vw + .8rem, 1.1rem);
}
.yellow-strip .container { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.yellow-strip a.btn {
  background: #111; color: var(--primary); padding: 10px 20px;
  border-radius: 999px; font-weight: 800;
}
.yellow-strip a.btn:hover { background: #000; color: var(--primary); }

/* ========= DOMAIN SATILIK BANNER ========= */
.sale-banner {
  background: linear-gradient(90deg, #fbbf00 0%, #ffd84a 50%, #fbbf00 100%);
  color: #111;
  border-bottom: 3px solid #111;
  padding: 10px 0;
  font-weight: 700;
  position: relative;
  z-index: 100;
  animation: salePulse 3s ease-in-out infinite;
}
@keyframes salePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(251,191,0,0); }
  50% { box-shadow: 0 0 20px rgba(251,191,0,.6); }
}
.sale-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: clamp(.85rem, .5vw + .75rem, 1rem);
}
.sale-banner__tag {
  background: #111;
  color: #fbbf00;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
}
.sale-banner__text {
  color: #111;
  font-weight: 600;
}
.sale-banner__link {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .2s ease;
  white-space: nowrap;
}
.sale-banner__link:hover {
  background: #111;
  color: #fbbf00;
  text-decoration-color: #fbbf00;
}
@media (max-width: 640px) {
  .sale-banner__inner { gap: 8px; }
  .sale-banner__link { font-size: .85rem; }
}

/* ========= PRINT ========= */
@media print {
  .site-header, .cta-strip, .hero__cta, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; color: #555; }
}

/* ========= DOMAIN SATILIK BANNER ========= */
.sale-banner {
  background: linear-gradient(90deg, #fbbf00 0%, #ffd84a 50%, #fbbf00 100%);
  color: #111;
  border-bottom: 3px solid #111;
  padding: 12px 0;
  font-weight: 700;
  position: relative;
  z-index: 100;
}
.sale-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: clamp(.85rem, .5vw + .75rem, 1rem);
}
.sale-banner__tag {
  background: #111;
  color: #fbbf00;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
}
.sale-banner__text { color: #111; font-weight: 600; }
.sale-banner__link {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .2s ease;
  white-space: nowrap;
}
.sale-banner__link:hover {
  background: #111;
  color: #fbbf00;
  text-decoration-color: #fbbf00;
}
@media (max-width: 640px) {
  .sale-banner__inner { gap: 8px; }
  .sale-banner__link { font-size: .85rem; padding: 3px 6px; }
  .sale-banner__tag { font-size: .8rem; padding: 4px 10px; }
}