/* ============================================================
   Betaverser.com — Mor (#2F0068) + Altın (#FFD233) paleti
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans:    'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --purple-dark:  #2F0068;
  --purple-mid:   #3A0B76;
  --gold:         #FFD233;
  --gold-light:   #FFDA4A;
  --white:        #FFFFFF;

  --hero:         #2F0068;
  --hero-hover:   #3A0B76;
  --hero-sc:      #FFFFFF;
  --brand:        #FFD233;
  --brand-hover:  #FFDA4A;
  --brand-sc:     #2F0068;
  --secondary:    #FFDA4A;
  --secondary-hover: #FFD233;
  --secondary-sc: #2F0068;

  --bg-dark:      #2F0068;
  --bg-mid:       #3A0B76;
  --bg-card:      #3A0B76;
  --bg-card2:     #452882;
  --text-main:    #FFFFFF;
  --text-muted:   rgba(255, 255, 255, 0.72);
  --text-soft:    rgba(255, 255, 255, 0.9);
  --border:       rgba(255, 210, 51, 0.28);
  --border2:      rgba(255, 218, 74, 0.35);
  --radius:       10px;
  --radius-lg:    14px;
  --shadow:       0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-brand: 0 6px 28px rgba(255, 210, 51, 0.3);
  --transition:   0.22s cubic-bezier(.4,0,.2,1);
  --accent-glow:  rgba(255, 210, 51, 0.18);
  --accent-glow2: rgba(255, 218, 74, 0.14);

  /* Header: beyaz zemin — koyu mor logo görünür */
  --header-bg:    #FFFFFF;
  --header-text:  #2F0068;
  --header-muted: #3A0B76;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 210, 51, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(58, 11, 118, 0.6), transparent);
  background-attachment: fixed;
}
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: 72px 0; }
.section--alt {
  background: var(--bg-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.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: var(--accent-glow); color: var(--brand); border: 1px solid var(--border); }
.tag--secondary { background: var(--accent-glow2); color: var(--secondary); border: 1px solid var(--border2); }
.tag--hero { background: rgba(255, 210, 51, 0.15); color: var(--gold); border: 1px solid var(--border); }
.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: 12px;
  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: var(--brand-sc); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 210, 51, 0.4); }
.btn--secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn--secondary:hover { background: var(--brand); color: var(--brand-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), border-color var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255, 210, 51, 0.45); }
.card--teal {
  background: var(--bg-card2);
  border-color: var(--border2);
}
.highlight { color: var(--brand); }
/* Dış referans: dofollow, gövde rengine yakın; hover’da hafif vurgu */
a.link-soft-external {
  color: var(--text-soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(85, 85, 85, 0.28);
  transition: color var(--transition), border-color var(--transition);
}
a.link-soft-external:hover {
  color: var(--text-main);
  border-bottom-color: rgba(255, 210, 51, 0.5);
}
.highlight--teal { color: var(--secondary); }
.highlight--purple { color: var(--gold-light); }
.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; }

