/* =============================================================
   TrenchBet Casino – Custom CSS
   Theme: Digital Strike (Neon Cyan + Violet on Dark Tech)
   ============================================================= */

/* ---------- Google Font Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --cyan:      #00f5ff;
  --cyan-dim:  #00c8d4;
  --violet:    #8b5cf6;
  --violet-dim:#6d28d9;
  --dark:      #050a14;
  --darkalt:   #0a1628;
  --card:      #0d1f3c;
  --border:    #1a2f50;
  --text:      #e2e8f0;
  --muted:     #94a3b8;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--violet); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar              { width: 6px; height: 6px; }
::-webkit-scrollbar-track        { background: var(--darkalt); }
::-webkit-scrollbar-thumb        { background: var(--violet); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--cyan); }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  background: rgba(5, 10, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.logo-text   { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; }
.logo-icon   { color: var(--cyan); font-size: 1.3rem; }
.logo-name   { background: linear-gradient(90deg, var(--cyan), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: width var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

/* Burger button */
.burger-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 60;
}
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-btn.open .burger-line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger-btn.open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open .burger-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: rgba(10, 22, 40, 0.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.mobile-nav-link {
  display: block;
  color: var(--muted);
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav-link:hover { color: var(--cyan); padding-left: 1rem; }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050a14;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 0 20px rgba(0,245,255,0.35);
  text-align: center;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,245,255,0.55);
  color: #050a14;
  opacity: 0.92;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  font-weight: 700;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(0,245,255,0.4);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050a14;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 10px;
  padding: 0.85rem 2.2rem;
  box-shadow: 0 0 30px rgba(0,245,255,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 45px rgba(0,245,255,0.7);
  color: #050a14;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 2.2rem;
  transition: all 0.2s ease;
}
.btn-hero-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,245,255,0.25);
}

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050a14;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}
.btn-play:hover {
  transform: scale(1.05);
  color: #050a14;
  box-shadow: 0 0 15px rgba(0,245,255,0.5);
}

.btn-promo {
  display: inline-block;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #050a14;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  margin-top: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(139,92,246,0.3);
}
.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(139,92,246,0.55);
  color: #050a14;
}

/* =============================================================
   SECTION SHARED
   ============================================================= */
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================================
   HERO
   ============================================================= */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(1.2);
  transform: scale(1.05);
  animation: hero-parallax 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,10,20,0.4) 0%,
    rgba(5,10,20,0.6) 60%,
    rgba(5,10,20,0.95) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,245,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139,92,246,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  text-shadow: 0 0 30px rgba(0,245,255,0.3);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.bonus-badge-box {
  background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: inline-block;
  box-shadow: 0 0 30px rgba(0,245,255,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: badge-float 4s ease-in-out infinite;
}
.bonus-badge-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.bonus-icon {
  font-size: 2.5rem;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0,245,255,0.7);
  flex-shrink: 0;
}
.bonus-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bonus-main {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.wager-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================================
   STEPS
   ============================================================= */
.steps-section { background: var(--darkalt); }

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,245,255,0.15);
}
.step-card.featured {
  border-color: rgba(0,245,255,0.4);
  box-shadow: 0 0 25px rgba(0,245,255,0.12);
}
.step-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0,245,255,0.4);
}
.step-icon {
  font-size: 2.2rem;
  color: var(--cyan);
  margin: 1.2rem 0 0.8rem;
  text-shadow: 0 0 15px rgba(0,245,255,0.5);
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* =============================================================
   GAMES
   ============================================================= */
.games-section { background: var(--dark); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(139,92,246,0.25);
}

.game-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--darkalt);
}
.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-img { transform: scale(1.08); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,10,20,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }

.game-info {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.game-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.game-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================================
   PAYMENTS TABLE
   ============================================================= */
.payments-section { background: var(--darkalt); }

.payments-table {
  border-collapse: collapse;
  font-size: 0.9rem;
}
.payments-table th,
.payments-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.payments-table thead th {
  background: rgba(0,245,255,0.07);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.payments-table tbody tr:hover td {
  background: rgba(139,92,246,0.05);
}
.payments-table tbody td { color: var(--text); }

/* =============================================================
   REVIEW BLOCKS
   ============================================================= */
.review-section { background: var(--dark); }

.review-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-block-header {
  background: linear-gradient(135deg, rgba(0,245,255,0.08), rgba(139,92,246,0.08));
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-block-icon {
  font-size: 1.3rem;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,245,255,0.5);
}
.review-block-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.review-block-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  overflow-y: auto;
}
.review-block-body p { color: var(--muted); }
.review-block-body strong { color: var(--text); }

.review-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.review-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}
.review-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.bonus-table th,
.bonus-table td {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
}
.bonus-table th {
  background: rgba(0,245,255,0.06);
  color: var(--cyan);
  font-weight: 600;
}
.bonus-table td { color: var(--muted); }

