/* ============================================================
   SETRABET — Tasarım Sistemi
   Palet (kullanıcı): #33C06B #171417 #FFFFFF #221E22
                     #BBBBBB #403940 #080043 #888888 #0E0060 #190086
   Dil: iki şeritli header, serif başlık, sol hero, dikey adımlar,
   asimetrik buton, sol alt CTA — Ultrabet/Smartbahis iskeletinden ayrı.
   ============================================================ */

:root {
  --primary: #33c06b;
  --primary-dark: #249a54;
  --primary-light: #4dd882;
  --primary-glow: rgba(51, 192, 107, 0.28);
  --indigo: #190086;
  --indigo-deep: #0e0060;
  --indigo-night: #080043;
  --bg: #171417;
  --surface: #221e22;
  --surface-2: #2c272c;
  --border: #403940;
  --text: #ffffff;
  --muted: #bbbbbb;
  --muted-2: #888888;
  --danger: #e05252;
  --radius: 2px;
  --radius-btn: 0 22px 22px 0;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: Georgia, "Times New Roman", Times, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    repeating-linear-gradient(-32deg, transparent, transparent 18px, rgba(25, 0, 134, 0.07) 18px, rgba(25, 0, 134, 0.07) 19px),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-light); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #062015;
  padding: 10px 18px; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 0; }

