/* ============================================================
   CSS CUSTOM PROPERTIES — Brand Palette
   ============================================================ */
:root {
  --hero-hover:   rgb(78, 15, 152);
  --hero-sc:      rgb(232, 232, 232);
  --hero:         rgb(55, 11, 106);
  --brand-hover:  rgb(33, 140, 46);
  --brand-sc:     rgb(0, 0, 0);
  --brand:        rgb(41, 168, 57);
  --secondary-hover: #d4a90c;
  --secondary-sc:    rgb(0, 0, 0);
  --secondary:    #f1c40f;

  --bg-dark:      rgb(232, 232, 232);
  --bg-mid:       rgb(206, 206, 206);
  --bg-card:      rgb(232, 232, 232);
  --bg-card2:     rgb(206, 206, 206);
  --text-main:    #2a2a2a;
  --text-muted:   #666666;
  --text-soft:    #555555;
  --border:       rgba(41,168,57,0.18);
  --border2:      rgba(241,196,15,0.18);
  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 8px 40px rgba(55,11,106,0.45);
  --shadow-brand: 0 4px 24px rgba(41,168,57,0.25);
  --transition:   0.25s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-hover); }
ul { list-style: none; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-mid); }
.section--dark { background: var(--bg-dark); }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.tag--brand { background: rgba(41,168,57,0.12); color: var(--brand); border: 1px solid rgba(41,168,57,0.25); }
.tag--secondary { background: rgba(241,196,15,0.12); color: var(--secondary); border: 1px solid rgba(241,196,15,0.25); }
.tag--hero { background: rgba(78,15,152,0.25); color: #c9a6ff; border: 1px solid rgba(78,15,152,0.35); }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--brand);
  color: var(--brand-sc);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--brand-hover); color: #fff; transform: translateY(-2px); }
.btn--secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn--secondary:hover { background: var(--secondary); color: var(--secondary-sc); transform: translateY(-2px); }
.btn--hero {
  background: var(--hero);
  color: var(--hero-sc);
}
.btn--hero:hover { background: var(--hero-hover); transform: translateY(-2px); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card--teal {
  background: var(--bg-card2);
  border-color: var(--border2);
}
.highlight { color: var(--brand); }
.highlight--teal { color: var(--secondary); }
.highlight--purple { color: #c9a6ff; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-purple { background: rgba(78,15,152,0.35); }
.glow-green  { background: rgba(41,168,57,0.18); }
.glow-teal   { background: rgba(241,196,15,0.18); }
.bg-glow--hero-purple { width: 600px; height: 600px; top: -200px; left: -150px; }
.bg-glow--hero-teal { width: 400px; height: 400px; bottom: -100px; right: -100px; }
.bg-glow--hero-green { width: 250px; height: 250px; top: 80px; right: 180px; }
.bg-glow--cta-purple { width: 500px; height: 500px; top: -100px; left: -200px; }
.bg-glow--cta-teal { width: 400px; height: 400px; bottom: -150px; right: -100px; }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  background: linear-gradient(90deg, var(--hero), var(--hero-hover));
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hero-sc);
  letter-spacing: 0.02em;
}
.top-banner a { color: var(--brand); font-weight: 800; }
.top-banner a:hover { color: var(--brand-hover); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(232,232,232,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.nav-logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-main);
}
.nav-logo span { color: var(--brand); }
.nav-logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; vertical-align: middle; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--brand); background: rgba(41,168,57,0.08); }
.nav-cta { display: flex; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: rgb(206, 206, 206);
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--brand); background: rgba(41,168,57,0.1); }
.mobile-nav .btn { text-align: center; justify-content: center; margin-top: 8px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(160deg, rgb(232, 232, 232) 0%, rgb(206, 206, 206) 50%, rgb(232, 232, 232) 100%);
}
.hero .bg-glow:nth-child(1) { width: 600px; height: 600px; top: -200px; left: -150px; }
.hero .bg-glow:nth-child(2) { width: 400px; height: 400px; bottom: -100px; right: -100px; }
.hero .bg-glow:nth-child(3) { width: 300px; height: 300px; top: 50px; right: 200px; }
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,168,57,0.1);
  border: 1px solid rgba(41,168,57,0.3);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: "●"; font-size: 0.5rem; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-desc {
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item { }
.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
/* Hero right: feature cards */
.hero-cards { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateX(6px); border-color: rgba(41,168,57,0.35); }
.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.icon-green { background: rgba(41,168,57,0.15); }
.icon-teal  { background: rgba(241,196,15,0.15); }
.icon-purple{ background: rgba(78,15,152,0.3); }
.hero-card-text strong { display: block; font-size: 0.95rem; color: var(--text-main); margin-bottom: 3px; }
.hero-card-text span   { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   GIRIS SECTION
   ============================================================ */
.giris-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.giris-steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--secondary));
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.step-body span { font-size: 0.88rem; color: var(--text-muted); }
.access-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.access-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.access-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.65; }
.access-url {
  display: block;
  background: rgba(41,168,57,0.08);
  border: 1.5px dashed rgba(41,168,57,0.4);
  border-radius: 10px;
  padding: 14px 20px;
  font-family: monospace;
  font-size: 1.05rem;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
a.access-url:hover {
  background: rgba(41,168,57,0.15);
  border-color: rgba(41,168,57,0.6);
}
.device-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.device-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ============================================================
   BONUSLAR
   ============================================================ */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 12px 50px rgba(41,168,57,0.2); }
