/* ================================================
   JetTon Casino SEO Landing — Main Stylesheet
   Palette: #90ff00 lime | #0b0c0c dark | #141517 sidebar
   ================================================ */

/* === CSS Variables === */
:root {
  --bg: #0b0c0c;
  --bg2: #141517;
  --bg3: #1a1b1d;
  --bg4: #222426;
  --accent: #90ff00;
  --accent-dim: rgba(144, 255, 0, 0.15);
  --accent-glow: rgba(144, 255, 0, 0.35);
  --text: #ffffff;
  --text-muted: #8a9099;
  --text-dim: #c4cad4;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(144, 255, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
  --sidebar-w: 260px;
  --font: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ================================================
   LAYOUT
   ================================================ */

.layout {
  display: flex;
  min-height: 100vh;
}

/* === SIDEBAR === */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg2);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo img {
  height: 36px;
  width: auto;
}

.sidebar-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.sidebar-logo-text span {
  color: var(--accent);
}

.nav-section-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 20px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 0;
  transition: all var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}

.nav-item:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-left-color: var(--accent);
}

.nav-item.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
}

.nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  opacity: 1;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* === MAIN CONTENT === */
.main {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
  position: relative;
}

.main::before {
  content: '';
  position: fixed;
  left: var(--sidebar-w);
  right: 0;
  top: 0;
  height: 14px;
  z-index: 98;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% -20%, rgba(70, 120, 255, 0.82) 0%, rgba(70, 120, 255, 0.28) 40%, rgba(70, 120, 255, 0) 100%);
  filter: blur(2px);
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11,12,12,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.btn-login {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--accent);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-login:hover {
  background: var(--accent-dim);
}

.btn-register {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-register:hover {
  background: #a8ff20;
  transform: translateY(-1px);
  box-shadow: 0 4px 30px var(--accent-glow);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
  position: relative;
  overflow: hidden;
  margin: 24px 24px 0;
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: linear-gradient(98deg, #071005 0%, #050806 48%, #091107 100%);
  border: 1px solid rgba(144, 255, 0, 0.25);
  box-shadow: inset 0 0 0 1px rgba(144, 255, 0, 0.08), 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 58% 82% at 80% 50%, rgba(144, 255, 0, 0.16) 0%, rgba(144, 255, 0, 0.05) 36%, transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.46) 20%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0.03) 78%, rgba(0, 0, 0, 0) 92%);
  pointer-events: none;
}

.hero-bg-plane {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 60px rgba(144,255,0,0.15));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 54px 56px;
  max-width: 580px;
}

.hero-right-mark {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(64%, 880px);
  background-image:
    linear-gradient(90deg, rgba(3, 5, 4, 0.995) 0%, rgba(3, 5, 4, 0.97) 12%, rgba(3, 5, 4, 0.88) 24%, rgba(3, 5, 4, 0.68) 38%, rgba(3, 5, 4, 0.42) 54%, rgba(3, 5, 4, 0.2) 68%, rgba(3, 5, 4, 0.07) 82%, rgba(3, 5, 4, 0) 100%),
    radial-gradient(120% 120% at 16% 50%, rgba(4, 7, 5, 0.5) 0%, rgba(4, 7, 5, 0.22) 40%, rgba(4, 7, 5, 0) 74%),
    image-set(
      url('assets/hero/bonus-bg.avif') type('image/avif') 1x,
      url('assets/hero/bonus-bg.webp') type('image/webp') 1x,
      url('assets/hero/bonus-bg.png') type('image/png') 1x
    );
  background-position: left center, 20% center, right center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 120% 120%, cover;
  opacity: 0.98;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  filter: drop-shadow(0 0 48px rgba(66, 209, 255, 0.16));
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.14) 12%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.86) 44%, rgba(0, 0, 0, 1) 56%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.14) 12%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.86) 44%, rgba(0, 0, 0, 1) 56%, rgba(0, 0, 0, 1) 100%);
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 84px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(40px, 5.3vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.8px;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 0 28px rgba(144, 255, 0, 0.12);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #bec6b3;
  margin-bottom: 30px;
  margin-top: 6px;
  line-height: 1.45;
}

.hero-subtitle strong {
  color: #f2f8e8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 40px var(--accent-glow);
  border: none;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 50px var(--accent-glow);
  background: #a8ff20;
}

.hero-cta svg {
  transition: transform var(--transition);
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* ================================================
   CONTENT AREA
   ================================================ */
.content {
  padding: 32px 24px;
}

/* === Section Titles === */
.section-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 24px 0;
}

.stat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--border-accent);
  background: var(--bg4);
}

.stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ================================================
   GAME CATEGORIES
   ================================================ */
.categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.categories::-webkit-scrollbar { display: none; }

.cat-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ================================================
   GAMES GRID
   ================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.game-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #111318 0%, #1a1e28 100%);
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-img {
  transform: scale(1.05);
}

