/* =====================================================
   BonusolojiNET — Neon Green Dark Premium Theme
   Fonts: Space Grotesk (headings) + DM Sans (body) + JetBrains Mono (numbers)
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  --bg-void:        #020805;
  --bg-deep:        #030b07;
  --bg-dark:        #050f08;
  --bg-card:        #081309;
  --bg-card-hover:  #0c1d10;
  --bg-input:       #060e08;

  --neon-bright:    #00ff6a;
  --neon-primary:   #00e05a;
  --neon-soft:      #00b347;
  --neon-muted:     #008035;
  --neon-dim:       rgba(0, 224, 90, 0.07);
  --neon-glow:      rgba(0, 255, 106, 0.28);
  --neon-glow-sm:   rgba(0, 255, 106, 0.14);

  --text-bright:    #f0fff6;
  --text-primary:   #d4edd9;
  --text-secondary: #7aab85;
  --text-muted:     #3d6646;

  --border-dark:    rgba(0, 224, 90, 0.07);
  --border-mid:     rgba(0, 224, 90, 0.15);
  --border-bright:  rgba(0, 224, 90, 0.35);
  --border-solid:   #0f1f12;

  --grad-neon:      linear-gradient(135deg, #00ff6a 0%, #00c94e 60%, #009940 100%);
  --grad-neon-h:    linear-gradient(90deg, #00ff6a 0%, #00b347 100%);
  --grad-card:      linear-gradient(145deg, rgba(0,255,106,0.04) 0%, rgba(0,0,0,0) 100%);

  --shadow-card:    0 4px 32px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.025);
  --shadow-hover:   0 12px 56px rgba(0,0,0,0.65), 0 0 32px rgba(0,224,90,0.07);
  --shadow-neon:    0 0 20px rgba(0,255,106,0.25), 0 0 60px rgba(0,255,106,0.07);

  --navbar-h:       68px;
  --r-sm:           8px;
  --r-md:           14px;
  --r-lg:           20px;
  --r-xl:           28px;
  --max-w:          1280px;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--neon-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--neon-bright); }
::selection { background: rgba(0,255,106,.18); color: var(--neon-bright); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--neon-muted); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-soft); }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-bright);
}
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* =====================================================
   KEYFRAMES
   ===================================================== */
@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes glow     { 0%,100%{opacity:.7} 50%{opacity:1} }
@keyframes blink    { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes gradShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes pulse    { 0%,100%{box-shadow:0 0 0 0 rgba(0,255,106,.3)} 70%{box-shadow:0 0 0 10px rgba(0,255,106,0)} }
@keyframes ripple   { 0%{transform:scale(0);opacity:.5} 100%{transform:scale(3);opacity:0} }
@keyframes scanLine { from{top:-5%} to{top:105%} }
@keyframes borderGlow { 0%,100%{border-color:var(--border-dark)} 50%{border-color:var(--border-bright)} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }
.reveal-d6 { transition-delay: .48s; }

/* =====================================================
   BACKGROUND LAYERS
   ===================================================== */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,224,90,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,224,90,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 30%, transparent 80%);
}
.bg-radial {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 120%; height: 65vh; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(0,224,90,.08) 0%, transparent 70%);
}
#particles-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.site-navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--navbar-h); z-index: 1000;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-navbar.scrolled {
  background: rgba(3,11,7,.94);
  border-bottom-color: var(--border-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 28px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--text-bright); text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--grad-neon);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #000; font-weight: 900;
  box-shadow: 0 0 16px rgba(0,255,106,.4);
  transition: box-shadow .3s;
  position: relative; overflow: hidden;
}
.nav-logo-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.3) 0%, transparent 60%);
}
.nav-logo:hover .nav-logo-mark { box-shadow: 0 0 28px rgba(0,255,106,.65); }
.nav-logo-name { color: var(--text-bright); letter-spacing: -.4px; }
.nav-logo-dot { color: var(--neon-primary); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.nav-link {
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  transition: all .2s; position: relative; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--text-bright); background: rgba(255,255,255,.04); }
.nav-link.active {
  color: var(--neon-primary);
  background: var(--neon-dim);
}
.nav-link.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--neon-primary);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--neon-primary);
}
.nav-link i { font-size: .95rem; }