.topbar {
  background: var(--primary);
  color: #062015; font-size: 0.82rem; font-weight: 700;
  text-align: left; padding: 9px 22px;
}
.topbar a { color: var(--indigo-night); text-decoration: underline; font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 200; }
.header-brand {
  background: var(--indigo-night);
  border-bottom: 1px solid #190086;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.logo { display: inline-flex; align-items: center; }
.logo svg { height: 36px; width: auto; }

.main-nav {
  background: var(--indigo);
  border-bottom: 3px solid var(--primary);
}
.main-nav ul {
  display: flex; list-style: none; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.main-nav a {
  color: #ddd; font-weight: 600; font-size: 0.9rem;
  padding: 11px 18px; display: block;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: #fff; background: transparent;
  border-bottom-color: var(--primary);
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: 1px solid #403940;
  border-radius: 2px; cursor: pointer; padding: 9px 11px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff;
  margin: 5px 0; transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-block; font-weight: 800; text-align: center;
  border-radius: var(--radius-btn); cursor: pointer; border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 1rem; line-height: 1.3;
}
.btn-primary {
  background: var(--primary);
  color: #062015; padding: 13px 28px;
  box-shadow: 6px 0 0 var(--indigo);
}
.btn-primary:hover { transform: translateX(3px); color: #062015; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); padding: 11px 26px;
  box-shadow: none;
}
.btn-outline:hover { background: var(--indigo); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

.pulse { animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 6px 0 0 var(--indigo), 0 0 0 0 var(--primary-glow); }
  70% { box-shadow: 6px 0 0 var(--indigo), 0 0 0 14px rgba(51, 192, 107, 0); }
  100% { box-shadow: 6px 0 0 var(--indigo), 0 0 0 0 rgba(51, 192, 107, 0); }
}

.hero {
  position: relative; overflow: hidden; text-align: left;
  background:
    linear-gradient(90deg, var(--indigo-night) 0 8px, transparent 8px),
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(25, 0, 134, 0.45), transparent 70%),
    var(--bg);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "title panel"
    "sub panel"
    "actions panel"
    "trust panel";
  gap: 10px 48px;
  align-items: center;
}
.hero h1 { grid-area: title; font-size: clamp(1.9rem, 4.2vw, 2.85rem); line-height: 1.18; margin-bottom: 0; }
.hero h1 .accent { color: var(--primary); font-style: italic; }
.hero .sub {
  grid-area: sub; color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem); max-width: none; margin: 0;
}
.hero-panel { grid-area: panel; margin: 0; }
.hero-actions { grid-area: actions; display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin: 8px 0 0; }
.head-cta { margin-top: 24px; }
.hero-panel {
  text-align: left;
  background: var(--indigo-night);
  border: none; border-left: 6px solid var(--primary);
  border-radius: 0; padding: 28px 26px;
}
.hero-panel .tag {
  display: inline-block; background: transparent; color: var(--primary);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.4px; padding: 0; border-radius: 0; margin-bottom: 10px;
}
.hero-panel .amount { font-family: var(--font-head); font-size: 2.7rem; font-weight: 700; color: #fff; line-height: 1.1; }
.hero-panel .desc { color: var(--muted); font-size: 0.92rem; margin: 10px 0 20px; }
.hero-panel .terms { font-size: 0.75rem; color: var(--muted-2); margin-top: 14px; }
.trust-row {
  grid-area: trust;
  display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 10px 22px;
  color: var(--muted-2); font-size: 0.86rem; font-weight: 600; margin-top: 8px;
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; height: 17px; fill: var(--primary); }

.section { padding: 56px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: left; max-width: 740px; margin: 0 0 36px; }
.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 12px;
}
.section-head h2::before {
  content: ""; display: block; width: 42px; height: 3px;
  background: var(--primary); margin-bottom: 12px;
}
.section-head p { color: var(--muted); }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface-2); border: none;
  border-top: 3px solid var(--primary);
  border-radius: 0; padding: 24px 22px;
}
.card:hover { border-top-color: var(--primary-light); }
.card .icon {
  width: 40px; height: 40px; border-radius: 0;
  background: var(--indigo-night);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card .icon svg { width: 22px; height: 22px; fill: var(--primary); }
.card h3 { font-size: 1.08rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 0.94rem; }

.bonus-card {
  position: relative; overflow: hidden; text-align: left;
  background: var(--surface-2);
  border: none; border-left: 5px solid var(--primary);
  border-radius: 0; padding: 24px 22px 22px;
}
.bonus-card .ribbon {
  position: static; transform: none; display: inline-block;
  background: var(--indigo); color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 3px 10px; margin-bottom: 8px; letter-spacing: 0.8px;
}
.bonus-card .amount { font-family: var(--font-head); font-size: 1.85rem; font-weight: 700; color: #fff; margin: 4px 0 6px; }
.bonus-card .desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.bonus-card .terms { font-size: 0.76rem; color: var(--muted-2); margin-top: 14px; }

.steps {
  counter-reset: step;
  display: flex; flex-direction: column; gap: 0;
  border-left: 2px solid var(--indigo);
  margin-left: 18px;
}
.step {
  background: transparent; border: none; border-radius: 0;
  padding: 8px 0 22px 28px; text-align: left; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: -19px; top: 6px;
  width: 36px; height: 36px; border-radius: 0;
  background: var(--primary); color: #062015; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.48rem; margin: 42px 0 14px; color: #fff; scroll-margin-top: 110px; }
.prose h2::before {
  content: ""; display: block; width: 32px; height: 3px;
  background: var(--primary); margin-bottom: 10px;
}
.prose h3 { font-size: 1.18rem; margin: 30px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--primary); background: var(--indigo-night);
  padding: 14px 20px; border-radius: 0;
  margin: 20px 0; color: var(--muted); font-style: italic;
}
.info-box, .warning-box {
  border-radius: 0; padding: 16px 20px; margin: 22px 0; font-size: 0.95rem;
}
.info-box { background: rgba(51, 192, 107, 0.08); border-left: 4px solid var(--primary); }
.warning-box { background: rgba(25, 0, 134, 0.22); border-left: 4px solid var(--indigo); }

.table-wrap { overflow-x: auto; margin: 22px 0; border-radius: 0; border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; background: var(--surface-2); font-size: 0.94rem; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); }
th { background: var(--primary); color: #062015; font-weight: 700; white-space: nowrap; font-family: var(--font); }
tr:last-child td { border-bottom: none; }

.faq-list { max-width: 780px; margin: 0; display: grid; gap: 0; }
.faq-item {
  background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 48px 16px 0;
  font-weight: 700; position: relative; user-select: none;
  font-family: var(--font-head);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); color: var(--primary); font-size: 1.4rem;
}
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 0 16px; color: var(--muted); font-size: 0.95rem; }

.breadcrumb { padding: 16px 0 0; font-size: 0.85rem; color: var(--muted-2); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--border); }

