/* ==========================================================
   BonusPedi — Betzula odaklı açık tema (beyaz / açık gri + koyu mavi)
   Mobile-first · CSS değişkenleri · Inter (self-hosted)
   ========================================================== */

:root {
  --primary: #1e3a8a;          /* koyu mavi */
  --primary-dark: #172554;
  --primary-light: #2563eb;
  --primary-soft: #dbeafe;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --gold: #f59e0b;
  --cta: #f97316;              /* Betzula CTA turuncu */
  --cta-dark: #ea580c;
  --tg: #229ed9;
  --bg: #f5f7fb;
  --bg-card: #ffffff;
  --bg-secondary: #eef2f8;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-light: #eef2f7;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow: 0 6px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 40px rgba(30,58,138,0.16);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --topbar-height: 44px;
  --navbar-height: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.popup-lock { overflow: hidden; }

a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
.flex-1 { flex: 1; }

/* ---- BETZULA STICKY TOP BAR ---- */
.bz-topbar {
  position: sticky;
  top: 0;
  z-index: 1010;
  height: var(--topbar-height);
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 60%, #1d4ed8 100%);
  color: #fff;
  font-size: 0.86rem;
  transition: box-shadow 0.2s;
}
.bz-topbar.is-stuck { box-shadow: 0 4px 16px rgba(23,37,84,0.35); }
.bz-topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.bz-topbar-text { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bz-topbar-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: bzPing 1.8s infinite;
}
.bz-topbar-amount {
  background: var(--gold); color: #1c1917;
  font-weight: 800; padding: 1px 8px; border-radius: 100px; font-size: 0.8rem;
}
.bz-topbar-btn {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--cta); color: #fff;
  font-weight: 700; padding: 6px 14px; border-radius: 100px;
  font-size: 0.82rem; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.bz-topbar-btn:hover { background: var(--cta-dark); color: #fff; transform: translateY(-1px); }

/* ---- NAVBAR ---- */
.navbar-bonuspedi {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-height);
  position: sticky;
  top: var(--topbar-height);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar-bonuspedi .navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.navbar-bonuspedi .navbar-brand .brand-dot {
  width: 10px; height: 10px;
  background: linear-gradient(135deg, var(--cta), var(--gold));
  border-radius: 50%;
  display: inline-block;
}
.navbar-bonuspedi .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.navbar-bonuspedi .nav-link:hover,
.navbar-bonuspedi .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-soft);
}
.navbar-bonuspedi .nav-link-telegram { color: var(--tg) !important; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  color: #fff !important;
  font-weight: 700; font-size: 0.88rem;
  padding: 10px 18px; border-radius: 100px;
  min-height: 44px;
  box-shadow: 0 6px 16px rgba(249,115,22,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249,115,22,0.4); }