/* Hamburger */
.nav-toggler {
  display: none; margin-left: auto;
  background: transparent; cursor: pointer;
  border: 1px solid var(--border-mid); border-radius: var(--r-sm);
  padding: 8px 10px; color: var(--text-secondary); font-size: 18px;
  transition: all .2s;
}
.nav-toggler:hover { border-color: var(--neon-primary); color: var(--neon-primary); }

/* Mobile drawer */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: var(--navbar-h); left: 0; right: 0;
  background: rgba(3,11,7,.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 20px 20px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px; border-radius: var(--r-sm);
  font-size: .95rem; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  transition: all .2s; display: flex; align-items: center; gap: 10px;
}
.mobile-link:hover, .mobile-link.active {
  color: var(--neon-primary); background: var(--neon-dim);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.main-wrapper { position: relative; z-index: 1; min-height: 100vh; }
.page-content { padding-top: var(--navbar-h); }
.container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.section { padding: 84px 0; position: relative; z-index: 1; }
.section-alt {
  background: rgba(5,12,7,.7);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-h));
  display: flex; align-items: center;
  overflow: hidden; padding: 80px 0 56px;
}
.hero-bg-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 140%; height: 100%;
  background: radial-gradient(ellipse 55% 50% at 50% 0%, rgba(0,255,106,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px; border-radius: 100px;
  background: var(--neon-dim); border: 1px solid var(--border-mid);
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--neon-primary); margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon-bright);
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--neon-bright);
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 800; letter-spacing: -.015em; line-height: 1.12;
  margin-bottom: 22px;
  animation: fadeUp .6s ease .1s both;
}
.title-line-white { display: block; color: var(--text-bright); }
.title-line-neon {
  display: block;
  background: var(--grad-neon-h);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .6s ease .1s both, gradShift 8s ease infinite;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-secondary); max-width: 560px; line-height: 1.72;
  margin-bottom: 36px;
  animation: fadeUp .6s ease .2s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .6s ease .3s both;
}
.hero-stats-row {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 44px;
  border-top: 1px solid var(--border-dark);
  animation: fadeUp .8s ease .55s both;
}
.hero-stat-item { display: flex; flex-direction: column; gap: 4px; }
.hstat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.1rem; font-weight: 700; line-height: 1;
  color: var(--neon-bright);
  text-shadow: 0 0 22px rgba(0,255,106,.4);
}
.hstat-label {
  font-size: .76rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .09em;
}
.hstat-divider { width: 1px; height: 42px; background: var(--border-dark); }

/* Floating card decoration */
.hero-deco {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 42%; max-width: 520px; padding: 24px; pointer-events: none;
  animation: fadeIn 1s ease .7s both;
}
.deco-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl); padding: 22px 26px;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
  position: relative; overflow: hidden;
}
.deco-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-neon);
}
.deco-card-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.deco-logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--neon-dim); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.deco-site { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .95rem; }
.deco-sub { font-size: .78rem; color: var(--text-muted); }
.deco-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem; font-weight: 700; color: var(--neon-bright);
  text-shadow: 0 0 20px rgba(0,255,106,.35);
  margin-bottom: 4px; line-height: 1;
}
.deco-amount-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 14px; }
.deco-bar {
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--neon-primary) 70%, rgba(0,224,90,.2) 100%);
  box-shadow: 0 0 8px rgba(0,255,106,.3); margin-bottom: 6px;
}
.deco-bar-label { font-size: .72rem; color: var(--text-muted); display: flex; justify-content: space-between; }
.deco-shadow1, .deco-shadow2 {
  position: absolute; left: 12px; right: 12px; border-radius: var(--r-xl);
  border: 1px solid var(--border-dark);
}
.deco-shadow1 { bottom: -10px; height: 80%; background: rgba(8,19,9,.6); z-index: -1; }
.deco-shadow2 { bottom: -20px; height: 75%; background: rgba(8,19,9,.35); z-index: -2; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all .25s ease; text-decoration: none; border: none;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-neon {
  background: var(--grad-neon); color: #000;
  box-shadow: 0 0 18px rgba(0,255,106,.22);
}
.btn-neon:hover {
  box-shadow: 0 0 34px rgba(0,255,106,.45), 0 4px 20px rgba(0,224,90,.2);
  transform: translateY(-2px); color: #000;
}
.btn-outline {
  background: transparent; color: var(--neon-primary);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  background: var(--neon-dim); border-color: var(--neon-bright);
  color: var(--neon-bright); box-shadow: 0 0 14px rgba(0,255,106,.1);
}
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text-secondary);
  border: 1px solid var(--border-dark);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--text-primary); }
