/*
 * abyss-codes.com — Global Stylesheet
 * ─────────────────────────────────────────────────────────
 * Structure:
 *   1.  Design Tokens (CSS Variables)
 *   2.  Reset & Base
 *   3.  Background Effects
 *   4.  Navigation
 *   5.  Breadcrumb
 *   6.  Hero
 *   7.  Update Bar
 *   8.  Section Layout
 *   9.  Codes Table
 *  10.  Alert Banner
 *  11.  Expired Codes Accordion
 *  12.  How-to Steps Grid
 *  13.  Game Info Card
 *  14.  Tips Grid
 *  15.  FAQ Accordion
 *  16.  Related Pages Grid
 *  17.  Footer
 *  18.  Utilities
 *  19.  Responsive / Mobile
 * ─────────────────────────────────────────────────────────
 */


/* ════════════════════════════════════════════════════════
   1. DESIGN TOKENS
════════════════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --void:    #060810;
  --deep:    #0b0f1c;
  --panel:   #111626;
  --surface: #18203a;

  /* Borders */
  --border:  rgba(80, 120, 255, 0.15);
  --border2: rgba(80, 120, 255, 0.30);

  /* Brand colours */
  --cyan:    #00e5ff;
  --blue:    #3d7fff;
  --purple:  #8b5cf6;
  --gold:    #f0c040;
  --coral:   #ff5f6d;

  /* Text */
  --text:    #c8d6f0;
  --muted:   #4a5a80;
  --bright:  #ffffff;

  /* Glow helpers */
  --glow-c:  rgba(0, 229, 255, 0.12);
  --glow-b:  rgba(61, 127, 255, 0.15);

  /* Layout */
  --content-max: 900px;
  --gutter: clamp(20px, 5vw, 64px);
}


/* ════════════════════════════════════════════════════════
   2. RESET & BASE
════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--void);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Subtle film-grain noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

a { color: var(--blue); }
strong { color: var(--bright); }
img { display: block; max-width: 100%; }


/* ════════════════════════════════════════════════════════
   3. BACKGROUND GLOW EFFECTS
════════════════════════════════════════════════════════ */
.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  top: -20%; left: -10%;
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(61,127,255,0.07) 0%, transparent 60%);
}
.bg-glow-2 {
  bottom: -20%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 60%);
}
.bg-glow-3 {
  top: 40%; left: 40%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 60%);
}


/* ════════════════════════════════════════════════════════
   4. NAVIGATION
════════════════════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 64px;
  background: rgba(6, 8, 16, 0.85);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--bright);
}
.nav-logo-text span { color: var(--cyan); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-links a.active { color: var(--cyan); }

/* CTA button inside nav */
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  color: var(--void) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 7px 18px !important;
  border-radius: 8px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.85 !important;
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
}

/* Mobile hamburger — shown only on small screens */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  padding: 4px;
}


/* ════════════════════════════════════════════════════════
   5. BREADCRUMB
════════════════════════════════════════════════════════ */
.breadcrumb {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px var(--gutter) 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}
.breadcrumb li a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb li a:hover { color: var(--text); }
.breadcrumb li.sep { color: var(--border2); }


/* ════════════════════════════════════════════════════════
   6. HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 12vw, 128px) var(--gutter) clamp(48px, 8vw, 80px);
  text-align: center;
  overflow: hidden;
}

/* Top border glow line */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: pulse 1.8s ease infinite;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 12vw, 110px);
  line-height: 0.95;
  letter-spacing: 4px;
  color: var(--bright);
  margin-bottom: 8px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}
.hero-title .glow-text {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--muted);
  max-width: 540px;
  margin: 20px auto 0;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0 0;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--bright);
  letter-spacing: 2px;
  line-height: 1;
}
.hero-stat-num span { color: var(--cyan); }
.hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-divider {
  width: 1px; height: 36px;
  background: var(--border2);
}

/* Scroll cue */
.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.6s 0.5s ease both;
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollDown 1.8s ease infinite;
}


/* ════════════════════════════════════════════════════════
   7. UPDATE BAR
════════════════════════════════════════════════════════ */
.update-bar {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
}
.update-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px 20px;
}
.update-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.update-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
.update-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.update-label strong { color: var(--text); }
.update-right {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}
.update-right a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.update-right a:hover { border-color: var(--blue); }


/* ════════════════════════════════════════════════════════
   8. SECTION LAYOUT
════════════════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: 2px;
  color: var(--bright);
}
.section-title span { color: var(--cyan); }
.section-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}
/* Convenience modifier: add bottom margin directly on h2 */
.section-title--spaced { margin-bottom: 20px; }


/* ════════════════════════════════════════════════════════
   9. CODES TABLE
════════════════════════════════════════════════════════ */
.codes-table-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.codes-table {
  width: 100%;
  border-collapse: collapse;
}

.codes-table thead tr {
  background: var(--surface);
  border-bottom: 1px solid var(--border2);
}
.codes-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 20px;
  text-align: left;
  font-weight: 600;
}
.codes-table th:last-child { text-align: right; }

