:root {
  --bg: #080d16;
  --bg-soft: #0d1422;
  --panel: #111a2b;
  --panel-2: #162033;
  --text: #f8fafc;
  --muted: #aeb9cc;
  --soft: #d8deea;
  --gold: #f3c969;
  --gold-2: #ffe6a3;
  --green: #2ed47a;
  --line: rgba(255, 255, 255, .11);
  --shadow: 0 22px 70px rgba(0, 0, 0, .34);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(243, 201, 105, .10), transparent 34rem),
    linear-gradient(180deg, #080d16 0%, #0d1422 45%, #080d16 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.skip-link { position: absolute; left: 16px; top: -52px; z-index: 30; padding: 10px 14px; border-radius: 8px; background: var(--gold); color: #10131a; font-weight: 800; }
.skip-link:focus { top: 16px; }

.topbar {
  padding: 8px 16px;
  background: #0a0f18;
  color: #f3dfac;
  border-bottom: 1px solid rgba(243, 201, 105, .22);
  font-size: 13px;
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 13, 22, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav,
.hero-inner,
.section,
.footer,
.page-hero,
.content-page {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #10131a;
  box-shadow: 0 10px 24px rgba(243, 201, 105, .18);
  font-size: 13px;
}
.brand span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 201, 105, .35);
  border-radius: 8px;
  background: rgba(243, 201, 105, .08);
  color: var(--text);
  font-weight: 850;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8,13,22,.98), rgba(13,20,34,.94)),
    radial-gradient(circle at 78% 32%, rgba(46,212,122,.16), transparent 24rem);
}
.hero-inner {
  min-height: 620px;
  padding: 82px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  align-items: center;
  gap: 48px;
}
.hero-copy { max-width: 720px; }
.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.13;
  letter-spacing: 0;
}
h3 { margin: 0 0 8px; color: var(--text); font-size: 21px; line-height: 1.25; }
.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 18px;
}
.actions,
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
}
.btn-primary {
  color: #10131a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 34px rgba(243, 201, 105, .18);
}
.btn-secondary {
  color: var(--text);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.trust-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22,32,51,.96), rgba(17,26,43,.96));
  box-shadow: var(--shadow);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(243, 201, 105, .16);
  pointer-events: none;
}
.hero-panel .panel-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-panel strong {
  display: block;
  color: var(--text);
  font-size: 30px;
  line-height: 1.15;
}
.hero-panel > span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}
.mini-list { display: grid; gap: 10px; margin-top: 22px; }
.mini-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}
.mini-list b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(243,201,105,.14);
  color: var(--gold);
}

.section { padding-block: 72px; }
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head p,
.muted,
.content-page p,
.content-page li { color: var(--muted); }
.answer-box {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22,32,51,.92), rgba(17,26,43,.9));
  box-shadow: var(--shadow);
}
.answer-box p { margin: 0; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.casino-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22,32,51,.96), rgba(17,26,43,.96));
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
}
.casino-card.featured {
  border-color: rgba(243,201,105,.42);
  background: linear-gradient(180deg, rgba(40,34,24,.98), rgba(17,26,43,.96));
}
.rank {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(243,201,105,.12);
  border: 1px solid rgba(243,201,105,.22);
  color: var(--gold);
  font-size: 21px;
  font-weight: 950;
}
.label {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.casino-card p:not(.label) { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.casino-card ul { margin: 0; padding-left: 17px; color: var(--muted); font-size: 14px; }
.review-link { display: inline-flex; margin-top: 10px; color: var(--gold); font-size: 14px; font-weight: 850; text-decoration: none; }
.score {
  margin-top: auto;
  min-height: 58px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.score strong { display: block; color: var(--gold); font-size: 25px; line-height: 1; }
.score span { display: block; color: var(--muted); font-size: 11px; }
.casino-card > .btn { width: 100%; }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.info-card,
.faq details,
.step,
.checklist label {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17,26,43,.88);
}
.info-card { padding: 20px; }
.info-card p { margin-bottom: 0; color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: rgba(17,26,43,.72); -webkit-overflow-scrolling: touch; }
table { width: 100%; min-width: 820px; border-collapse: collapse; }
th, td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--gold); background: rgba(255,255,255,.05); }
td { color: var(--muted); }