.btn-sm  { padding: 7px 14px; font-size: .82rem; }
.btn-lg  { padding: 14px 30px; font-size: 1rem; border-radius: 10px; }

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--neon-primary); margin-bottom: 10px;
}
.section-eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: var(--neon-primary); border-radius: 2px;
  box-shadow: 0 0 6px var(--neon-primary);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800; letter-spacing: -.01em; color: var(--text-bright);
  margin-bottom: 12px; line-height: 1.2;
}
.section-desc {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 520px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header-flex {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px;
  margin-bottom: 48px; flex-wrap: wrap;
}

/* =====================================================
   BONUS CARD
   ===================================================== */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; display: flex; flex-direction: column; height: 100%;
}
.bonus-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--neon-dim); opacity: 0;
  transition: opacity .35s; pointer-events: none; border-radius: var(--r-lg);
}
.bonus-card:hover { border-color: var(--border-mid); transform: translateY(-7px); box-shadow: var(--shadow-hover); }
.bonus-card:hover::before { opacity: 1; }

.bonus-img-wrap {
  position: relative; height: 170px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card-hover));
  flex-shrink: 0;
}
.bonus-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bonus-card:hover .bonus-img-wrap img { transform: scale(1.07); }
.bonus-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--neon-muted); opacity: .25;
}

.bonus-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 11px; border-radius: 100px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; z-index: 2;
}
.badge-hot  { background: rgba(255,55,55,.85); color: #fff; }
.badge-new  { background: var(--neon-primary); color: #000; }
.badge-excl { background: rgba(255,195,0,.9);  color: #000; }
.badge-fs   { background: rgba(100,120,255,.85); color: #fff; }

.bonus-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.bonus-site-tag {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--neon-primary); margin-bottom: 7px;
}
.bonus-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.02rem; font-weight: 700;
  color: var(--text-bright); margin-bottom: 10px; line-height: 1.3;
}
.bonus-amount {
  font-family: 'JetBrains Mono', monospace; font-size: 1.7rem; font-weight: 700;
  color: var(--neon-bright); text-shadow: 0 0 18px rgba(0,255,106,.3);
  line-height: 1; margin-bottom: 3px;
}
.bonus-amount-note { font-size: .78rem; color: var(--text-muted); margin-bottom: 14px; }
.bonus-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.chip {
  padding: 3px 9px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-dark);
  font-size: .7rem; color: var(--text-secondary);
}
.bonus-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }

/* =====================================================
   SITE CARD
   ===================================================== */
