/* =====================================================================
   BonusGraf × Betzula — bileşen stilleri (lacivert zemin + cyan vurgu)
   Mobile-first. style.css'in üstüne yüklenir.
   ===================================================================== */
:root {
  --bz-navy-900: #050c20;
  --bz-navy-800: #081737;
  --bz-navy-700: #0b1e4b;
  --bz-navy-600: #12306e;
  --bz-cyan: #22d3ee;
  --bz-cyan-deep: #06b6d4;
  --bz-cyan-soft: #a5f3fc;
  --bz-electric: #38bdf8;
  --bz-ink: #eef6ff;
  --bz-ink-2: #b3c5e6;
  --bz-ink-3: #7d92bb;
  --bz-line: rgba(34,211,238,0.18);
  --bz-line-strong: rgba(34,211,238,0.42);
  --bz-radius: 16px;
  --bz-radius-lg: 22px;
  --bz-shadow: 0 10px 40px rgba(2,8,24,0.55);
  --bz-glow: 0 0 0 1px rgba(34,211,238,0.25), 0 12px 40px rgba(34,211,238,0.18);
  --bz-bar-h: 40px;
  --bz-tg: #2aabee;
}

/* ---------- Genel ---------- */
body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(6,182,212,0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(56,189,248,0.08), transparent 55%),
    var(--bz-navy-900);
}
body.bz-popup-open { overflow: hidden; }
.site-header { top: var(--bz-bar-h); }
.site-header::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bz-cyan), transparent); opacity: .6;
}

