/* BahisKripto.pro — Antrasit + Neon Turkuaz Teması */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg:        #080e1a;
  --bg2:       #0d1526;
  --bg3:       #111e35;
  --card:      rgba(255,255,255,.04);
  --card-hov:  rgba(0,245,196,.06);
  --border:    rgba(255,255,255,.07);
  --border2:   rgba(0,245,196,.25);
  --teal:      #00f5c4;
  --teal2:     #00d4a8;
  --teal-glow: rgba(0,245,196,.15);
  --gold:      #f5a623;
  --red:       #ff4757;
  --green:     #2ed573;
  --text1:     #f0f4ff;
  --text2:     #a8b4cc;
  --text3:     #5a6a85;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.4);
  --shadow-teal: 0 0 30px rgba(0,245,196,.15);
  --font:      'Space Grotesk', sans-serif;
  --font-head: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text1);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animated background grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,196,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,196,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; position: relative; z-index: 1; }

/* ═══════════════════════════════════
   TOPBAR
═══════════════════════════════════ */
.topbar {
  background: rgba(8,14,26,.9);
  border-bottom: 1px solid var(--border);
  padding: .45rem 0;
  font-size: .75rem;
  color: var(--text3);
  backdrop-filter: blur(10px);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar a { color: var(--text3); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--teal); }
.topbar-left { display: flex; gap: 1.25rem; align-items: center; }
.topbar-right { display: flex; gap: .75rem; align-items: center; }
.topbar-badge {
  background: var(--teal-glow);
  border: 1px solid var(--border2);
  color: var(--teal);
  padding: .15rem .6rem;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  background: rgba(8,14,26,.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
}
.navbar .container { display: flex; align-items: center; gap: 2rem; height: 64px; }

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(0,245,196,.3);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text1);
}
.logo-text span { color: var(--teal); }

.nav-links { display: flex; gap: .25rem; align-items: center; flex: 1; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .8rem;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-glow); }
.nav-links a.active { color: var(--teal); background: var(--teal-glow); }

.nav-cta {
  margin-left: auto;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.btn-teal {
  background: var(--teal);
  color: var(--bg);
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn-teal:hover { background: var(--teal2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,245,196,.3); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: all .2s;
}
.btn-outline:hover { background: var(--teal-glow); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all .3s; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,245,196,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal-glow);
  border: 1px solid var(--border2);
  color: var(--teal);
  padding: .35rem .9rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '⚡'; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .accent2 { color: var(--gold); }

.hero-desc {
  color: var(--text2);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}
.hero-stat-label { font-size: .73rem; color: var(--text3); font-weight: 500; }

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-crypto-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.crypto-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text2);
  transition: all .2s;
}
.crypto-chip:hover { border-color: var(--border2); color: var(--teal); background: var(--teal-glow); }
.crypto-chip-icon { font-size: .9rem; }

/* ═══════════════════════════════════
   SECTIONS
═══════════════════════════════════ */
.section { padding: 3rem 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text1);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: var(--teal);
  border-radius: 2px;
}
.section-badge {
  background: var(--teal-glow);
  border: 1px solid var(--border2);
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
}
.section-link {
  color: var(--teal);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* ═══════════════════════════════════
   SITE CARDS
═══════════════════════════════════ */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.site-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
  position: relative;
}
.site-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-glow), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.site-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-teal); }
.site-card:hover::before { opacity: 1; }

.site-card.sponsor { border-color: rgba(245,166,35,.2); }
.site-card.sponsor:hover { border-color: rgba(245,166,35,.5); box-shadow: 0 0 30px rgba(245,166,35,.1); }

.card-top {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1rem .75rem;
  position: relative;
}

.card-logo {
  width: 60px; height: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--bg3);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.card-logo-placeholder {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: var(--teal);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.card-info { flex: 1; min-width: 0; }
.card-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text1);
  margin-bottom: .3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-badges { display: flex; gap: .35rem; flex-wrap: wrap; }
.badge {
  font-size: .62rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 4px;
  letter-spacing: .3px;
}
.badge-gold { background: rgba(245,166,35,.15); color: var(--gold); border: 1px solid rgba(245,166,35,.3); }
.badge-teal { background: var(--teal-glow); color: var(--teal); border: 1px solid var(--border2); }
.badge-new { background: rgba(46,213,115,.15); color: var(--green); border: 1px solid rgba(46,213,115,.3); }
.badge-btc { background: rgba(247,147,26,.12); color: #f7931a; border: 1px solid rgba(247,147,26,.25); }
.badge-usdt { background: rgba(38,161,123,.12); color: #26a17b; border: 1px solid rgba(38,161,123,.25); }

.card-rating {
  font-weight: 700;
  font-size: .82rem;
  color: var(--gold);
  flex-shrink: 0;
}

.card-bonus {
  padding: .65rem 1rem;
  background: rgba(0,245,196,.04);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.card-bonus-amount {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal);
}
.card-bonus-label { font-size: .68rem; color: var(--text3); margin-top: .1rem; }
.card-bonus-type {
  font-size: .72rem;
  color: var(--text2);
  text-align: right;
  max-width: 120px;
  line-height: 1.4;
}

.card-crypto-methods {
  padding: .5rem 1rem;
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.crypto-method-tag {
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 4px;
  background: rgba(0,245,196,.08);
  color: var(--teal);
  border: 1px solid rgba(0,245,196,.15);
}

.card-footer {
  padding: .65rem 1rem .85rem;
  display: flex;
  gap: .4rem;
}
.card-btn {
  flex: 1;
  padding: .6rem;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  font-weight: 700;
  font-size: .82rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.card-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,245,196,.3); }
.card-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .9rem;
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: .78rem;
  border: 1px solid var(--border2);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
  white-space: nowrap;
}
.card-btn-outline:hover { background: var(--teal-glow); }

/* ═══════════════════════════════════
   BANNERLAR
═══════════════════════════════════ */
.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.banner-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .2s;
  cursor: pointer;
  background: var(--bg2);
  aspect-ratio: 728/90;
}
.banner-item:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.banner-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ═══════════════════════════════════
   CRYPTO FILTER BAR