.site-card {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 22px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.site-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-neon); opacity: 0; transition: opacity .3s;
}
.site-card:hover { border-color: var(--border-mid); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.site-card:hover::after { opacity: 1; }

.site-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.site-logo-box {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: var(--neon-dim); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.site-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.site-logo-letter {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 800;
  color: var(--neon-primary);
}
.site-info { flex: 1; min-width: 0; }
.site-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--text-bright); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-type { font-size: .76rem; color: var(--text-muted); margin-top: 2px; }
.site-score {
  display: flex; align-items: center; gap: 4px;
  font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 700;
  color: var(--neon-bright);
}
.site-score i { font-size: .75rem; }

.site-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 14px 0; margin-bottom: 14px;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.sstat { text-align: center; }
.sstat-val {
  font-family: 'JetBrains Mono', monospace; font-size: .9rem; font-weight: 700;
  color: var(--text-bright); display: block;
}
.sstat-lbl { font-size: .66rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* =====================================================
   BLOG CARD
   ===================================================== */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .3s ease; display: flex; flex-direction: column; height: 100%;
}
.blog-card:hover { border-color: var(--border-mid); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-img {
  height: 188px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card-hover));
  position: relative;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--neon-muted); opacity: .25;
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-cat {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--neon-primary); background: var(--neon-dim);
  padding: 3px 10px; border-radius: 100px; border: 1px solid var(--border-mid);
}
.blog-date { font-size: .76rem; color: var(--text-muted); }
.blog-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.07rem; font-weight: 700;
  color: var(--text-bright); line-height: 1.35; margin-bottom: 9px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-excerpt {
  font-size: .875rem; color: var(--text-secondary); line-height: 1.65; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-foot { padding: 14px 22px; border-top: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: space-between; }
.blog-read-more { font-size: .83rem; font-weight: 600; color: var(--neon-primary); display: flex; align-items: center; gap: 5px; }
.blog-read-more i { font-size: .75rem; transition: transform .2s; }
.blog-card:hover .blog-read-more i { transform: translateX(3px); }

/* =====================================================
   CATEGORY CARD
   ===================================================== */
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 30px 22px;
  text-align: center; transition: all .3s ease;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.cat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: var(--neon-dim); opacity: 0; transition: opacity .3s; pointer-events: none;
}
.cat-card:hover { border-color: var(--border-bright); transform: translateY(-7px); box-shadow: 0 18px 55px rgba(0,0,0,.55), 0 0 32px rgba(0,224,90,.08); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: var(--neon-dim); border: 1px solid var(--border-mid);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: var(--neon-primary); transition: all .3s;
  position: relative; z-index: 1;
}
.cat-card:hover .cat-icon {
  background: rgba(0,224,90,.14); border-color: var(--neon-primary);
  box-shadow: 0 0 22px rgba(0,255,106,.22); transform: scale(1.1);
}
.cat-name { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 5px; }
.cat-count { font-family: 'JetBrains Mono', monospace; font-size: .78rem; color: var(--text-muted); }
.cat-card--active { border-color: var(--border-bright); box-shadow: 0 0 0 2px var(--neon-primary), var(--shadow-hover); }
.cat-card--active::before { opacity: 1; }
.cat-card--active .cat-icon { background: rgba(0,224,90,.14); border-color: var(--neon-primary); box-shadow: 0 0 22px rgba(0,255,106,.22); }

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header { padding: 60px 0 44px; position: relative; overflow: hidden; }
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
.page-header-glow {
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 220%;
  background: radial-gradient(ellipse, rgba(0,224,90,.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.01em; line-height: 1.18; color: var(--text-bright); margin-bottom: 10px; }
.page-desc { font-size: 1rem; color: var(--text-secondary); max-width: 500px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--neon-primary); }

/* =====================================================
   FILTER BAR
   ===================================================== */
.filter-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 6px 15px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border-dark); background: transparent;
  color: var(--text-secondary); transition: all .2s;
}
.filter-btn:hover { border-color: var(--border-mid); color: var(--text-primary); }
.filter-btn.active { background: var(--neon-dim); border-color: var(--border-bright); color: var(--neon-primary); }

.search-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; background: var(--bg-card);
  border: 1px solid var(--border-dark); border-radius: var(--r-md);
  transition: border-color .2s; margin-bottom: 28px;
}
.search-wrap:focus-within { border-color: var(--border-mid); box-shadow: 0 0 0 3px rgba(0,224,90,.05); }
.search-wrap i { color: var(--text-muted); }
.search-input { background: transparent; border: none; outline: none; color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-size: .9rem; width: 100%; }
.search-input::placeholder { color: var(--text-muted); }

/* =====================================================
   STAT BAND
   ===================================================== */