.nav-cta-sm { padding: 6px 12px; min-height: 36px; font-size: 0.8rem; }
.navbar-collapse.show, .navbar-collapse.collapsing { background: #fff; padding: 8px 0 12px; }

/* ---- BANNER ---- */
.site-banner { color: #fff; text-align: center; padding: 10px 16px; font-size: 0.88rem; font-weight: 500; }

/* ---- BETZULA BUTON ---- */
.bz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
  color: #fff; font-weight: 800; font-size: 0.92rem;
  padding: 11px 20px; border-radius: 100px; border: none;
  min-height: 44px; text-decoration: none; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(249,115,22,0.32);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.bz-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(249,115,22,0.42); filter: brightness(1.04); }
.bz-btn-lg { padding: 14px 26px; font-size: 1rem; }
.bz-btn-ghost {
  background: #fff; color: var(--tg); box-shadow: none;
  border: 2px solid rgba(34,158,217,0.35);
}
.bz-btn-ghost:hover { color: var(--tg); background: #eaf6fc; box-shadow: none; }
.bz-btn-pulse { animation: bzPulse 2.2s ease-in-out infinite; }

/* ---- BETZULA HERO (her sayfa) ---- */
.bz-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(59,130,246,0.35), transparent 60%),
    radial-gradient(600px 300px at 0% 110%, rgba(249,115,22,0.22), transparent 60%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1d4ed8 100%);
  color: #fff;
  padding: 28px 0;
}
.bz-hero-lg { padding: 40px 0 44px; }
.bz-hero-sm { padding: 22px 0; }
.bz-hero-glow {
  position: absolute; inset: -40%;
  background: conic-gradient(from 180deg, transparent 0 70%, rgba(255,255,255,0.08) 80%, transparent 90%);
  animation: bzSpin 14s linear infinite;
  pointer-events: none;
}
.bz-hero .container { position: relative; z-index: 1; }
.bz-hero-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
.bz-hero-imgwrap {
  display: block; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: transform 0.3s;
  border: 3px solid rgba(255,255,255,0.15);
}
.bz-hero-imgwrap:hover { transform: translateY(-4px) scale(1.01); }
.bz-hero-img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.bz-hero-ribbon {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15,23,42,0.75); color: #fff;
  font-size: 0.74rem; font-weight: 700;
  padding: 5px 10px; border-radius: 100px;
  backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; gap: 5px;
}
.bz-hero-ribbon i { color: #4ade80; }
.bz-hero-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.bz-hero-logo { height: 34px; width: auto; background: #fff; padding: 4px 10px; border-radius: 8px; }
.bz-hero-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.76rem; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.bz-hero-chip i { color: var(--gold); }
.bz-hero-title {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 10px; letter-spacing: -0.01em;
}
.bz-hero-amount {
  background: linear-gradient(90deg, #fde68a, #f59e0b);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bz-hero-desc { font-size: 0.95rem; opacity: 0.9; max-width: 560px; margin-bottom: 12px; }
.bz-hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 0 0 18px; padding: 0; font-size: 0.85rem; }
.bz-hero-facts li { display: inline-flex; align-items: center; gap: 6px; }
.bz-hero-facts i { color: #4ade80; }
.bz-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.bz-hero-sm .bz-hero-desc, .bz-hero-sm .bz-hero-facts { display: none; }
.bz-hero-sm .bz-hero-title { font-size: clamp(1.25rem, 4vw, 1.8rem); }

/* ---- SEO INTRO (ana sayfa H1 bloğu) ---- */
.seo-intro { padding: 36px 0 8px; background: var(--bg); }
.seo-intro-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 14px;
}
.hero-title { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; color: var(--text); letter-spacing: -0.01em; }
.hero-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 640px; margin-bottom: 20px; }
.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stat-item {
  flex: 1; min-width: 100px; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 10px; box-shadow: var(--shadow-sm);
}
.hero-stat-number { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.hero-stat-label { font-size: 0.76rem; color: var(--text-muted); margin-top: 4px; }

/* ---- SECTION ---- */
.section { padding: 44px 0; }
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 28px; }
.section-badge {
  display: inline-block;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 10px;
}
.section-title { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.section-desc { color: var(--text-secondary); font-size: 0.95rem; max-width: 640px; margin: 0 auto; }
.page-title { font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.page-sub { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 6px; max-width: 760px; }

/* ---- BETZULA KAMPANYA KARTLARI (12) ---- */
.bz-kampanya-section { background: #fff; }
.bz-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.bz-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); color: var(--text); }
.bz-card-main { border: 2px solid var(--cta); box-shadow: 0 10px 30px rgba(249,115,22,0.18); }
.bz-card-media { position: relative; background: var(--primary-dark); }
.bz-card-media img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.bz-card-flag {
  position: absolute; top: 10px; left: 10px;
  background: var(--cta); color: #fff; font-size: 0.7rem; font-weight: 800;
  padding: 4px 9px; border-radius: 100px; display: inline-flex; gap: 4px; align-items: center;
}
.bz-card-body { padding: 12px; display: flex; flex-direction: column; flex: 1; gap: 4px; }
.bz-card-amount { font-size: 1.05rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.bz-card-type { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.bz-card-wager { font-size: 0.74rem; color: var(--text-muted); display: flex; gap: 4px; align-items: center; }
.bz-card-note {
  font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; margin: 4px 0 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.bz-card-cta {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 0.84rem;
  padding: 9px 12px; border-radius: 100px; min-height: 40px;
  transition: background 0.2s;
}
.bz-card:hover .bz-card-cta { background: var(--cta); }

/* ---- BETZULA ÖNE ÇIKAN (liste 1. sıra) ---- */
.bz-feature-card {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 14px; align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
  border: 2px solid var(--cta); border-radius: var(--radius-lg);
  padding: 16px; margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(249,115,22,0.16);
  position: relative;
}
.bz-feature-rank {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cta); color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(249,115,22,0.35);
}
.bz-feature-logo { display: flex; align-items: center; }
.bz-feature-logo img { height: 44px; width: auto; }
.bz-feature-body { grid-column: 1 / -1; }
.bz-feature-title { font-size: 1.15rem; font-weight: 800; color: var(--text); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.bz-feature-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #dcfce7; color: #166534; font-size: 0.72rem; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
}
.bz-feature-amount { font-weight: 700; color: var(--primary); font-size: 0.95rem; margin: 4px 0; }
.bz-feature-note { font-size: 0.85rem; color: var(--text-secondary); }
.bz-feature-card .bz-btn { grid-column: 1 / -1; justify-content: center; }

/* ---- DIŞ MARKA KARTLARI (linksiz, pasif) ---- */
.dis-group-title {
  font-size: 1rem; font-weight: 800; color: var(--text);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.dis-group-title i { color: var(--primary); }
.dis-group-count { background: var(--primary-soft); color: var(--primary); font-size: 0.74rem; font-weight: 800; padding: 2px 8px; border-radius: 100px; }
.dis-group-desc { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 12px; }
.dis-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.dis-marka-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-sm); cursor: default; user-select: text; min-width: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dis-marka-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.dis-marka-card-yatirim { background: #fbfcfe; }
.dis-marka-head { display: flex; align-items: center; gap: 10px; }
.dis-marka-logo {
  width: 48px; height: 48px; border-radius: 10px; object-fit: contain;
  background: var(--bg-secondary); border: 1px solid var(--border); padding: 4px; flex-shrink: 0;
}
.dis-marka-name { font-weight: 800; font-size: 0.95rem; color: var(--text); line-height: 1.2; overflow-wrap: anywhere; }
.dis-marka-head > div { min-width: 0; }
.dis-marka-type { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }
.dis-marka-amount { font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.dis-marka-wager { font-size: 0.74rem; color: var(--text-muted); display: flex; gap: 4px; align-items: center; }
.dis-marka-note {
  font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.dis-marka-foot { margin-top: auto; padding-top: 6px; border-top: 1px dashed var(--border); font-size: 0.7rem; color: var(--text-muted); display: flex; gap: 4px; align-items: center; }
.dis-cta {
  margin-top: 24px; padding: 18px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center;
  font-weight: 600;
}

/* ---- SITE KARTLARI (genel) ---- */
.site-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; transition: all 0.25s; height: 100%;
  display: flex; flex-direction: column; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.site-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.site-card-logo { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: contain; border: 1px solid var(--border); background: var(--bg-secondary); padding: 6px; flex-shrink: 0; }
.site-card-logo-placeholder {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.3rem; flex-shrink: 0;
}
.site-card-badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.badge-featured { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; }
.badge-new { background: var(--primary-soft); color: var(--primary); border: 1px solid #bfdbfe; }
.badge-recommended { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.badge-popular { background: #ede9fe; color: #6d28d9; border: 1px solid #ddd6fe; }
.site-card-name { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 14px 0 6px; }
.site-card-info { font-size: 0.875rem; color: var(--text-secondary); flex: 1; line-height: 1.55; }
.site-card-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; display: flex; align-items: center; gap: 4px; }
.site-card-actions { margin-top: 18px; display: flex; gap: 8px; }

/* ---- BONUS KARTLARI ---- */
.bonus-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.25s; height: 100%; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.bonus-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.bonus-card-img { width: 100%; height: 160px; object-fit: cover; background: var(--bg-secondary); }
.bonus-card-img-placeholder {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem;
}
.bonus-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.bonus-card-site { font-size: 0.76rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.bonus-card-name { font-size: 1rem; font-weight: 700; color: var(--text); margin: 6px 0; }
.bonus-card-desc { font-size: 0.85rem; color: var(--text-secondary); flex: 1; }
.bonus-card-actions { margin-top: 14px; }

/* ---- BUTONLAR ---- */
.btn-primary-custom, .btn-accent-custom {
  background: var(--primary); color: #fff; border: none; border-radius: 100px;
  padding: 10px 20px; font-size: 0.88rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; min-height: 44px;
}
.btn-primary-custom:hover, .btn-accent-custom:hover { background: var(--primary-light); color: #fff; transform: translateY(-1px); }
.btn-outline-custom {
  background: #fff; color: var(--primary); border: 1.5px solid var(--primary);
  border-radius: 100px; padding: 9px 18px; font-size: 0.88rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; min-height: 44px;
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

/* ---- İÇERİK BLOĞU ---- */
.content-block {
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--primary);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
}
.content-block p { color: var(--text-secondary); margin-bottom: 10px; }
.content-block a { color: var(--primary-light); font-weight: 600; }
.content-block img { border-radius: var(--radius-sm); }

/* ---- SSS ---- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; background: #fff; }
.faq-question {
  padding: 16px 20px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: #fff; transition: background 0.2s; user-select: none;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; color: var(--text-secondary); font-size: 0.92rem; }
.faq-answer.open { max-height: 400px; padding: 16px 20px; }

/* ---- POPUP (Betzula) ---- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.72);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; padding: 16px;
  backdrop-filter: blur(3px);
}
.popup-overlay.popup-open { animation: popupFadeIn 0.3s ease forwards; }
.popup-overlay.popup-hidden { display: none; }
.popup-card {
  position: relative; background: #fff;
  border-radius: 18px; overflow: hidden;
  max-width: 400px; width: 100%; max-height: calc(100vh - 32px); overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: popupSlideUp 0.35s ease forwards;
}
.popup-close {
  position: absolute; top: 10px; right: 10px;
  background: rgba(15,23,42,0.7); color: #fff;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 50%;
  width: 40px; height: 40px; font-size: 15px; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; line-height: 1;
}
.popup-close:hover { background: rgba(15,23,42,0.95); transform: scale(1.08); }
.popup-media { display: block; }
.popup-img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.popup-body { padding: 16px 18px 18px; text-align: center; display: flex; flex-direction: column; gap: 8px; }
.popup-title { font-size: 1.15rem; font-weight: 800; color: var(--text); line-height: 1.25; }
.popup-title span { color: var(--cta); }
.popup-desc { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 4px; }
.popup-tg { font-size: 0.82rem; font-weight: 600; color: var(--tg); display: inline-flex; align-items: center; justify-content: center; gap: 5px; }

/* ---- TELEGRAM YÜZEN BUTON ---- */
.tg-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 950;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tg); color: #fff;
  border-radius: 100px; padding: 12px 16px 12px 14px;
  font-weight: 700; font-size: 0.86rem;
  box-shadow: 0 10px 26px rgba(34,158,217,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tg-float i { font-size: 1.35rem; line-height: 1; }
.tg-float:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(34,158,217,0.55); }

/* ---- FOOTER ---- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 44px 0 24px; }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.footer-tagline { font-size: 0.85rem; opacity: 0.65; margin-bottom: 16px; }
.footer-telegram {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tg); color: #fff; font-weight: 700; font-size: 0.86rem;
  padding: 9px 14px; border-radius: 100px; margin-bottom: 8px; min-height: 40px;
}
.footer-telegram:hover { color: #fff; filter: brightness(1.08); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-heading { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 32px; padding-top: 20px; font-size: 0.82rem; opacity: 0.6; }
.footer-warning { background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.78rem; margin-top: 12px; opacity: 0.7; }

/* ---- KATEGORİ KARTLARI ---- */
.bonus-cat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 14px; text-align: center; transition: all 0.25s; height: 100%; box-shadow: var(--shadow-sm);
}
.bonus-cat-card:hover { border-color: var(--primary-light); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bonus-cat-emoji { font-size: 2.1rem; margin-bottom: 8px; line-height: 1; }
.bonus-cat-label { font-weight: 700; color: var(--text); font-size: 0.92rem; margin-bottom: 4px; }
.bonus-cat-count { font-size: 0.78rem; color: var(--text-muted); }
.cat-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.cat-chip {
  font-size: 0.8rem; padding: 6px 14px; border-radius: 100px; border: 1px solid var(--border);
  background: #fff; color: var(--text-secondary); font-weight: 600; transition: all 0.2s; min-height: 36px; display: inline-flex; align-items: center;
}
.cat-chip:hover, .cat-chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.filter-clear { font-size: 0.78rem; background: var(--primary-soft); color: var(--primary); padding: 3px 10px; border-radius: 100px; font-weight: 600; }

/* ---- FİLTRE ---- */
.filter-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px;
  position: sticky; top: calc(var(--topbar-height) + var(--navbar-height) + 16px); box-shadow: var(--shadow-sm);
}
.filter-title { font-weight: 800; margin-bottom: 10px; font-size: 0.9rem; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 9px 4px; cursor: pointer; font-size: 0.88rem; color: var(--text-secondary); transition: color 0.15s; min-height: 40px; }
.filter-option:hover { color: var(--primary); }
.filter-bz { background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius); padding: 14px; text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.filter-bz img { height: 34px; width: auto; }
.filter-bz-text { font-size: 0.84rem; font-weight: 700; color: var(--text); }

/* ---- DETAY ---- */
.detail-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.detail-cover { width: 100%; height: 280px; object-fit: cover; display: block; }
.detail-body { padding: 24px; }
.detail-side {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px;
  position: sticky; top: calc(var(--topbar-height) + var(--navbar-height) + 16px); box-shadow: var(--shadow-sm); text-align: center;
}
.detail-side-title { font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: 4px; }
.detail-side-note { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 12px; }
.site-detail-header { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.site-detail-logo { width: 96px; height: 96px; object-fit: contain; border: 1px solid var(--border); border-radius: var(--radius); padding: 8px; flex-shrink: 0; background: #fff; }
.site-social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.site-social-link {
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--bg-secondary); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 1rem; transition: all 0.2s;
}
.site-social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.goto-site-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cta); color: #fff; padding: 12px 24px; border-radius: 100px;
  font-weight: 800; font-size: 1rem; transition: all 0.2s; border: none;
}
.goto-site-btn:hover { background: var(--cta-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(249,115,22,0.35); }

/* ---- BREADCRUMB ---- */
.breadcrumb-custom { padding: 12px 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb-custom a { color: var(--text-muted); }
.breadcrumb-custom a:hover { color: var(--primary); }
.breadcrumb-custom span { color: var(--text-secondary); }
.breadcrumb-custom a + a::before, .breadcrumb-custom span::before { content: ' › '; }

/* ---- FORM ---- */
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 9px 14px; font-size: 0.9rem; transition: border-color 0.2s; }
.form-control:focus, .form-select:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(37,99,235,0.14); }
.form-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }

/* ---- ADMIN PANEL ---- */
.admin-sidebar { width: 240px; background: var(--primary-dark); min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 900; display: flex; flex-direction: column; }
.admin-sidebar-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1rem; font-weight: 800; color: #fff; }
.admin-sidebar-header span { color: var(--gold); }
.admin-sidebar-nav { padding: 12px 0; flex: 1; }
.admin-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: rgba(255,255,255,0.65); font-size: 0.88rem; font-weight: 500; transition: all 0.2s; cursor: pointer; text-decoration: none; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(245,158,11,0.12); color: #fff; border-left: 3px solid var(--gold); }
.admin-nav-item i { width: 18px; text-align: center; }
.admin-nav-section { padding: 16px 20px 6px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.admin-main { margin-left: 240px; min-height: 100vh; background: var(--bg); }
.admin-topbar { background: #fff; border-bottom: 1px solid var(--border); border-left: 3px solid var(--primary); padding: 0 24px; height: 56px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.admin-content { padding: 24px; }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); border-top: 3px solid var(--primary); padding: 20px; margin-bottom: 20px; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); font-weight: 700; font-size: 0.95rem; color: var(--primary-dark); }
.admin-stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 16px; margin-bottom: 0; }
.admin-stat-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.admin-stat-icon.blue { background: var(--primary-soft); color: var(--primary); }
.admin-stat-icon.green { background: #dcfce7; color: #166534; }
.admin-stat-value { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--primary); }
.admin-stat-label { font-size: 0.8rem; color: var(--text-muted); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 10px 14px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-light); font-size: 0.88rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-secondary); }
.toggle-switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: #cbd5e1; border-radius: 100px; transition: 0.3s; }
.toggle-slider:before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s; }
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(18px); }
.sync-badge { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.sync-badge.success { background: #dcfce7; color: #166534; }
.sync-badge.error { background: #fee2e2; color: #b91c1c; }
.sync-badge.running { background: #fef3c7; color: #b45309; }
.admin-main .btn-primary { background: var(--primary); border-color: var(--primary); }
.admin-main .btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); }
.admin-main a { color: var(--primary-light); }
.admin-main a:hover { color: var(--primary); }
.admin-topbar .text-primary, .admin-topbar .fw-bold { color: var(--primary-dark) !important; }

/* ---- MOBILE BOTTOM NAV ---- */
.mob-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 62px;
  background: #fff; border-top: 1px solid var(--border); z-index: 900;
  box-shadow: 0 -4px 20px rgba(15,23,42,0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.mob-nav-item, .mob-nav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  color: var(--text-muted); font-size: 11px; font-weight: 600; text-decoration: none; border: none; background: none;
  cursor: pointer; padding: 8px 0; min-height: 48px; transition: color 0.15s; -webkit-tap-highlight-color: transparent;
}
.mob-nav-item i, .mob-nav-btn i { font-size: 20px; line-height: 1; }
.mob-nav-item:hover, .mob-nav-btn:hover, .mob-nav-item.active, .mob-nav-btn.active { color: var(--primary); }
.mob-nav-cta { color: #fff !important; }
.mob-nav-cta i {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark)); color: #fff;
  margin-top: -22px; box-shadow: 0 8px 18px rgba(249,115,22,0.4); border: 3px solid #fff;
}
.mob-nav-cta span { color: var(--cta-dark); }

/* ---- MOBILE BOTTOM SHEETS ---- */
.mob-sheet { display: none; position: fixed; inset: 0; z-index: 1100; }
.mob-sheet.open { display: block; }
.mob-sheet-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,0.55); }
.mob-sheet-panel {
  position: absolute; bottom: 0; left: 0; right: 0; background: #fff;
  border-radius: 20px 20px 0 0; border-top: 1px solid var(--border);
  padding: 12px 20px 24px; transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.32,0.72,0,1); max-height: 80vh; overflow-y: auto;
}
.mob-sheet.open .mob-sheet-panel { transform: translateY(0); }
.mob-sheet-handle { width: 40px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 14px; }
.mob-sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: 15px; font-weight: 700; color: var(--text); }
.mob-sheet-close { background: var(--bg-secondary); border: none; color: var(--text-muted); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.mob-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mob-cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 10px;
  background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: var(--radius);
  text-decoration: none; color: var(--text); font-size: 13px; font-weight: 500; text-align: center;
  transition: border-color 0.15s, background 0.15s; min-height: 72px;
}
.mob-cat-item:hover { color: var(--text); border-color: var(--primary-light); background: var(--primary-soft); }
.mob-cat-item .mob-cat-emoji { font-size: 26px; line-height: 1; }
.mob-search-form { display: flex; gap: 10px; align-items: center; }
.mob-search-input { flex: 1; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: 12px 16px; font-size: 15px; outline: none; }
.mob-search-input:focus { border-color: var(--primary-light); }
.mob-search-btn { background: var(--primary); border: none; color: #fff; width: 46px; height: 46px; border-radius: var(--radius); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---- ANİMASYONLAR ---- */
@keyframes bzPing {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
@keyframes bzPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(249,115,22,0.32); }
  50% { box-shadow: 0 8px 28px rgba(249,115,22,0.6), 0 0 0 6px rgba(249,115,22,0.15); }
}
@keyframes bzSpin { to { transform: rotate(360deg); } }
@keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popupSlideUp { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- RESPONSIVE (tablet+) ---- */
@media (min-width: 576px) {
  .dis-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bz-feature-card { grid-template-columns: auto auto 1fr auto; }
  .bz-feature-body { grid-column: auto; }
  .bz-feature-card .bz-btn { grid-column: auto; }
  .dis-cta { flex-direction: row; justify-content: center; text-align: left; }
}
@media (min-width: 768px) {
  .bz-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 32px; }
  .bz-hero-lg .bz-hero-grid { grid-template-columns: 1fr 1.1fr; }
  .bz-hero-sm .bz-hero-grid { grid-template-columns: 0.8fr 1.2fr; }
  .bz-hero-sm .bz-hero-desc { display: block; }
  .seo-intro-grid { grid-template-columns: 1.4fr 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
}
@media (min-width: 992px) {
  .dis-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .hero-stats { flex-direction: row; }
}
@media (min-width: 1200px) {
  .dis-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ---- RESPONSIVE (mobil) ---- */
@media (max-width: 991px) {
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .filter-card, .detail-side { position: static; }
}
@media (max-width: 767px) {
  body { padding-bottom: 70px; font-size: 15px; }
  .mob-bottom-nav { display: flex; }
  .tg-float { bottom: 80px; right: 12px; padding: 12px; }
  .tg-float-label { display: none; }
  .bz-topbar { font-size: 0.8rem; }
  .bz-hero-actions .bz-btn { width: 100%; justify-content: center; }
  .bz-hero-lg { padding: 22px 0 26px; }
  .seo-intro { padding: 24px 0 4px; }
  .site-card { padding: 16px; }
  .site-card-actions { flex-direction: column; }
  .site-card-actions .btn-outline-custom, .site-card-actions .btn-accent-custom { justify-content: center; }
  .goto-site-btn { width: 100%; justify-content: center; }
  .site-detail-header { padding: 16px; }
  .detail-body { padding: 18px; }
  .detail-cover { height: 200px; }
  .site-footer { padding: 32px 0 16px; }
  .footer-links a { font-size: 0.9rem; padding: 4px 0; display: block; }
  .content-block { padding: 18px 16px; }
  .faq-question { padding: 14px 16px; font-size: 0.9rem; }
  .bonus-cat-card { padding: 14px 8px; }
  .bonus-cat-emoji { font-size: 1.8rem; }
  .bonus-cat-label { font-size: 0.85rem; }
  .bonus-card-body { padding: 12px; }
}
@media (max-width: 575px) {
  .bz-topbar-text strong { display: none; }
  .hero-stat-item { min-width: 30%; padding: 10px 6px; }
  .hero-stat-number { font-size: 1.3rem; }
  .bz-card-body { padding: 10px; }
  .bz-card-amount { font-size: 0.95rem; }
  .bz-card-note { -webkit-line-clamp: 2; }
  .bonus-card-img { height: 130px; }
  .popup-card { max-width: 340px; }
}