.two-col { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 30px; align-items: start; }
.checklist { display: grid; gap: 12px; }
.checklist label { display: flex; gap: 12px; align-items: center; padding: 14px; color: var(--muted); }
input[type="checkbox"] { flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--gold); }
.steps { counter-reset: step; display: grid; gap: 12px; }
.step { counter-increment: step; position: relative; padding: 18px 18px 18px 60px; }
.step::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--gold);
  color: #10131a;
  font-weight: 950;
}
.step p { margin: 0; color: var(--muted); }
.faq details { padding: 16px 18px; margin-bottom: 12px; }
.faq summary { cursor: pointer; color: var(--text); font-weight: 900; }
.faq p { color: var(--muted); }
.notice {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 72px;
  padding: 26px;
  border: 1px solid rgba(217,74,93,.28);
  border-radius: 18px;
  background: rgba(217,74,93,.08);
}
.notice strong { color: #ffb0bb; }
.footer {
  padding: 30px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer strong { color: var(--text); }
.footer p { margin: 6px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.page-hero { padding: 68px 0 30px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); }
.content-page { max-width: 920px; padding: 20px 0 72px; }
.content-page section { margin-top: 38px; }

@media (max-width: 1120px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino-card.featured { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-inner { min-height: auto; padding: 58px 0; grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .answer-box, .two-col { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .topbar { font-size: 12px; line-height: 1.45; }
  .nav,
  .hero-inner,
  .section,
  .footer,
  .page-hero,
  .content-page,
  .notice { width: min(100% - 28px, 1160px); }
  .nav { min-height: 64px; flex-wrap: wrap; gap: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(17,26,43,.98);
  }
  .nav-links.open { display: grid; }
  .nav-links a { width: 100%; background: rgba(255,255,255,.04); }
  .hero-inner { padding: 44px 0 48px; }
  h1 { font-size: clamp(31px, 8.4vw, 40px); line-height: 1.1; }
  h2 { font-size: clamp(25px, 7vw, 34px); }
  h3 { font-size: 20px; }
  .lead { font-size: 16px; }
  .actions { align-items: stretch; }
  .actions .btn { width: 100%; }
  .trust-pills { gap: 8px; }
  .trust-pills span { width: 100%; border-radius: 10px; }
  .hero-panel { display: none; }
  .section { padding-block: 50px; }
  .answer-box { padding: 20px; }
  .cards { grid-template-columns: 1fr; }
  .casino-card.featured { grid-column: auto; }
  .grid { grid-template-columns: 1fr; }
  .table-wrap { border: 0; overflow: visible; background: transparent; }
  table, thead, tbody, tr, th, td { display: block; min-width: 0; width: 100%; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  tr { margin-bottom: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(17,26,43,.88); overflow: hidden; }
  td { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 10px; padding: 12px 14px; }
  td::before { color: var(--gold); font-weight: 900; }
  td:nth-child(1)::before { content: "Site"; }
  td:nth-child(2)::before { content: "Konum"; }
  td:nth-child(3)::before { content: "Güçlü taraf"; }
  td:nth-child(4)::before { content: "Uygun"; }
  td:nth-child(5)::before { content: "Kontrol"; }
  .footer { flex-direction: column; }
}

@media (max-width: 390px) {
  .nav,
  .hero-inner,
  .section,
  .footer,
  .page-hero,
  .content-page,
  .notice { width: min(100% - 22px, 1160px); }
  .brand span:last-child { max-width: 160px; }
  td { grid-template-columns: 1fr; gap: 4px; }
}