.stat-band { padding: 56px 0; position: relative; z-index: 1; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-dark);
  border: 1px solid var(--border-dark); border-radius: var(--r-lg); overflow: hidden;
}
.stat-box {
  background: var(--bg-card); padding: 30px 22px; text-align: center;
  position: relative; overflow: hidden;
}
.stat-box::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; background: var(--neon-primary);
  box-shadow: 0 0 10px var(--neon-primary);
}
.stat-num {
  font-family: 'JetBrains Mono', monospace; font-size: 2.4rem; font-weight: 700;
  color: var(--neon-bright); display: block; line-height: 1; margin-bottom: 7px;
  text-shadow: 0 0 22px rgba(0,255,106,.3);
}
.stat-lbl { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* =====================================================
   NEON DIVIDER
   ===================================================== */
.neon-hr {
  border: none; height: 1px; margin: 0;
  background: linear-gradient(90deg, transparent, var(--neon-primary), transparent);
  opacity: .2;
}

/* =====================================================
   TAGS
   ===================================================== */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 11px; border-radius: 100px;
  font-size: .72rem; font-weight: 600; border: 1px solid;
}
.tag-green { color: var(--neon-primary); background: var(--neon-dim); border-color: var(--border-mid); }
.tag-yellow { color: #f5c842; background: rgba(245,200,66,.07); border-color: rgba(245,200,66,.2); }
.tag-red    { color: #ff4d4d; background: rgba(255,77,77,.07); border-color: rgba(255,77,77,.2); }
.tag-blue   { color: #4da6ff; background: rgba(77,166,255,.07); border-color: rgba(77,166,255,.2); }

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 44px; }
.page-btn {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border-dark); background: transparent;
  color: var(--text-secondary); text-decoration: none; transition: all .2s;
}
.page-btn:hover { border-color: var(--border-mid); color: var(--neon-primary); }
.page-btn.active { background: var(--neon-primary); border-color: var(--neon-primary); color: #000; box-shadow: 0 0 16px rgba(0,255,106,.3); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--bg-deep); border-top: 1px solid var(--border-dark);
  padding: 60px 0 0; position: relative; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; padding-bottom: 48px; }
.footer-logo {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--text-bright); display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; text-decoration: none;
}
.footer-logo-mark {
  width: 30px; height: 30px; background: var(--grad-neon); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #000; font-weight: 900;
  box-shadow: 0 0 12px rgba(0,255,106,.3);
}
.footer-tagline { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 22px; max-width: 250px; }
.footer-col-title { font-family: 'Space Grotesk', sans-serif; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-primary); margin-bottom: 18px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-list a { font-size: .86rem; color: var(--text-muted); transition: color .2s; }
.footer-list a:hover { color: var(--neon-primary); }
.footer-bottom {
  border-top: 1px solid var(--border-dark); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .78rem; color: var(--text-muted); }
.footer-18 { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--text-muted); }
.badge-18plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,77,77,.14); border: 1px solid rgba(255,77,77,.28);
  color: #ff4d4d; font-size: .68rem; font-weight: 700;
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state { text-align: center; padding: 72px 20px; }
.empty-icon { font-size: 3.5rem; color: var(--text-muted); margin-bottom: 16px; opacity: .35; }
.empty-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 7px; }
.empty-desc { font-size: .9rem; color: var(--text-muted); }

/* =====================================================
   GRID UTILITIES
   ===================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.text-neon { color: var(--neon-primary) !important; }
.text-neon-bright { color: var(--neon-bright) !important; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-deco { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --navbar-h: 60px; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-toggler { display: flex; }
  .hero { padding: 48px 0 36px; }
  .hero-stats-row { gap: 18px; margin-top: 36px; padding-top: 28px; }
  .hstat-number { font-size: 1.7rem; }
  .hstat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section-header-flex { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .btn-lg { padding: 12px 20px; font-size: .9rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =====================================================
   BONUS DETAIL PAGE
   ===================================================== */
.bonus-detail-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.bonus-detail-sidebar { display: flex; flex-direction: column; gap: 16px; }

.bonus-detail-img-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card-hover));
  border: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.bonus-detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bonus-detail-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--neon-muted); opacity: .2;
}