/* Breadcrumb aktif yeşil kalın; / bitişik; segmentler sıkı */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb__sep {
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  opacity: 0.42;
  font-weight: 400;
  pointer-events: none;
  flex-shrink: 0;
  /* Glyph yan boşluğunu kıs: / harf yapışsın */
  margin-inline: -0.04em;
}
.breadcrumb [aria-current="page"] {
  color: var(--brand);
  font-weight: 800;
}
.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(58, 11, 118, 0.5); }
.glow-green  { background: rgba(255, 210, 51, 0.2); }
.glow-teal   { background: rgba(255, 218, 74, 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, #2F0068 0%, #3A0B76 50%, #2F0068 100%);
  padding: 11px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--gold);
}
.top-banner a { color: var(--gold); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.top-banner a:hover { color: var(--gold-light); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(47, 0, 104, 0.12);
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.nav-logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--header-text);
}
.nav-logo span { color: var(--gold); }
.nav-logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  vertical-align: middle;
  /* Koyu mor logo beyaz zeminde net */
  filter: none;
}
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  color: var(--header-text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--header-text); background: rgba(255, 210, 51, 0.35); }
.nav-links a.highlight { color: var(--header-text); background: rgba(255, 210, 51, 0.25); }
.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(--header-text);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(47, 0, 104, 0.1);
  background: var(--header-bg);
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--header-text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--header-text); background: rgba(255, 210, 51, 0.35); }
.mobile-nav .btn { text-align: center; justify-content: center; margin-top: 8px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background: linear-gradient(165deg, #2F0068 0%, #3A0B76 50%, #2F0068 100%);
  border-bottom: 2px solid rgba(255, 210, 51, 0.25);
}
.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: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.1em;
  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-text--accent {
  padding-left: 28px;
  border-left: 3px solid var(--brand);
}
@media (max-width: 768px) {
  .hero-text--accent { padding-left: 0; border-left: none; }
}
.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(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.hero-card:hover { transform: translateX(4px); border-color: rgba(255, 210, 51, 0.45); background: rgba(255, 210, 51, 0.06); }
.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(255, 210, 51, 0.2); }
.icon-teal  { background: rgba(255, 218, 74, 0.2); }
.icon-purple{ background: rgba(58, 11, 118, 0.5); }
.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: var(--brand-sc);
  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(255, 210, 51,0.08);
  border: 1.5px dashed rgba(255, 210, 51,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(255, 210, 51,0.15);
  border-color: rgba(255, 210, 51,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(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  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(255, 210, 51,0.2); }
.bonus-header {
  padding: 24px;
  background: linear-gradient(135deg, #2F0068, #3A0B76);
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--gold);
}
.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(255, 210, 51,0.15);
  border: 1px solid rgba(255, 210, 51,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; }

/* ============================================================
   SPOR / CASINO TABS
   ============================================================ */
.tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  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: var(--brand-sc);
  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(255, 210, 51,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(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  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(255, 218, 74,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(105deg, #3A0B76 0%, #2F0068 55%, #3A0B76 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(255, 210, 51, 0.3);
  border-bottom: 2px solid rgba(255, 210, 51, 0.3);
}
.promo-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFD233' fill-opacity='0.06'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%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(255, 210, 51,0.1);
  border: 1px solid rgba(255, 210, 51,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(58, 11, 118,0.5); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(58, 11, 118,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; }

/* Tek kartlı rehber blokları (paragraf aralığı) */
.card--guide-prose {
  max-width: 820px;
  margin-inline: auto;
}
.card--guide-prose .feat-desc:not(:last-child) { margin-bottom: 1.1rem; }

/* ============================================================
   OYUN SAGLAYICILARI
   ============================================================ */
.providers-list { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.prov-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  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(255, 218, 74,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(255, 210, 51,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(255, 210, 51,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(255, 210, 51,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(255, 210, 51,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: 16px; }
.trust-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.trust-item:hover { border-color: rgba(255, 210, 51, 0.4); }
.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(145deg, #2F0068 0%, #3A0B76 60%, #2F0068 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold);
}
.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: #2F0068;
  border-top: 3px solid var(--gold);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, minmax(0, 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;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}
.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(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  justify-content: center;
}
.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: linear-gradient(135deg, #FFD233, #FFDA4A);
  color: var(--brand-sc);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow-brand);
  transition: background var(--transition), transform var(--transition);
}
#scrollTop:hover { background: var(--gold-light); color: var(--brand-sc); 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; }
  .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; }
.nav-cta .btn--primary,
.nav-cta .btn--secondary {
  background: linear-gradient(135deg, #FFD233, #FFDA4A);
  color: var(--brand-sc);
  border: none;
  box-shadow: var(--shadow-brand);
}
.nav-cta .btn--primary:hover,
.nav-cta .btn--secondary:hover {
  background: var(--gold-light);
  color: var(--brand-sc);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 210, 51, 0.45);
}
.btn--full { width: 100%; justify-content: center; }
.btn--cta { font-size: 1rem; padding: 16px 38px; }
.trust-strip { background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 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, #3A0B76, #452882); }
.bonus-header--dark { background: linear-gradient(135deg, #2F0068, #1a0040); }
.bonus-header--green { background: linear-gradient(135deg, #3A0B76, #2F0068); }
.bonus-header--blue { background: linear-gradient(135deg, #2F0068, #3A0B76); }
.bonus-header--red { background: linear-gradient(135deg, #3A0B76, #2F0068); }
.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(255, 218, 74,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;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  text-align: center;
}
.disclaimer-inner > p {
  margin: 0;
  text-align: center;
  max-width: 65ch;
}
.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(255, 210, 51,0.07); border: 1px solid rgba(255, 210, 51,0.2); }
.volatility-row--teal { background: rgba(255, 218, 74,0.07); border: 1px solid rgba(255, 218, 74,0.2); }
.volatility-row--purple { background: rgba(58, 11, 118, 0.1); border: 1px solid rgba(58, 11, 118, 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: var(--gold-light); }
.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(255, 210, 51, 0.08), rgba(58, 11, 118, 0.06)); border: 1px solid var(--border); 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), #2F0068); 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; }

/* ============================================================
   REHBER SAYFALARI makale + yan CTA
   ============================================================ */
.layout-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  /* Mobilde DOM’da sonra gelse bile affiliate CTA üstte görünsün */
  .layout-split .sidebar-affiliate {
    order: -1;
  }
}
@media (min-width: 992px) {
  .layout-split { grid-template-columns: minmax(0, 1fr) minmax(260px, 300px); }
  .sidebar-affiliate { position: sticky; top: 92px; }
}
.page-article,
.page-content,
.prose-wide {
  font-family: var(--font-sans);
}
.page-article { min-width: 0; }
.page-article h1 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 900; margin-bottom: 0.35em; line-height: 1.2; }
/* Giriş paragrafı: gövde ile aynı aile; hafif vurgu için sınırlı boyut farkı */
.page-article .lead {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.prose-wide { max-width: 42rem; }
.prose-wide h2 { font-size: 1.35rem; font-weight: 800; margin: 2rem 0 0.85rem; color: var(--text-main); }
.prose-wide h3 { font-size: 1.1rem; font-weight: 800; margin: 1.5rem 0 0.65rem; }
.prose-wide p { margin-bottom: 1rem; line-height: 1.85; color: var(--text-soft); font-size: 0.98rem; }
.prose-wide ul, .prose-wide ol { margin: 0 0 1.1rem 1.15rem; line-height: 1.75; color: var(--text-soft); font-size: 0.95rem; list-style: disc; }
.prose-wide li { margin-bottom: 0.45rem; }
.prose-wide table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 1rem 0; color: var(--text-soft); }
.prose-wide th, .prose-wide td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose-wide thead th { background: rgba(0, 0, 0, 0.22); color: var(--text-main); font-weight: 700; }
.jump-links {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem !important;
}
.rehber-inline-figure {
  margin: 1.35rem 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.rehber-inline-figure img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.rehber-inline-figure figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  line-height: 1.5;
}
.table-scroll {
  overflow-x: auto;
  margin: 1rem 0;
  -webkit-overflow-scrolling: touch;
}
.prose-wide blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--brand);
  background: rgba(255, 210, 51, 0.08);
  font-size: 0.95rem;
  color: var(--text-soft);
}

.prose-wide code { font-size: 0.88em; padding: 0.12em 0.35em; border-radius: 4px; background: rgba(0, 0, 0, 0.25); }
.prose-wide .note-box {
  background: linear-gradient(135deg, rgba(255, 210, 51,0.08), rgba(255, 218, 74,0.06));
  border: 1px solid rgba(255, 210, 51,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.affiliate-cta-card {
  background: linear-gradient(160deg, #3A0B76 0%, #2F0068 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.affiliate-cta-card .aff-icon { font-size: 2.2rem; margin-bottom: 10px; color: var(--brand); }
.affiliate-cta-card h2 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.affiliate-cta-card p { font-size: 0.86rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 18px; }
.affiliate-cta-card ul { color: rgba(255,255,255,0.85); }
.affiliate-cta-card ul a { color: rgba(255,255,255,0.95); text-decoration: underline; text-underline-offset: 3px; }
.affiliate-cta-card ul a:hover { color: var(--brand); }
.affiliate-cta-card .btn { width: 100%; justify-content: center; }
.rehber-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; margin-top: 36px; }
.rehber-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rehber-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(255, 210, 51,0.12); }
.rehber-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2F0068, #3A0B76);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 2.5rem;
}
.rehber-card__media img { width: 100%; height: 100%; object-fit: cover; }
.rehber-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.rehber-card__body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.rehber-card__body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.rehber-card__body .btn { align-self: flex-start; font-size: 0.85rem; padding: 10px 18px; }
a.rehber-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
a.rehber-card:hover { color: inherit; }
.rehber-card__cta {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--brand-sc);
}
a.rehber-card:hover .rehber-card__cta { filter: brightness(1.08); }
.section-rehber-intro { text-align: center; max-width: 640px; margin: 0 auto; }
.section-rehber-intro .section-sub { margin-top: 12px; }
.turnuva-detail { scroll-margin-top: 100px; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.turnuva-detail:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.turnuva-detail__hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.turnuva-detail__hero-img img { width: 100%; height: auto; display: block; vertical-align: middle; }
.rule-list { list-style: decimal; padding-left: 1.25rem; }
.rule-list li { margin-bottom: 0.6rem; }
.hub-hero { text-align: center; padding-bottom: 20px; }
.hub-hero .tag { margin-bottom: 12px; display: inline-block; }

/* ---------- Slot game showcase (ana sayfa + rehber) ---------- */
.game-showcase {
  margin-top: 2rem;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(139,92,246,0.06) 0%, rgba(17,21,34,0.85) 100%);
}
.game-showcase__head {
  max-width: 640px;
  margin-bottom: 20px;
}
.game-showcase__head h3 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.25;
}
.game-showcase__head p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.game-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 700;
}
.game-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 14px;
}
@media (min-width: 768px) {
  .game-showcase__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 1100px) {
  .game-showcase__grid { grid-template-columns: repeat(6, 1fr); }
}
.game-showcase-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--hero);
  transition: border-color var(--transition), transform var(--transition);
}
.game-showcase-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-3px);
}
.game-showcase-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #1a2234, #141824);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-sizing: border-box;
}
.game-showcase-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.game-showcase-card__meta {
  padding: 11px 12px 14px;
}
.game-showcase-card__title {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-showcase-card__rtp {
  font-size: 0.75rem;
  color: rgba(169,214,154,0.95);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.game-showcase-card__vol {
  font-size: 0.68rem;
  color: var(--text-soft);
  margin-top: 4px;
  line-height: 1.35;
}
.slot-game-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  margin: 2rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  .slot-game-block {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 1.75rem;
  }
}
.slot-game-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.slot-game-block__thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111827;
}
.slot-game-block__thumb img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.slot-game-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.2);
  color: rgba(217,180,254,0.95);
  margin-bottom: 8px;
}
.slot-game-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
}
.slot-game-metrics span {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Bonus dokümantasyon blokları (bonuslar.html) */
.bonus-doc {
  margin: 1.75rem 0 2rem;
}
.bonus-doc-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0 2rem;
}
.bonus-promo-block {
  margin: 2.25rem 0;
  scroll-margin-top: 88px;
}
.bonus-promo-block__hero img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bonus-promo-block__title {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin: 1rem 0 0.75rem;
  font-weight: 700;
}
.bonus-promo-list {
  margin: 0;
  padding-left: 1.35rem;
}
.bonus-promo-list li {
  margin-bottom: 0.65rem;
  line-height: 1.6;
}
.bonus-promo-list li::marker {
  font-weight: 600;
}
.bonus-promo-footnote {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}
.bonus-promo-intro,
.bonus-doc-intro {
  margin: 0.5rem 0 0;
  line-height: 1.6;
  color: var(--muted);
}
.bonus-promo-block--compact .bonus-promo-block__title {
  margin-top: 0.75rem;
}