.game-card-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: var(--bg3);
}

.game-card-fallback span {
  font-size: 10px;
  color: var(--text-muted);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-play-btn {
  width: 100%;
  padding: 8px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
}

.game-card-meta {
  padding: 10px 12px 12px;
}

.game-card-title {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 11px;
  color: var(--text-muted);
}

/* Placeholder game cards */
.game-placeholder {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

/* ================================================
   BONUS SECTION
   ================================================ */
.bonus-section {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.bonus-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.bonus-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.bonus-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.bonus-details {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

.bonus-limit {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Total bonus highlight */
.bonus-total {
  background: linear-gradient(135deg, #0d1a00 0%, #111300 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.bonus-total-value {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
  text-shadow: 0 0 40px var(--accent-glow);
}

.bonus-total-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.bonus-wagering {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.wagering-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
}

.wagering-badge span {
  color: var(--accent);
  font-weight: 700;
}

/* ================================================
   INFO SECTIONS
   ================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.info-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.info-card:hover {
  border-color: var(--border-accent);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.info-card p, .info-card li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-card ul li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

/* ================================================
   LOYALTY PROGRAM
   ================================================ */
.loyalty-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.loyalty-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
}

.loyalty-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.loyalty-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.loyalty-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.loyalty-cashback {
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
}

.loyalty-cashback-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* ================================================
   PAYMENT METHODS
   ================================================ */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 32px;
}

.payment-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all var(--transition);
  cursor: default;
}

.payment-card:hover {
  border-color: var(--border-accent);
  color: var(--text);
}

.payment-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

/* ================================================
   SEO TEXT / ARTICLE
   ================================================ */
.seo-article {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.seo-article h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  margin-top: 28px;
  color: var(--text);
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 20px;
  color: var(--text-dim);
}

.seo-article p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.seo-article ul, .seo-article ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.seo-article li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.seo-article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.highlight-box {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-dim);
}

.highlight-box strong {
  color: var(--accent);
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-accent);
}

.faq-question {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ================================================
   CTA BLOCK
   ================================================ */
.cta-block {
  background: linear-gradient(135deg, #0d1a00 0%, #0b0c0c 50%, #0d1500 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(144,255,0,0.07) 0%, transparent 70%);
}

.cta-block h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
  position: relative;
}

.cta-block p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  position: relative;
}

.cta-block .hero-cta {
  position: relative;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 32px 24px 24px;
}

.footer-inner {
  max-width: 900px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-age {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ================================================
   MOBILE HAMBURGER TOGGLE
   ================================================ */
.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 200;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay.show {
    display: block;
  }
  .sidebar-toggle {
    display: flex;
  }
  .main {
    margin-left: 0;
  }
  .main::before {
    left: 0;
  }
  .header {
    padding: 12px 16px;
  }
  .hero {
    margin: 12px 12px 0;
    min-height: 290px;
  }
  .hero-content {
    padding: 28px 22px;
    max-width: 100%;
  }
  .hero-right-mark {
    display: block;
    width: 100%;
    opacity: 0.92;
    background-image:
      linear-gradient(90deg, rgba(3, 5, 4, 0.985) 0%, rgba(3, 5, 4, 0.95) 34%, rgba(3, 5, 4, 0.72) 52%, rgba(3, 5, 4, 0.34) 70%, rgba(3, 5, 4, 0.08) 86%, rgba(3, 5, 4, 0) 100%),
      radial-gradient(120% 120% at 92% 48%, rgba(14, 20, 16, 0.3) 0%, rgba(14, 20, 16, 0) 62%),
      image-set(
        url('assets/hero/bonus-bg.avif') type('image/avif') 1x,
        url('assets/hero/bonus-bg.webp') type('image/webp') 1x,
        url('assets/hero/bonus-bg.png') type('image/png') 1x
      );
    background-position: left center, right center, 82% center;
    background-size: 100% 100%, 140% 140%, cover;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 1) 74%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 1) 74%, rgba(0, 0, 0, 1) 100%);
  }
  .hero-bg-plane {
    display: none;
  }
  .stats-bar {
    margin: 12px 12px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .content {
    padding: 16px 12px;
  }
  .section-anchor {
    scroll-margin-top: 72px;
  }
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
  }
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-section {
    padding: 20px;
  }
  .seo-article {
    padding: 20px;
  }
  .cta-block {
    padding: 28px 20px;
  }
  .cta-block h2 {
    font-size: 24px;
  }
  .loyalty-levels {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 38px;
  }
  .payments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .loyalty-levels {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================
   UTILITIES
   ================================================ */
.accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Pulse animation for CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 50px rgba(144,255,0,0.5); }
}

.btn-register, .hero-cta {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Animate sections in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.content > * {
  animation: fadeUp 0.5s ease both;
}