.codes-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.codes-table tbody tr:last-child { border-bottom: none; }
.codes-table tbody tr:hover { background: rgba(61,127,255,0.04); }

.codes-table td {
  padding: 14px 20px;
  vertical-align: middle;
}

.code-string {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
}

.code-reward { font-size: 14px; color: var(--text); }
.code-reward .reward-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
}

.code-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}

/* Copy button (used in table and elsewhere) */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 7px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  float: right;
}
.copy-btn:hover {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--void);
  border-color: transparent;
}
.copy-btn.copied {
  background: rgba(0,229,255,0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}
.copy-btn svg { width: 13px; height: 13px; }

/* Empty-state for when there are no active codes */
.no-codes {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: 15px;
}
.no-codes-icon { font-size: 36px; margin-bottom: 12px; }


/* ════════════════════════════════════════════════════════
   10. ALERT BANNER
════════════════════════════════════════════════════════ */
.alert-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(61,127,255,0.08), rgba(0,229,255,0.05));
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.alert-icon { font-size: 22px; flex-shrink: 0; }
.alert-text { font-size: 14px; color: var(--text); }
.alert-text strong { color: var(--cyan); }


/* ════════════════════════════════════════════════════════
   11. EXPIRED CODES ACCORDION
════════════════════════════════════════════════════════ */
.expired-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
}
.expired-toggle:hover { border-color: var(--border2); }

.expired-toggle-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.expired-toggle-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--muted);
}
.expired-count {
  background: var(--surface);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}
.expired-arrow {
  color: var(--muted);
  transition: transform 0.3s;
  font-size: 18px;
}
.expired-arrow.open { transform: rotate(180deg); }

.expired-body {
  display: none;
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.expired-body.open { display: block; }

.expired-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.expired-row:last-child { border-bottom: none; }
.expired-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.expired-reward { font-size: 13px; color: var(--muted); }
.expired-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--coral);
  background: rgba(255,95,109,0.08);
  border: 1px solid rgba(255,95,109,0.2);
  border-radius: 4px;
  padding: 2px 6px;
}


/* ════════════════════════════════════════════════════════
   12. HOW-TO STEPS GRID
════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--border2);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--bright);
  margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-icon {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 22px;
}


/* ════════════════════════════════════════════════════════
   13. GAME INFO CARD
════════════════════════════════════════════════════════ */
.game-info-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.game-info-left {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.game-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.game-info-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--bright);
  margin-bottom: 24px;
}
.game-info-right { padding: 32px 28px; }
.game-info-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.game-id-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 20px;
}
.game-id-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--cyan);
  flex: 1;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--void);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.play-btn:hover { opacity: 0.85; }


/* ════════════════════════════════════════════════════════
   14. TIPS GRID
════════════════════════════════════════════════════════ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.tip-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
}
.tip-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.tip-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--bright);
  margin-bottom: 5px;
}
.tip-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }


/* ════════════════════════════════════════════════════════
   15. FAQ ACCORDION
════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
  list-style: none;
}
.faq-q:hover { color: var(--bright); }
.faq-q::marker,
.faq-q::-webkit-details-marker { display: none; }

.faq-arrow {
  color: var(--muted);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] .faq-q .faq-arrow { transform: rotate(180deg); }
details[open] .faq-q { color: var(--cyan); }
details[open].faq-item { border-color: var(--border2); }

.faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}


/* ════════════════════════════════════════════════════════
   16. RELATED PAGES GRID
════════════════════════════════════════════════════════ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.related-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.related-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.related-icon { font-size: 24px; margin-bottom: 10px; }
.related-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--bright);
  margin-bottom: 5px;
}
.related-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }


/* ════════════════════════════════════════════════════════
   17. FOOTER
════════════════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.footer-disclaimer {
  width: 100%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  opacity: 0.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}


/* ════════════════════════════════════════════════════════
   18. UTILITIES
════════════════════════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple);
}


/* ════════════════════════════════════════════════════════
   19. ANIMATIONS
════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ════════════════════════════════════════════════════════
   20. RESPONSIVE / MOBILE
════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
}

@media (max-width: 600px) {
  /* Codes table: stack rows vertically */
  .codes-table thead { display: none; }
  .codes-table tbody tr { display: block; padding: 12px; }
  .codes-table td { display: block; padding: 4px 0; }
  .codes-table td:last-child { text-align: left; }
  .copy-btn { float: none; margin-top: 8px; }

  /* Expired accordion */
  .expired-row { grid-template-columns: 1fr auto; }
  .expired-reward { display: none; }

  /* Game info card */
  .game-info-card { grid-template-columns: 1fr; }
  .game-info-left { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ─── Hero CTA Button ─────────────────────────────────── */
.hero-cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.hero-cta-btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: linear-gradient(135deg, #6c63ff 0%, #3ecfcf 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 0 24px rgba(108, 99, 255, 0.45), 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.hero-cta-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 36px rgba(108, 99, 255, 0.65), 0 6px 20px rgba(0,0,0,0.35);
  filter: brightness(1.1);
}

.hero-cta-btn:active {
  transform: translateY(0) scale(0.98);
}
