/* ===================================================
   AA GAME - aa-game.it.com
   Fresh Design: Modern Gradient / Premium Gaming
   =================================================== */

:root {
  --primary: #6c3bff;
  --primary-light: #8b5cf6;
  --primary-dark: #4f1fe0;
  --accent: #ff6b35;
  --accent2: #00d4aa;
  --gold: #fbbf24;
  --bg: #0b0c1e;
  --bg2: #111228;
  --bg3: #181930;
  --card: #1a1b36;
  --card2: #1e1f3a;
  --border: rgba(108,59,255,0.18);
  --text: #f1f1ff;
  --text-muted: #9395b8;
  --text-dim: #6b6e9e;
  --success: #22c55e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(108,59,255,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 700; }
.highlight { background: linear-gradient(135deg, var(--primary-light), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-orange { color: var(--accent); }
.text-green { color: var(--accent2); }
.text-gold { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,59,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,59,255,0.55); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ff9a5c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.5); }
.btn-outline {
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-ghost { color: var(--text-muted); padding: 14px 20px; }
.btn-ghost:hover { color: var(--text); }
.btn-pulse { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,107,53,0.4); }
  50% { box-shadow: 0 4px 40px rgba(255,107,53,0.7), 0 0 0 8px rgba(255,107,53,0.1); }
}

/* ── Flash Banner ── */
.flash-banner {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent), var(--primary));
  background-size: 300% 100%;
  animation: bannerSlide 6s linear infinite;
  padding: 9px 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
}
@keyframes bannerSlide { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.ticker-wrap { display: flex; gap: 0; }
.ticker-item { white-space: nowrap; padding: 0 10px; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,30,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.navbar-brand img { border-radius: 10px; }
.brand-dot { color: var(--primary-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(108,59,255,0.12); }
.nav-links .nav-cta { background: var(--primary); color: #fff; padding: 8px 18px; }
.nav-links .nav-cta:hover { background: var(--primary-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 40%, rgba(108,59,255,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,212,170,0.1) 0%, transparent 50%),
              var(--bg);
  padding: 80px 0 60px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,59,255,0.15);
  border: 1px solid rgba(108,59,255,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}
.hero-eyebrow span { width: 8px; height: 8px; background: var(--accent2); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { margin-bottom: 20px; }
.hero-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-pills {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--success); box-shadow: 0 0 6px var(--success); }
.dot-orange { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.dot-purple { background: var(--primary-light); box-shadow: 0 0 6px var(--primary-light); }

/* Hero Right Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 420px;
}
.hero-main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: linear-gradient(145deg, var(--card2), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(108,59,255,0.2);
  z-index: 3;
}
.hero-main-card img { width: 90px; height: 90px; border-radius: 20px; margin: 0 auto 16px; object-fit: cover; }
.hero-main-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.hero-main-card p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 16px; font-size: 0.82rem; color: var(--gold); }
.hero-float-badge {
  position: absolute;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.badge-tl { top: 20px; left: 0; z-index: 4; }
.badge-br { bottom: 30px; right: 0; z-index: 4; }
.badge-icon-lg { font-size: 1.2rem; display: block; margin-bottom: 2px; }

/* Floating orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(108,59,255,0.12), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,170,0.08), transparent 70%);
  bottom: 0; left: 10%;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-num { font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, var(--primary-light), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ── Section Commons ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(108,59,255,0.15);
  border: 1px solid rgba(108,59,255,0.3);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(108,59,255,0.4); box-shadow: var(--shadow); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(108,59,255,0.2), rgba(0,212,170,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Games Section ── */
.games-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.games-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
  background: transparent;
}
.games-tab.active, .games-tab:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  display: block;
}
.game-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(108,59,255,0.25); border-color: var(--primary-light); }
.game-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.game-info { padding: 12px 14px; }
.game-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 3px; }
.game-provider { font-size: 0.75rem; color: var(--text-muted); }
.game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 3px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── Bonus CTA ── */
.bonus-cta {
  background: linear-gradient(135deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(108,59,255,0.15) 0%, transparent 70%);
}
.bonus-cta > * { position: relative; z-index: 1; }
.bonus-cta h2 { margin-bottom: 12px; }
.bonus-cta p { color: var(--text-muted); margin-bottom: 32px; }
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}
.cd-item {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 70px;
  text-align: center;
}
.cd-num { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.cd-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

/* ── Download Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: steps;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  counter-increment: steps;
  text-align: center;
}
.step-card::before {
  content: counter(steps);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Payments ── */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.payment-card:hover { border-color: var(--primary-light); color: var(--text); }
.payment-card .pay-icon { font-size: 2rem; margin-bottom: 8px; display: block; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(108,59,255,0.4); }
.t-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.92rem; }
.t-meta { font-size: 0.75rem; color: var(--text-muted); }
.t-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.85rem; }
.t-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Blog Section ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: block;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(108,59,255,0.4); box-shadow: var(--shadow); }
.blog-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.blog-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: rgba(108,59,255,0.15);
  color: var(--primary-light);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 0.97rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.blog-meta { font-size: 0.75rem; color: var(--text-dim); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  gap: 16px;
}
.faq-question:hover { color: var(--primary-light); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; }
.faq-item.active .faq-answer { display: block; }
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── SEO Content ── */
.seo-content {
  background: var(--bg3);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}
.seo-content h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--text); }
.seo-content h3:first-child { margin-top: 0; }
.seo-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.seo-content ul { padding-left: 20px; list-style: disc; }
.seo-content li { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.6; }
.seo-content strong { color: var(--text); }

/* ── Footer ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1rem; margin-bottom: 14px; }
.footer-brand img { border-radius: 10px; }
.footer-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }
.footer h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer ul a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; }
.footer-disclaimer { font-size: 0.77rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 10px; }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-top: 16px; }

/* ── Sticky Bar ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(11,12,30,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-text { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); }
.sticky-text strong { color: var(--text); }

/* ── Popup ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.show { display: flex; }
.popup {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.popup h2 { font-size: 1.4rem; margin-bottom: 12px; }
.popup p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.7; }
.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
}
.popup-close:hover { color: var(--text); }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s, transform 0.55s; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-pills { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); padding: 16px; border-bottom: 1px solid var(--border); z-index: 100; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .countdown { gap: 10px; }
  .seo-content { padding: 24px; }
  .bonus-cta { padding: 36px 20px; }
  .sticky-text { display: none; }
}