/* Provider word cloud */
.provider-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  line-height: 1;
}
.provider-tag {
  display: inline-block;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--transition), text-shadow var(--transition);
  cursor: default;
}
.provider-tag:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,245,255,0.5);
}
.provider-tag.size-xl { font-size: 1.25rem; color: var(--text); }
.provider-tag.size-lg { font-size: 1.05rem; color: var(--cyan-dim); }
.provider-tag.size-md { font-size: 0.9rem; }
.provider-tag.size-sm { font-size: 0.78rem; color: rgba(148,163,184,0.7); }

/* =============================================================
   PROMOS
   ============================================================= */
.promos-section { background: var(--darkalt); }

.promo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(139,92,246,0.2);
}
.promo-card.featured {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 0 20px rgba(139,92,246,0.12);
}
.promo-icon {
  font-size: 2.5rem;
  color: var(--violet);
  text-shadow: 0 0 15px rgba(139,92,246,0.6);
  margin-bottom: 1rem;
}
.promo-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.promo-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* =============================================================
   FAQ
   ============================================================= */
.faq-section { background: var(--dark); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(0,245,255,0.25); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--cyan); }
.faq-question[aria-expanded="true"] { color: var(--cyan); }

.faq-icon {
  color: var(--muted);
  font-size: 0.6rem;
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 1.25rem 1.1rem;
}
.faq-answer p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--darkalt);
  border-top: 1px solid var(--border);
}
.footer-top   { }
.footer-bottom { }

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }

.age-bar { }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* =============================================================
   SINGLE PAGE SIDEBAR
   ============================================================= */
.single-sidebar { }

.sidebar-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}
.sidebar-subheading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.quick-link-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
}
.quick-link-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,245,255,0.05);
}

.resp-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.resp-link { color: var(--cyan); font-size: 0.85rem; transition: color var(--transition); }
.resp-link:hover { color: var(--violet); }

.age-notice { background: rgba(139,92,246,0.05); }
.age-badge-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* =============================================================
   PROSE STYLING (for single pages / .Content)
   ============================================================= */
.prose-trench {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 800px;
}
.prose-trench h1,
.prose-trench h2,
.prose-trench h3,
.prose-trench h4 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-trench h1 { font-size: 2rem; }
.prose-trench h2 { font-size: 1.5rem; }
.prose-trench h3 { font-size: 1.2rem; color: var(--cyan); }
.prose-trench h4 { font-size: 1rem; color: var(--cyan-dim); }

.prose-trench p    { margin-bottom: 1rem; }
.prose-trench a    { color: var(--cyan); text-decoration: underline; }
.prose-trench a:hover { color: var(--violet); }

.prose-trench ul,
.prose-trench ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.prose-trench li { color: var(--muted); }

.prose-trench blockquote {
  border-left: 3px solid var(--cyan);
  padding-left: 1rem;
  color: var(--muted);
  font-style: italic;
  margin: 1.5rem 0;
}

.prose-trench code {
  background: rgba(0,245,255,0.08);
  color: var(--cyan);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
}
.prose-trench pre {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.prose-trench table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}
.prose-trench table th {
  background: rgba(0,245,255,0.07);
  color: var(--cyan);
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  text-align: left;
}
.prose-trench table td {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  color: var(--muted);
}
.prose-trench table tr:hover td { background: rgba(139,92,246,0.04); }

.prose-trench hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* =============================================================
   ANIMATIONS
   ============================================================= */

/* Hero parallax */
@keyframes hero-parallax {
  0%   { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.12) translateY(-20px); }
}

/* Pulse glow for primary CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 25px rgba(0,245,255,0.4); }
  50%       { box-shadow: 0 0 50px rgba(0,245,255,0.7), 0 0 80px rgba(139,92,246,0.4); }
}

/* Bonus badge float */
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Fade in up for sections */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Neon flicker */
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan), 0 0 40px var(--cyan);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Marquee scroll */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Motion trail for neon elements */
@keyframes motion-trail {
  0%   { opacity: 0; transform: translateX(-20px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(20px); }
}

/* Spin slow */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Grid line scan */
@keyframes scan-line {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100vh; }
}

/* Section entrance animation helper */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee strip utility */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }

/* =============================================================
   TECH / GRID BACKGROUND PATTERN
   ============================================================= */
.tech-bg {
  position: relative;
}
.tech-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Neon border glow utility */
.neon-border {
  border: 1px solid rgba(0,245,255,0.3);
  box-shadow: 0 0 15px rgba(0,245,255,0.15), inset 0 0 15px rgba(0,245,255,0.05);
}

/* =============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================= */
@media (max-width: 640px) {
  .hero-section { min-height: 90vh; }
  .bonus-badge-box { padding: 1rem; }
  .bonus-main { font-size: 1rem; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .review-block-body { max-height: none; }
}

@media (min-width: 1024px) {
  .review-block-body { max-height: 600px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