/* ---------- Butonlar ---------- */
.bz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; min-height: 46px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 700; font-size: .95rem; letter-spacing: .1px; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.bz-btn:active { transform: translateY(1px) scale(.99); }
.bz-btn-lg { padding: 15px 26px; min-height: 54px; font-size: 1.05rem; border-radius: 14px; }
.bz-btn-sm { padding: 8px 14px; min-height: 38px; font-size: .84rem; border-radius: 10px; }
.bz-btn-primary {
  color: #041225 !important;
  background: linear-gradient(135deg, var(--bz-cyan-soft) 0%, var(--bz-cyan) 45%, var(--bz-electric) 100%);
  box-shadow: 0 6px 22px rgba(34,211,238,0.35), inset 0 1px 0 rgba(255,255,255,0.45);
}
.bz-btn-primary:hover { color: #041225 !important; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(34,211,238,0.45), inset 0 1px 0 rgba(255,255,255,0.5); }
.bz-btn-ghost {
  color: var(--bz-ink) !important; background: rgba(34,211,238,0.06); border-color: var(--bz-line-strong);
}
.bz-btn-ghost:hover { background: rgba(34,211,238,0.14); border-color: var(--bz-cyan); color: #fff !important; transform: translateY(-2px); }
.bz-btn-tg { color: #fff !important; background: linear-gradient(135deg, #37b4f0, #1d8fd6); box-shadow: 0 6px 20px rgba(42,171,238,0.35); }
.bz-btn-tg:hover { color: #fff !important; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(42,171,238,0.45); }

/* ---------- Sticky üst bar ---------- */
.bz-sticky-bar {
  position: sticky; top: 0; z-index: 1002; min-height: var(--bz-bar-h);
  background: linear-gradient(90deg, #06b6d4 0%, #0ea5e9 50%, #06b6d4 100%);
  background-size: 200% 100%; animation: bzBarShift 8s linear infinite;
  box-shadow: 0 2px 14px rgba(6,182,212,0.4);
}
.bz-sticky-link {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: nowrap;
  min-height: var(--bz-bar-h); padding: 6px 12px; color: #041225 !important; text-decoration: none;
  font-size: .86rem; font-weight: 600; line-height: 1.2;
}
.bz-sticky-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bz-sticky-text strong { font-weight: 900; letter-spacing: .2px; }
.bz-sticky-cta {
  display: inline-flex; align-items: center; gap: 2px; padding: 4px 10px 4px 12px; border-radius: 999px;
  background: #041225; color: var(--bz-cyan-soft); font-weight: 800; font-size: .8rem; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(4,18,37,0.35); transition: transform .18s;
}
.bz-sticky-link:hover .bz-sticky-cta { transform: translateX(2px); }
.bz-sticky-pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #041225; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(4,18,37,0.5); animation: bzPulse 1.8s ease-out infinite;
}
@keyframes bzPulse { 0% { box-shadow: 0 0 0 0 rgba(4,18,37,0.55); } 100% { box-shadow: 0 0 0 10px rgba(4,18,37,0); } }
@keyframes bzBarShift { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }

/* Nav içi Telegram + CTA */
.nl-link-tg { color: var(--bz-tg) !important; }
.nl-link-tg:hover { color: #fff !important; }
.bz-nav-tg {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(42,171,238,0.15); border: 1px solid rgba(42,171,238,0.4); color: var(--bz-tg) !important; font-size: 1.2rem;
}
.bz-nav-link-cta { color: var(--bz-cyan) !important; font-weight: 700; }

/* ---------- HERO ---------- */
.bz-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 26px 0 30px;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(34,211,238,0.16), transparent 60%),
    radial-gradient(700px 380px at 90% 100%, rgba(56,189,248,0.14), transparent 60%),
    linear-gradient(180deg, var(--bz-navy-800) 0%, var(--bz-navy-900) 100%);
  border-bottom: 1px solid var(--bz-line);
}
.bz-hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(rgba(34,211,238,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.10) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
}
.bz-hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: .55; animation: bzGlow 7s ease-in-out infinite; }
.bz-hero-glow-1 { width: 320px; height: 320px; left: -80px; top: -80px; background: rgba(34,211,238,0.35); }
.bz-hero-glow-2 { width: 380px; height: 380px; right: -120px; bottom: -140px; background: rgba(56,189,248,0.28); animation-delay: -3.5s; }
@keyframes bzGlow { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(14px,-10px) scale(1.08); } }

.bz-hero-inner { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
.bz-hero-visual {
  position: relative; display: block; border-radius: var(--bz-radius-lg); overflow: hidden; order: -1;
  box-shadow: var(--bz-glow), var(--bz-shadow); border: 1px solid var(--bz-line-strong);
  transition: transform .3s ease, box-shadow .3s ease; animation: bzFloat 6s ease-in-out infinite;
}
.bz-hero-visual:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 0 0 1px rgba(34,211,238,0.5), 0 18px 60px rgba(34,211,238,0.3); }
.bz-hero-visual::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.14) 45%, transparent 60%);
  transform: translateX(-120%); animation: bzShine 5s ease-in-out infinite;
}
@keyframes bzShine { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes bzFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
.bz-hero-img { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 740; object-fit: cover; }
.bz-hero-ribbon {
  position: absolute; top: 12px; left: 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(4,18,37,0.85); color: var(--bz-cyan-soft); font-weight: 900; font-size: .8rem; letter-spacing: .5px;
  border: 1px solid var(--bz-line-strong); backdrop-filter: blur(6px);
}
.bz-hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  background: rgba(34,211,238,0.1); border: 1px solid var(--bz-line-strong); color: var(--bz-cyan-soft);
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px;
}
.bz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bz-cyan); box-shadow: 0 0 0 0 rgba(34,211,238,0.6); animation: bzDot 1.6s ease-out infinite; }
@keyframes bzDot { 0% { box-shadow: 0 0 0 0 rgba(34,211,238,0.6); } 100% { box-shadow: 0 0 0 9px rgba(34,211,238,0); } }
.bz-hero-h1 { font-size: 1.55rem; font-weight: 900; line-height: 1.15; color: var(--bz-ink); margin: 0 0 8px; letter-spacing: -.3px; }
.bz-hero-title { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 10px; font-size: 1.15rem; font-weight: 800; color: var(--bz-ink); margin: 0 0 10px; line-height: 1.25; }
.bz-hero-title-lg { font-size: 1.5rem; font-weight: 900; }
.bz-hero-title-accent {
  background: linear-gradient(90deg, var(--bz-cyan-soft), var(--bz-cyan), var(--bz-electric));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.bz-hero-logo { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; box-shadow: 0 0 0 2px rgba(34,211,238,0.35); }
.bz-hero-desc { color: var(--bz-ink-2); font-size: .95rem; line-height: 1.55; margin: 0 0 14px; }
.bz-hero-chips { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.bz-hero-chips li {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 10px;
  background: rgba(8,23,55,0.7); border: 1px solid var(--bz-line); color: var(--bz-ink); font-size: .8rem; font-weight: 600;
}
.bz-hero-chips li i { color: var(--bz-cyan); }
.bz-hero-actions { display: flex; flex-direction: column; gap: 10px; }
.bz-hero-actions .bz-btn { width: 100%; }
.bz-hero-tg { margin: 12px 0 0; font-size: .86rem; }
.bz-hero-tg a { color: var(--bz-tg); font-weight: 600; }
.bz-hero-tg a:hover { color: #fff; }

/* ---------- Bölümler ---------- */
.bz-section { padding: 36px 0; position: relative; }
.bz-section-tight { padding: 18px 0; }
.bz-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.bz-section-head-center { justify-content: center; text-align: center; }
.bz-kicker { display: inline-flex; align-items: center; gap: 6px; color: var(--bz-cyan); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; margin: 0 0 6px; }
.bz-kicker img { border-radius: 5px; }
.bz-section-title { font-size: 1.35rem; font-weight: 900; color: var(--bz-ink); margin: 0 0 6px; letter-spacing: -.2px; line-height: 1.2; }
.bz-section-sub { color: var(--bz-ink-2); font-size: .9rem; margin: 0; line-height: 1.5; }
.bz-count-pill { flex-shrink: 0; padding: 6px 12px; border-radius: 999px; background: rgba(34,211,238,0.1); border: 1px solid var(--bz-line-strong); color: var(--bz-cyan-soft); font-size: .78rem; font-weight: 800; }
.bz-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

/* ---------- Betzula kampanya kartı ---------- */
.bz-card {
  display: flex; flex-direction: column; overflow: hidden; position: relative;
  background: linear-gradient(160deg, rgba(13,30,70,0.95), rgba(8,23,55,0.95));
  border: 1px solid var(--bz-line-strong); border-radius: var(--bz-radius);
  box-shadow: 0 6px 24px rgba(2,8,24,0.45); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.bz-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(500px 160px at 50% 0%, rgba(34,211,238,0.14), transparent 70%); opacity: 0; transition: opacity .3s;
}
.bz-card:hover { transform: translateY(-5px); border-color: var(--bz-cyan); box-shadow: var(--bz-glow), 0 18px 46px rgba(2,8,24,0.6); }
.bz-card:hover::before { opacity: 1; }
.bz-card-media { position: relative; display: block; overflow: hidden; background: #061024; }
.bz-card-media img { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 740; object-fit: cover; transition: transform .5s ease; }
.bz-card:hover .bz-card-media img { transform: scale(1.04); }
.bz-card-amount {
  position: absolute; left: 10px; bottom: 10px; padding: 6px 12px; border-radius: 10px;
  background: rgba(4,18,37,0.88); color: var(--bz-cyan-soft); font-weight: 900; font-size: .9rem;
  border: 1px solid var(--bz-line-strong); backdrop-filter: blur(6px);
}
.bz-card-body { padding: 14px 14px 6px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bz-card-brand { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 8px; font-weight: 800; color: var(--bz-ink); font-size: .9rem; }
.bz-card-brand img { border-radius: 6px; }
.bz-card-type { margin-left: auto; font-size: .72rem; font-weight: 700; color: var(--bz-cyan); background: rgba(34,211,238,0.1); border: 1px solid var(--bz-line); border-radius: 999px; padding: 3px 9px; }
.bz-card-note { color: var(--bz-ink-2); font-size: .84rem; line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bz-card-wager { font-size: .8rem; color: var(--bz-ink-3); }
.bz-card-wager strong { color: var(--bz-ink); }
.bz-card-footer { padding: 10px 14px 14px; }

/* ---------- Dış marka kartı (pasif, linksiz) ---------- */
.dis-marka-card {
  display: flex; flex-direction: column; gap: 6px; padding: 14px;
  background: rgba(8,23,55,0.55); border: 1px solid rgba(125,146,187,0.18); border-radius: var(--bz-radius);
  color: var(--bz-ink-2); transition: border-color .25s, background .25s, transform .25s; cursor: default; user-select: text;
}
.dis-marka-card:hover { border-color: rgba(125,146,187,0.4); background: rgba(8,23,55,0.75); transform: translateY(-2px); }
.dis-marka-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dis-marka-logo { width: 120px; height: 48px; object-fit: contain; border-radius: 8px; background: rgba(4,18,37,0.6); padding: 4px 8px; filter: saturate(.85); }
.dis-marka-tag { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 4px 8px; border-radius: 999px; white-space: nowrap; }
.dis-marka-tag.is-deneme { color: var(--bz-cyan-soft); background: rgba(34,211,238,0.1); border: 1px solid var(--bz-line); }
.dis-marka-tag.is-yatirim { color: #cbd5e1; background: rgba(148,163,184,0.12); border: 1px solid rgba(148,163,184,0.3); }
.dis-marka-name { font-size: 1rem; font-weight: 800; color: var(--bz-ink); margin: 4px 0 0; }
.dis-marka-amount { font-size: 1.15rem; font-weight: 900; color: var(--bz-ink); }
.dis-marka-type { font-size: .8rem; font-weight: 600; color: var(--bz-ink-2); }
.dis-marka-meta { display: flex; gap: 6px; margin: 0; font-size: .78rem; }
.dis-marka-meta dt { color: var(--bz-ink-3); font-weight: 600; }
.dis-marka-meta dt::after { content: ':'; }
.dis-marka-meta dd { margin: 0; color: var(--bz-ink); font-weight: 600; }
.dis-marka-note { font-size: .8rem; line-height: 1.5; color: var(--bz-ink-3); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.dis-marka-foot { margin-top: auto; padding-top: 8px; border-top: 1px dashed rgba(125,146,187,0.2); font-size: .72rem; color: var(--bz-ink-3); display: flex; align-items: center; gap: 6px; }

/* ---------- Kategori grid ---------- */
.bz-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.bz-cat-card {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px;
  background: rgba(8,23,55,0.6); border: 1px solid var(--bz-line); color: var(--bz-ink); text-decoration: none; font-weight: 700; font-size: .88rem;
  transition: border-color .2s, transform .2s, background .2s;
}
.bz-cat-card:hover { border-color: var(--bz-cyan); background: rgba(34,211,238,0.08); color: #fff; transform: translateY(-2px); }
.bz-cat-card .bi { margin-left: auto; color: var(--bz-cyan); }
.bz-cat-emoji { font-size: 1.2rem; }

/* ---------- Inline CTA / Featured site ---------- */
.bz-inline-cta, .bz-featured-site {
  display: flex; flex-direction: column; gap: 14px; padding: 18px;
  background: linear-gradient(135deg, rgba(34,211,238,0.14), rgba(8,23,55,0.9) 60%);
  border: 1px solid var(--bz-line-strong); border-radius: var(--bz-radius-lg); box-shadow: var(--bz-shadow); position: relative; overflow: hidden;
}
.bz-inline-cta::after, .bz-featured-site::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.28), transparent 65%); pointer-events: none;
}
.bz-inline-cta-logo, .bz-featured-logo { width: 56px; height: 56px; border-radius: 14px; box-shadow: 0 0 0 2px rgba(34,211,238,0.35); }
.bz-inline-cta-text, .bz-featured-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.bz-inline-cta-text strong, .bz-featured-name { color: var(--bz-ink); font-size: 1.05rem; font-weight: 900; }
.bz-inline-cta-text span, .bz-featured-offer { color: var(--bz-ink-2); font-size: .88rem; }
.bz-featured-wager { color: var(--bz-ink-3); font-size: .8rem; }
.bz-featured-rank { position: absolute; top: 12px; right: 14px; font-weight: 900; color: var(--bz-cyan); font-size: 1rem; letter-spacing: .5px; }
.bz-featured-actions { display: flex; flex-direction: column; gap: 8px; }
.bz-verified { display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 800; color: var(--bz-cyan-soft); background: rgba(34,211,238,0.12); border: 1px solid var(--bz-line-strong); border-radius: 999px; padding: 3px 9px; vertical-align: middle; }
.bz-verified-icon { color: var(--bz-cyan); font-size: .85em; }
.bz-site-logo-box { width: 72px; height: 72px; border-radius: 16px; background: rgba(34,211,238,0.08); border: 1px solid var(--bz-line-strong); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; padding: 6px; }
.bz-site-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.bz-site-logo-box-wide { width: 160px; height: 72px; }

/* ---------- Dış marka detay ---------- */
.dis-marka-detail { padding: 18px; background: rgba(8,23,55,0.6); border: 1px solid rgba(125,146,187,0.2); border-radius: var(--bz-radius); }
.dis-marka-detail-list { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 12px 0; }
.dis-marka-detail-list > div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 10px; background: rgba(4,18,37,0.5); border: 1px solid rgba(125,146,187,0.14); }
.dis-marka-detail-list dt { color: var(--bz-ink-3); font-weight: 600; font-size: .84rem; }
.dis-marka-detail-list dd { margin: 0; color: var(--bz-ink); font-weight: 700; font-size: .88rem; text-align: right; }
.dis-marka-detail-note { color: var(--bz-ink-2); line-height: 1.6; }
.dis-marka-detail-disclaimer { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border-radius: 10px; background: rgba(148,163,184,0.08); border: 1px dashed rgba(148,163,184,0.3); color: var(--bz-ink-3); font-size: .84rem; line-height: 1.5; }
.dis-marka-detail-disclaimer i { color: var(--bz-cyan); margin-top: 2px; }

/* ---------- Telegram bandı + sabit buton ---------- */
.bz-tg-band { padding: 10px 0 30px; }
.bz-tg-band-inner {
  display: flex; flex-direction: column; gap: 14px; padding: 20px;
  background: linear-gradient(135deg, rgba(42,171,238,0.18), rgba(8,23,55,0.9) 65%);
  border: 1px solid rgba(42,171,238,0.4); border-radius: var(--bz-radius-lg); box-shadow: var(--bz-shadow);
}
.bz-tg-band-icon { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #37b4f0, #1d8fd6); color: #fff; font-size: 1.7rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(42,171,238,0.4); flex-shrink: 0; }
.bz-tg-band-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.bz-tg-band-text strong { color: var(--bz-ink); font-size: 1.02rem; }
.bz-tg-band-text span { color: var(--bz-ink-2); font-size: .88rem; }
.bz-tg-float {
  position: fixed; right: 14px; bottom: calc(76px + env(safe-area-inset-bottom, 0px)); z-index: 9500;
  display: flex; align-items: center; gap: 8px; height: 52px; padding: 0 14px 0 0; border-radius: 999px;
  background: linear-gradient(135deg, #37b4f0, #1d8fd6); color: #fff !important; text-decoration: none; font-weight: 800; font-size: .86rem;
  box-shadow: 0 10px 28px rgba(42,171,238,0.45), 0 0 0 0 rgba(42,171,238,0.5); animation: bzTgPulse 2.4s ease-out infinite;
  transition: transform .2s;
}
.bz-tg-float i { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.bz-tg-float-label { display: none; }
.bz-tg-float:hover { transform: translateY(-3px) scale(1.03); color: #fff; }
@keyframes bzTgPulse { 0% { box-shadow: 0 10px 28px rgba(42,171,238,0.45), 0 0 0 0 rgba(42,171,238,0.55); } 100% { box-shadow: 0 10px 28px rgba(42,171,238,0.45), 0 0 0 16px rgba(42,171,238,0); } }

/* ---------- Popup ---------- */
.promo-popup-overlay { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(3,8,22,0.8); backdrop-filter: blur(6px); }
.promo-popup-overlay.active { display: flex; animation: bzFadeIn .3s ease; }
.promo-popup-box {
  position: relative; width: 100%; max-width: 380px; max-height: calc(100vh - 32px); overflow: auto;
  background: linear-gradient(170deg, #0d2258, #071535); border: 1px solid var(--bz-line-strong); border-radius: 20px;
  box-shadow: var(--bz-glow), 0 30px 80px rgba(0,0,0,0.6); animation: bzSlideUp .38s cubic-bezier(.22,.61,.36,1);
}
.promo-popup-link { display: block; }
.promo-popup-img { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 740; object-fit: cover; border-radius: 20px 20px 0 0; }
.promo-popup-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.promo-popup-kicker { display: flex; align-items: center; gap: 6px; margin: 0; font-size: .8rem; font-weight: 800; color: var(--bz-cyan); text-transform: uppercase; letter-spacing: .6px; }
.promo-popup-kicker img { border-radius: 5px; }
.promo-popup-title { font-size: 1.15rem; font-weight: 900; color: var(--bz-ink); margin: 0; line-height: 1.2; }
.promo-popup-desc { margin: 0 0 6px; color: var(--bz-ink-2); font-size: .86rem; }
.promo-popup-tg { text-align: center; font-size: .84rem; color: var(--bz-tg); font-weight: 600; margin-top: 2px; }
.promo-popup-close {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(4,18,37,0.85); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .95rem; transition: transform .15s, background .2s;
}
.promo-popup-close:hover { transform: scale(1.08); background: var(--bz-cyan); color: #041225; }
@keyframes bzFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bzSlideUp { from { transform: translateY(30px) scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- SEO içerik ---------- */
.bz-seo-content { max-width: 900px; margin: 0 auto; }

/* ---------- Tablet ---------- */
@media (min-width: 576px) {
  .bz-grid-2, .bz-grid-3, .bz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bz-hero-actions { flex-direction: row; }
  .bz-hero-actions .bz-btn { width: auto; }
  .bz-featured-actions { flex-direction: row; }
  .bz-sticky-link { font-size: .92rem; }
  .bz-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .dis-marka-detail-list { grid-template-columns: 1fr 1fr; }
}
/* ---------- Desktop ---------- */
@media (min-width: 992px) {
  :root { --bz-bar-h: 42px; }
  .bz-hero { padding: 44px 0 48px; }
  .bz-hero-inner { grid-template-columns: 1.05fr .95fr; gap: 40px; }
  .bz-hero-visual { order: 0; }
  .bz-hero-h1 { font-size: 2.2rem; }
  .bz-hero-title { font-size: 1.35rem; }
  .bz-hero-title-lg { font-size: 1.9rem; }
  .bz-hero-logo { width: 44px; height: 44px; border-radius: 11px; }
  .bz-hero-desc { font-size: 1.02rem; }
  .bz-section { padding: 52px 0; }
  .bz-section-title { font-size: 1.75rem; }
  .bz-grid { gap: 20px; }
  .bz-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .bz-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .bz-inline-cta, .bz-featured-site, .bz-tg-band-inner { flex-direction: row; align-items: center; padding: 24px 28px; }
  .bz-tg-float { right: 22px; bottom: 22px; padding-right: 18px; }
  .bz-tg-float-label { display: inline; }
  .promo-popup-box { max-width: 420px; }
}
@media (min-width: 1200px) {
  .bz-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .bz-hero-h1 { font-size: 2.5rem; }
}

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  .bz-sticky-bar, .bz-hero-glow, .bz-hero-visual, .bz-hero-visual::after, .bz-sticky-pulse, .bz-dot, .bz-tg-float,
  .promo-popup-overlay.active, .promo-popup-box { animation: none !important; }
  .bz-card, .bz-btn, .bz-cat-card, .dis-marka-card, .bz-hero-visual { transition: none !important; }
}

/* ---- Dış marka bilgi sayfaları dizini (iç link, kartlar linksiz) ---- */
.dis-marka-index{margin-top:1.75rem;padding:1rem 1.15rem;border:1px solid var(--bz-line);border-radius:var(--bz-radius);background:rgba(8,23,55,0.55)}
.dis-marka-index-title{margin:0 0 .6rem;font-size:.86rem;font-weight:700;color:var(--bz-cyan-soft);display:flex;align-items:center;gap:.45rem;flex-wrap:wrap}
.dis-marka-index-title span{font-weight:500;color:var(--bz-ink-3)}
.dis-marka-index-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.4rem .5rem}
.dis-marka-index-list a{display:inline-block;padding:.28rem .65rem;font-size:.8rem;color:var(--bz-ink-2);border:1px solid var(--bz-line);border-radius:999px;text-decoration:none;transition:border-color .2s,color .2s,background .2s}
.dis-marka-index-list a:hover,.dis-marka-index-list a:focus-visible{color:var(--bz-cyan);border-color:var(--bz-line-strong);background:rgba(34,211,238,0.08)}