.bonus-detail-stats {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 20px;
}
.bds-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 8px 0;
}
.bds-row--wrap { flex-wrap: wrap; align-items: flex-start; }
.bds-label {
  font-size: .78rem; color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.bds-value {
  font-size: .88rem; color: var(--text-secondary); font-weight: 600; text-align: right;
}
.bds-amount {
  font-family: 'JetBrains Mono', monospace;
  color: var(--neon-bright);
  text-shadow: 0 0 12px rgba(0,255,106,.3);
  font-size: 1.1rem;
}
.bds-divider {
  height: 1px; background: var(--border-dark); margin: 2px 0;
}

.bonus-detail-cta { display: flex; flex-direction: column; gap: 0; }

/* Main content */
.bonus-detail-content { display: flex; flex-direction: column; gap: 28px; }

.bonus-detail-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--text-bright);
  letter-spacing: -.02em; line-height: 1.2;
  margin: 8px 0 10px;
}
.bonus-detail-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.8rem; font-weight: 700;
  color: var(--neon-bright);
  text-shadow: 0 0 24px rgba(0,255,106,.35);
  line-height: 1; margin-bottom: 8px;
}
.bonus-detail-subtitle {
  font-size: .95rem; color: var(--text-secondary); line-height: 1.6;
  margin: 0;
}

.bonus-detail-desc-block {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 24px 26px;
}
.bonus-detail-desc-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--neon-primary);
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border-dark);
}
.bonus-detail-desc { display: flex; flex-direction: column; gap: 6px; }
.bdl-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--text-bright);
  margin: 10px 0 2px;
}
.bdl-heading:first-child { margin-top: 0; }
.bdl-bullet {
  display: flex; gap: 10px; align-items: baseline;
  font-size: .88rem; color: var(--text-secondary); line-height: 1.6;
}
.bdl-dot {
  color: var(--neon-primary); font-weight: 700;
  flex-shrink: 0; font-size: 1rem; margin-top: 1px;
}
.bdl-text {
  font-size: .88rem; color: var(--text-secondary); line-height: 1.7;
}

.bonus-detail-disclaimer {
  font-size: .78rem; color: var(--text-muted);
  background: rgba(255,195,0,.04);
  border: 1px solid rgba(255,195,0,.12);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.6;
}
.bonus-detail-disclaimer i { color: rgba(255,195,0,.7); flex-shrink: 0; margin-top: 1px; }

/* Responsive */
@media (max-width: 900px) {
  .bonus-detail-grid { grid-template-columns: 1fr; }
  .bonus-detail-img-wrap { height: 200px; }
}
@media (max-width: 480px) {
  .bonus-detail-amount { font-size: 2rem; }
  .bonus-detail-desc-block { padding: 18px; }
}

/* =====================================================
   SITE DETAIL PAGE
   ===================================================== */
.sd-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 160px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card-hover));
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 24px;
}
.sd-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sd-logo-letter {
  font-family: 'Space Grotesk', sans-serif; font-size: 5rem; font-weight: 800;
  color: var(--neon-primary); opacity: .25;
}

.sd-bonus-list { display: flex; flex-direction: column; gap: 4px; }
.sd-bonus-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-dark);
  text-decoration: none;
  transition: all .2s ease;
}
.sd-bonus-item:hover {
  background: var(--neon-dim); border-color: var(--border-mid);
}
.sd-bonus-img {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  overflow: hidden; background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
}
.sd-bonus-img img { width: 100%; height: 100%; object-fit: cover; }
.sd-bonus-info { flex: 1; min-width: 0; }
.sd-bonus-title {
  font-size: .85rem; font-weight: 600; color: var(--text-secondary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sd-bonus-item:hover .sd-bonus-title { color: var(--text-bright); }
.sd-bonus-sub { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ / SSS ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open {
  border-color: var(--neon-muted);
  box-shadow: 0 0 0 1px var(--neon-dim), 0 4px 24px rgba(0,255,106,.05);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; cursor: pointer;
  transition: background .2s;
}
.faq-q:hover { background: rgba(0,255,106,.03); }
.faq-q-text {
  font-family: 'Space Grotesk', sans-serif; font-size: .97rem; font-weight: 600;
  color: var(--text-bright); line-height: 1.4; flex: 1;
}
.faq-q-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--neon-primary); font-size: .8rem;
  transition: transform .3s ease, background .2s, border-color .2s;
}
.faq-item.open .faq-q-icon { transform: rotate(180deg); background: var(--neon-dim); border-color: var(--neon-muted); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-p {
  margin: 0; padding: 0 24px 20px;
  font-size: .9rem; color: var(--text-secondary); line-height: 1.8;
  border-top: 1px solid var(--border-dark); padding-top: 16px;
}
.faq-item.open .faq-body { max-height: 400px; }