.page-head { padding: 36px 0 10px; text-align: left; }
.page-head h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 12px; }
.page-head .lead { color: var(--muted); max-width: 700px; margin: 0; font-size: 1.05rem; }
.page-meta {
  display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 8px 22px;
  margin-top: 16px; font-size: 0.85rem; color: var(--muted-2);
}
.page-meta a { font-weight: 700; }

.post-card {
  background: var(--surface-2); border: none; border-top: 3px solid var(--primary);
  border-radius: 0; overflow: hidden; display: flex; flex-direction: column;
}
.post-card:hover { border-top-color: var(--primary-light); }
.post-card .thumb {
  height: 110px; display: flex; align-items: center; justify-content: flex-start;
  padding-left: 22px;
  background: var(--indigo-night);
}
.post-card .thumb svg { width: 42px; height: 42px; fill: var(--primary); }
.post-card .body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { color: var(--primary); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.post-card h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--primary); }
.post-card p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.post-card .meta { margin-top: 16px; font-size: 0.8rem; color: var(--muted-2); display: flex; gap: 14px; }

.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--indigo-night); border: none;
  border-left: 5px solid var(--primary);
  border-radius: 0; padding: 24px; margin: 40px 0 0;
}
.avatar {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 0;
  background: var(--primary);
  color: #062015; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem; font-family: var(--font-head);
}
.avatar-lg { width: 112px; height: 112px; font-size: 2.2rem; }
.author-box .name { font-weight: 800; font-size: 1.05rem; font-family: var(--font-head); }
.author-box .role { color: var(--primary); font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.author-box p { color: var(--muted); font-size: 0.92rem; }

.cta-band {
  background: var(--primary);
  text-align: left; padding: 48px 22px;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; color: #062015; }
.cta-band p { color: #0a3a22; margin-bottom: 26px; max-width: 640px; margin-left: 0; margin-right: auto; }
.cta-band .btn-primary { background: var(--indigo-night); color: #fff; box-shadow: 6px 0 0 #041028; }
.cta-band .btn-primary:hover { color: #fff; }

.site-footer {
  background: var(--indigo-night); border-top: none;
  padding: 44px 0 0; font-size: 0.92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px 34px; padding-bottom: 32px;
}
.footer-about {
  grid-column: 1 / -1; text-align: center;
  border-bottom: 1px solid #190086; padding-bottom: 26px; margin-bottom: 8px;
}
.footer-about .logo { justify-content: center; }
.footer-grid h4 { color: var(--primary); font-size: 0.8rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1.2px; font-family: var(--font); }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--primary); }
.footer-about p { color: var(--muted); margin: 14px auto 18px; max-width: 560px; }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 0;
  border: 2px solid var(--danger); color: var(--danger); font-weight: 800;
}
.footer-badges { display: flex; align-items: center; justify-content: center; gap: 14px; }
.footer-badges .note { color: var(--muted-2); font-size: 0.8rem; max-width: 300px; text-align: left; }
.footer-bottom {
  border-top: 3px solid var(--primary); padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  color: var(--muted-2); font-size: 0.82rem;
}

.floating-cta {
  position: fixed; bottom: 0; left: 0; transform: none;
  z-index: 300; display: none; width: auto; max-width: 92%;
}
.floating-cta .btn {
  width: auto; border-radius: 0 18px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
}

.text-center { text-align: left; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; }
.mb-2 { margin-bottom: 20px; }
.highlight { color: var(--primary); }
.small { font-size: 0.85rem; color: var(--muted-2); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; grid-template-areas: "title" "sub" "panel" "actions" "trust"; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .main-nav {
    position: fixed; inset: 0; z-index: 150;
    background: #080043; display: none; padding: 90px 24px 24px;
    border-bottom: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 6px; justify-content: flex-start; }
  .main-nav a { font-size: 1.15rem; padding: 14px 16px; border-bottom: none; margin: 0; }
  .main-nav a[aria-current="page"] { background: var(--primary); color: #062015; }
  .nav-toggle { display: block; position: relative; z-index: 250; }
  .header-cta .btn { display: none; }
  .floating-cta { display: block; }
  body { padding-bottom: 64px; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 36px; }
  .author-box { flex-direction: column; align-items: flex-start; text-align: left; }
  .topbar { text-align: left; }
}
@media print {
  .site-header, .site-footer, .floating-cta, .topbar, .cta-band { display: none; }
}
