/* ============================================================
   Kripto Casino Rehberi — site5-turkey
   Tema: koyu kayrak (slate) + turkuaz vurgu, rozet/kontrol-listesi motifi
   Mobil öncelikli, tek CSS, harici bağımlılık yok.
   ============================================================ */

:root {
  --bg: #0b1220;
  --bg-soft: #111a2c;
  --panel: #16213a;
  --panel-2: #1b2845;
  --line: #24344f;
  --text: #dbe4f0;
  --muted: #8da2bc;
  --accent: #2dd4bf;
  --accent-dark: #0d9488;
  --accent-soft: rgba(45, 212, 191, 0.12);
  --warn: #fbbf24;
  --danger: #f87171;
  --radius: 14px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.25; color: #f1f6fc; }
h1 { font-size: 1.85rem; margin-bottom: 0.6em; }
h2 { font-size: 1.4rem; margin: 1.6em 0 0.6em; }
h3 { font-size: 1.12rem; margin: 1.2em 0 0.4em; }
p { margin-bottom: 1em; }
ul, ol { margin: 0 0 1.2em 1.2em; }
li { margin-bottom: 0.45em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }

/* ---------- Üst bar / başlık ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #f1f6fc;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  position: relative;
  flex: 0 0 auto;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 3px solid #06281f;
  border-bottom: 3px solid #06281f;
  transform: rotate(-45deg);
}

/* ---------- Yan çekmece menü (sadece CSS, checkbox yöntemi) ---------- */

.nav-toggle { display: none; }

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  flex: 0 0 auto;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.6);
  z-index: 60;
  cursor: pointer;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82vw, 320px);
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  z-index: 70;
  transform: translateX(102%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  padding: 26px 22px;
}

.drawer .drawer-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 14px;
}

.drawer ul { list-style: none; margin: 0; }
.drawer li { margin: 0; }

.drawer a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
}
.drawer a:hover { background: var(--panel); text-decoration: none; }
.drawer a.active { background: var(--accent-soft); color: var(--accent); }

.drawer .drawer-cta {
  margin-top: 18px;
  text-align: center;
}

.nav-toggle:checked ~ .nav-overlay { display: block; }
.nav-toggle:checked ~ .drawer { transform: translateX(0); }

@media (min-width: 980px) {
  .nav-burger, .nav-overlay { display: none !important; }
  .drawer {
    position: static;
    transform: none;
    width: auto;
    background: none;
    border: 0;
    padding: 0;
    overflow: visible;
  }
  .drawer .drawer-title, .drawer .drawer-cta { display: none; }
  .drawer ul { display: flex; gap: 2px; }
  .drawer a { padding: 8px 11px; font-size: 0.88rem; font-weight: 600; }
}

/* ---------- Düğmeler ---------- */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #04211a;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 11px;
  font-size: 1rem;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 22px rgba(45, 212, 191, 0.25);
}
.btn:hover { text-decoration: none; filter: brightness(1.08); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 11px;
  font-size: 0.97rem;
}
.btn-outline:hover { background: var(--accent-soft); text-decoration: none; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 1.2em 0; }

/* ---------- Rozetler ---------- */

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0.9em 0 1.3em; padding: 0; list-style: none; }
.badge-row li { margin: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.badge::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) translateY(-1px);
  flex: 0 0 auto;
}

.badge-warn { border-color: rgba(251, 191, 36, 0.5); }
.badge-warn::before { border-color: var(--warn); }

/* ---------- Kontrol listeleri (CSS işaretli) ---------- */

.check-list { list-style: none; margin: 0 0 1.3em 0; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 0.7em;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--accent-soft);
  border: 1px solid rgba(45, 212, 191, 0.45);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.cross-list { list-style: none; margin: 0 0 1.3em 0; }
.cross-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 0.7em;
}
.cross-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.4);
}
.cross-list li::after {
  content: "\00d7";
  position: absolute;
  left: 5px;
  top: 1px;
  color: var(--danger);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ---------- Bölümler / kartlar ---------- */

main { display: block; }

.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(700px 320px at 85% -10%, rgba(45, 212, 191, 0.13), transparent),
    radial-gradient(500px 260px at 0% 110%, rgba(13, 148, 136, 0.1), transparent);
  border-bottom: 1px solid var(--line);
}
.hero h1 { font-size: 2rem; max-width: 760px; }
.hero .lead { font-size: 1.08rem; color: var(--muted); max-width: 680px; }

.section { padding: 44px 0 10px; }
.section-tight { padding: 26px 0 6px; }

.kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin-bottom: 8px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}
.card h3 { margin-top: 0; }

.grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin: 1.2em 0; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.grid .card { margin-bottom: 0; }

.verify-box {
  background: var(--panel-2);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 1.4em 0;
}
.verify-box h3 { margin-top: 0; }

.note-box {
  background: rgba(251, 191, 36, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-left: 4px solid var(--warn);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 1.4em 0;
  font-size: 0.95rem;
}

/* ---------- Tablolar ---------- */

.table-wrap { overflow-x: auto; margin: 1.2em 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 480px;
}
th, td {
  text-align: left;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
}
th {
  background: var(--panel);
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
tbody tr:hover { background: rgba(45, 212, 191, 0.04); }

/* ---------- Ortaklık (banner) slotları ---------- */

.aff-slot {
  border: 2px dashed rgba(45, 212, 191, 0.5);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--muted);
  text-align: center;
  padding: 38px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin: 1.4em 0;
}

.aff-slot:has(img) {
  border: none;
  background: transparent;
  padding: 0;
}

.aff-slot a { display: block; line-height: 0; }

.aff-slot img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
}

/* ---------- Sıralı liste / değerlendirme ---------- */

.rank-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}
.rank-card.top {
  border-color: rgba(45, 212, 191, 0.55);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.07), var(--panel));
}
.rank-num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(45, 212, 191, 0.4);
}
.rank-body h3 { margin: 0 0 6px; }
.rank-body p { margin-bottom: 0.7em; color: var(--muted); font-size: 0.95rem; }

/* ---------- Ekmek kırıntısı ---------- */

.breadcrumbs {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 16px 0 0;
}
.breadcrumbs ol { list-style: none; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: var(--line); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }

/* ---------- SSS ---------- */

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 20px;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 20px 18px; color: var(--muted); }

/* ---------- Makale / blog ---------- */

.article-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.4em;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

article.post { max-width: 760px; }

/* ---------- Alt bilgi ---------- */

.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 40px 0 28px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  margin-bottom: 26px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-grid h4 {
  color: #f1f6fc;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer-grid ul { list-style: none; margin: 0; }
.footer-grid li { margin-bottom: 7px; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--accent); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ---------- Yardımcılar ---------- */

.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }


/* ---------- AI / featured snippet summary block ---------- */

.ai-summary {
  background: var(--card, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius, 10px);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.ai-summary h2 { font-size: 1.15rem; margin: 0 0 1rem; }

.ai-qa-item + .ai-qa-item { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line, rgba(255, 255, 255, 0.1)); }

.ai-qa-item h3 { font-size: 1rem; margin: 0 0 0.35rem; font-weight: 600; }

.ai-qa-item p { margin: 0; font-size: 0.95rem; line-height: 1.55; opacity: 0.92; }