═══════════════════════════════════ */
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.filter-btn {
  padding: .4rem .9rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.filter-btn:hover { border-color: var(--border2); color: var(--teal); background: var(--teal-glow); }
.filter-btn.active { border-color: var(--teal); color: var(--bg); background: var(--teal); }

/* ═══════════════════════════════════
   BLOG GRID
═══════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-teal); }
.blog-img {
  height: 120px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-glow), transparent);
  opacity: .5;
}
.blog-cat-badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: var(--teal);
  color: var(--bg);
  font-size: .62rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  z-index: 1;
}
.blog-body { padding: .9rem; flex: 1; display: flex; flex-direction: column; }
.blog-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text1);
  line-height: 1.4;
  margin-bottom: .4rem;
}
.blog-excerpt { font-size: .78rem; color: var(--text3); line-height: 1.5; flex: 1; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-top: .75rem; }
.blog-read-more { font-size: .73rem; color: var(--teal); font-weight: 600; }

/* ═══════════════════════════════════
   SEO BOX
═══════════════════════════════════ */
.seo-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  border-left: 3px solid var(--teal);
}
.seo-box h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text1);
  margin: 1.5rem 0 .6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.seo-box h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.seo-box h3 { font-size: .92rem; color: var(--teal); margin: 1rem 0 .4rem; }
.seo-box p { color: var(--text2); font-size: .88rem; line-height: 1.8; margin-bottom: .75rem; }
.seo-box ul, .seo-box ol { padding-left: 1.4rem; color: var(--text2); font-size: .88rem; margin-bottom: .75rem; }
.seo-box li { margin-bottom: .35rem; line-height: 1.6; }
.seo-box strong { color: var(--text1); }
.seo-box a { color: var(--teal); }
.seo-box table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .82rem; }
.seo-box th { background: var(--bg3); color: var(--teal); padding: .6rem .8rem; text-align: left; }
.seo-box td { padding: .6rem .8rem; border-bottom: 1px solid var(--border); color: var(--text2); }
.seo-box tr:hover td { background: rgba(255,255,255,.02); }

/* ═══════════════════════════════════
   MODAL
═══════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(0,245,196,.1);
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity:0; transform:scale(.95) translateY(10px); } to { opacity:1; transform:none; } }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text3);
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.modal-close:hover { border-color: var(--border2); color: var(--text1); }
.modal-logo { width: 64px; height: 64px; object-fit: contain; border-radius: 12px; background: var(--bg3); margin-bottom: 1rem; border: 1px solid var(--border); }
.modal-logo-placeholder { width: 64px; height: 64px; background: var(--bg3); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--teal); font-size: 1.2rem; margin-bottom: 1rem; border: 1px solid var(--border); }
.modal-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; color: var(--text1); margin-bottom: .5rem; }
.modal-bonus { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; letter-spacing: -.02em; color: var(--teal); margin: .75rem 0 .25rem; }
.modal-bonus-type { font-size: .82rem; color: var(--text2); margin-bottom: 1.25rem; }
.modal-btn {
  display: block;
  width: 100%;
  padding: .85rem;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  font-weight: 800;
  font-size: .95rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  margin-bottom: .75rem;
  transition: all .2s;
  font-family: var(--font);
}
.modal-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,245,196,.3); }
.modal-warning { font-size: .72rem; color: var(--text3); text-align: center; line-height: 1.5; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; color: var(--text3); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-weight: 700; font-size: .85rem; color: var(--text1); margin-bottom: .85rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul li a { color: var(--text3); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .75rem; color: var(--text3); }
.footer-bottom .age-badge {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: 6px;
}

/* ═══════════════════════════════════
   BREADCRUMB
═══════════════════════════════════ */
.breadcrumb { font-size: .78rem; color: var(--text3); margin-bottom: 1rem; display: flex; gap: .35rem; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--text3); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--teal); }

/* ═══════════════════════════════════
   UTILITY
═══════════════════════════════════ */
.divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { padding: .3rem .75rem; background: var(--card); border: 1px solid var(--border); border-radius: 6px; font-size: .73rem; color: var(--text2); text-decoration: none; transition: all .2s; }
.tag:hover { border-color: var(--border2); color: var(--teal); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: all .2s;
}
.info-card:hover { border-color: var(--border2); }
.info-card-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.info-card-title { font-weight: 700; font-size: .88rem; color: var(--text1); margin-bottom: .3rem; }
.info-card-desc { font-size: .78rem; color: var(--text3); line-height: 1.5; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .sites-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .banners-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(8,14,26,.98); border-bottom: 1px solid var(--border); padding: 1rem; gap: .25rem; backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: clamp(1.5rem, 5vw, 1.9rem); line-height: 1.15; }
  .hero-stats { gap: 1.25rem; }
  .sites-grid { grid-template-columns: 1fr; }
  .card-top { padding: .85rem .85rem .6rem; }
  .card-bonus { padding: .55rem .85rem; }
  .card-footer { padding: .55rem .85rem .75rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .banners-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 .9rem; }
  .hero-stats { justify-content: space-around; }
  .filter-bar { padding: .75rem; }
  .modal { padding: 1.5rem; }
}