.bonus-header {
  padding: 24px;
  background: linear-gradient(135deg, var(--hero), var(--hero-hover));
  text-align: center;
  position: relative;
}
.bonus-pct {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.bonus-title { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-top: 6px; }
.bonus-max {
  display: inline-block;
  background: rgba(41,168,57,0.15);
  border: 1px solid rgba(41,168,57,0.3);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 8px;
}
.bonus-body { padding: 24px; }
.bonus-body ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.bonus-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-soft);
}
.bonus-body li::before { content: "✓"; color: var(--brand); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.bonus-card-wide {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ramadan-badge {
  display: inline-block;
  background: linear-gradient(90deg, #c87c2a, #e5a040);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

/* ============================================================
   SPOR / CASINO TABS
   ============================================================ */
.tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.sports-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.sport-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.sport-item:hover {
  border-color: var(--brand);
  background: rgba(41,168,57,0.06);
  transform: translateY(-3px);
}
.sport-item .emoji { font-size: 1.8rem; margin-bottom: 8px; }
.sport-item .name { font-size: 0.82rem; font-weight: 600; color: var(--text-soft); }
.casino-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.casino-feat {
  background: var(--bg-card2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cf-icon { font-size: 2rem; flex-shrink: 0; }
.cf-title { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.cf-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SLOT SECTION
   ============================================================ */
.slot-providers { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.provider-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--transition);
}
.provider-chip:hover { border-color: var(--secondary); color: var(--secondary); background: rgba(241,196,15,0.08); }
.provider-chip::before { content: "◆"; font-size: 0.4rem; color: var(--secondary); }
.slot-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.slot-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.slot-cat:hover { border-color: var(--secondary); transform: translateY(-4px); }
.slot-cat .big-icon { font-size: 2.4rem; margin-bottom: 10px; }
.slot-cat h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.slot-cat p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   PROMO STRIP
   ============================================================ */
.promo-strip {
  background: linear-gradient(90deg, var(--hero) 0%, rgb(206, 206, 206) 40%, rgb(232, 232, 232) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316c72e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.promo-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.promo-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.promo-inner p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.promo-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.promo-tag {
  background: rgba(41,168,57,0.1);
  border: 1px solid rgba(41,168,57,0.25);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ============================================================
   GUVENLIK / OZELLIKLER
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.feat-card:hover { border-color: rgba(78,15,152,0.5); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(78,15,152,0.2); }
.feat-icon { font-size: 2rem; margin-bottom: 14px; }
.feat-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.feat-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   OYUN SAGLAYICILARI
   ============================================================ */
.providers-list { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.prov-badge {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
  transition: all var(--transition);
}
.prov-badge:hover { border-color: var(--secondary); color: var(--secondary); background: rgba(241,196,15,0.08); }

/* ============================================================
   ODEME YONTEMLERI
   ============================================================ */
.payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pay-card {
  background: var(--bg-card2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.pay-card:hover { border-color: var(--secondary); transform: scale(1.02); }
.pay-icon { font-size: 2rem; margin-bottom: 8px; }
.pay-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.pay-min  { font-size: 0.76rem; color: var(--text-muted); }
.pay-speed {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 7px;
  background: rgba(41,168,57,0.12);
  color: var(--brand);
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(41,168,57,0.35); }
.faq-question {
  width: 100%;
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 0.97rem;
  font-weight: 700;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(41,168,57,0.05); }
.faq-question .chevron {
  font-size: 0.85rem;
  transition: transform var(--transition);
  color: var(--brand);
  flex-shrink: 0;
}
.faq-question.open .chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 18px 24px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  background: rgba(41,168,57,0.03);
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ============================================================
   TESTIMONIALS / TRUST SIGNALS
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item {
  text-align: center;
  padding: 28px 20px;
}
.trust-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label { font-size: 0.85rem; color: var(--text-muted); }
.divider-v { width: 1px; background: var(--border); align-self: stretch; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--hero) 0%, rgb(206, 206, 206) 50%, rgb(232, 232, 232) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.cta-final p { color: var(--text-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: rgb(206, 206, 206);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--brand); }
.footer-logo { display: inline-block; margin-bottom: 12px; }
.footer-logo img { display: block; height: 40px; width: auto; }
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 18px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 0.88rem; color: var(--text-soft); }
.footer-col li a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--brand); }
.disclaimer {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,80,80,0.12);
  border: 1.5px solid rgba(255,80,80,0.3);
  color: #ff6060;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.contact-line a { color: var(--secondary); }
.contact-line a:hover { color: var(--secondary-hover); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(41,168,57,0.4);
  transition: background var(--transition), transform var(--transition);
}
#scrollTop:hover { background: var(--brand-hover); color: #fff; transform: translateY(-2px); }
#scrollTop.visible { display: flex; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sports-grid { grid-template-columns: repeat(4, 1fr); }
  .slot-categories { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .giris-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .casino-features { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .slot-categories { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
}

/* Inline style replacements */
.btn--nav { padding: 10px 20px; }
.btn--full { width: 100%; justify-content: center; }
.btn--cta { font-size: 1rem; padding: 16px 38px; }
.trust-strip { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.mt-60 { margin-top: 60px; }
.mt-48 { margin-top: 48px; }
.mt-40 { margin-top: 40px; }
.mt-32 { margin-top: 32px; }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.card-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.list-check { display: flex; flex-direction: column; gap: 8px; }
.list-check li { display: flex; gap: 10px; font-size: 0.87rem; color: var(--text-soft); }
.list-check li span:first-child { color: var(--brand); }
.bonus-header--teal { background: linear-gradient(135deg, var(--secondary-hover), var(--bg-mid)); }
.bonus-header--dark { background: linear-gradient(135deg, #1a0820, #0d1a2e); }
.bonus-header--green { background: linear-gradient(135deg, #1f0a38, #091f10); }
.bonus-header--blue { background: linear-gradient(135deg, #0a1a30, #0d2020); }
.bonus-header--red { background: linear-gradient(135deg, #1a1010, #0a1520); }
.ramadan-content h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; }
.ramadan-content p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.ramadan-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.ramadan-list li { display: flex; gap: 10px; font-size: 0.87rem; color: var(--text-soft); }
.ramadan-list li span { color: var(--brand); }
.ramadan-right { text-align: center; }
.ramadan-emoji { font-size: 5rem; line-height: 1; margin-bottom: 16px; }
.ramadan-box { background: rgba(41,168,57,0.08); border: 1px solid rgba(41,168,57,0.2); border-radius: 16px; padding: 24px; }
.ramadan-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.ramadan-value { font-size: 2.2rem; font-weight: 900; color: var(--brand); }
.ramadan-value--teal { color: var(--secondary); }
.ramadan-divider { height: 1px; background: rgba(0,0,0,0.1); margin: 16px 0; }
.section-title--center { max-width: 700px; margin: 0 auto 14px; }
.section-sub--center { margin: 0 auto 48px; }
.faq-intro { text-align: center; color: var(--text-muted); font-size: 1rem; margin-bottom: 48px; }
.pay-info { background: rgba(241,196,15,0.06); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px 28px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.pay-info strong { font-size: 0.95rem; }
.pay-info span { color: var(--text-muted); font-size: 0.88rem; margin-left: 8px; }
.pay-info-highlight { color: var(--brand) !important; font-weight: 700; }
.cta-inner { position: relative; z-index: 2; }
.disclaimer-inner { display: flex; gap: 14px; align-items: flex-start; }
.slot-strategy-box { background: linear-gradient(135deg, var(--bg-card), var(--bg-card2)); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 36px; }
.slot-strategy-grid { align-items: center; gap: 40px; }
.volatility-row { display: flex; justify-content: space-between; align-items: center; border-radius: 10px; padding: 14px 18px; }
.volatility-row--green { background: rgba(41,168,57,0.07); border: 1px solid rgba(41,168,57,0.2); }
.volatility-row--teal { background: rgba(241,196,15,0.07); border: 1px solid rgba(241,196,15,0.2); }
.volatility-row--purple { background: rgba(78,15,152,0.12); border: 1px solid rgba(78,15,152,0.25); }
.volatility-label { font-size: 0.9rem; font-weight: 700; }
.volatility-value { font-size: 0.85rem; font-weight: 700; }
.volatility-value--green { color: var(--brand); }
.volatility-value--teal { color: var(--secondary); }
.volatility-value--purple { color: #c9a6ff; }
.rtp-display { text-align: center; margin-top: 6px; }
.provider-title { font-size: 1rem; font-weight: 700; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.slot-provider-title { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.page-content { max-width: 720px; margin: 0 auto; }
.page-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.page-content p { margin-bottom: 1rem; line-height: 1.8; }
.social-cards { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.social-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-main); transition: all var(--transition); text-decoration: none; }
.social-card:hover { border-color: var(--brand); color: var(--brand); }
.social-cards--compact .social-card { padding: 6px 12px; font-size: 0.78rem; }
.email-reveal { cursor: pointer; border-bottom: 1px dashed var(--secondary); }
.email-reveal:hover { color: var(--secondary); }
/* Lazy load: use loading="lazy" on img tags */

/* Inline replacements - giris, mobil, spor, casino, slot */
.giris-link-note { font-size: 0.88rem; color: var(--text-soft); margin-top: 10px; line-height: 1.6; }
.mobil-feat-icon { font-size: 2rem; margin-bottom: 12px; }
.mobil-feat-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.mobil-feat-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.spor-grid-2 { margin-top: 48px; }
.spor-feat-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.spor-feat-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.spor-feat-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }
.spor-list { display: flex; flex-direction: column; gap: 8px; }
.spor-list li { display: flex; gap: 10px; font-size: 0.87rem; color: var(--text-soft); }
.spor-list li span { color: var(--brand); }
.spor-list--secondary li span { color: var(--secondary); }
.cf-full { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(22,199,46,0.06), rgba(6,169,170,0.06)); border: 1px solid rgba(22,199,46,0.15); border-radius: var(--radius); padding: 24px; }
.cf-full-inner { flex: 1; }
.cf-full .cf-title { margin-bottom: 12px; }
.cf-grid-inner { gap: 24px; margin-top: 12px; }
.cf-subtitle { font-size: 0.9rem; font-weight: 800; color: var(--brand); margin-bottom: 8px; }
.cf-subtitle--teal { color: var(--secondary); }
.cf-ul { font-size: 0.85rem; color: var(--text-soft); line-height: 1.8; }
.cf-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; }
.casino-provider-section { margin-top: 48px; text-align: center; }
.casino-provider-title { font-size: 1rem; font-weight: 700; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.slot-strategy-box--dark { margin-top: 40px; background: linear-gradient(135deg, var(--bg-card), #0d1525); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 36px; }
.slot-strategy-box--dark h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 20px; }
.slot-strategy-box--dark > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.slot-strategy-grid--mb { gap: 24px; margin-bottom: 24px; }
.slot-strategy-grid--border { align-items: center; gap: 40px; padding-top: 20px; border-top: 1px solid var(--border); }
.slot-strategy h4 { font-size: 0.95rem; font-weight: 800; color: var(--brand); margin-bottom: 12px; }
.slot-strategy--teal h4 { color: var(--secondary); }
.slot-strategy ul { font-size: 0.85rem; color: var(--text-soft); line-height: 2; }
.slot-strategy--teal ul { line-height: 1.9; }
.slot-strategy-inner h4 { font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.slot-strategy-inner p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.volatility-stack { display: flex; flex-direction: column; gap: 10px; }
.rtp-display-inner { font-size: 0.8rem; color: var(--text-muted); }
.rtp-value { font-size: 1rem; font-weight: 900; color: var(--brand); margin-left: 4px; }
