/* ============================================
   ALTERSPIN CASINO - Custom CSS
   Deep graphite + midnight navy + cyber accents
   ============================================ */

/* --- Root Variables --- */
:root {
  --graphite: #0b0e17;
  --navy: #0f1724;
  --navy-light: #151d2e;
  --surface: #131a2a;
  --surface-light: #1a2338;
  --cyan: #00f0ff;
  --violet: #7c3aed;
  --lime: #c4ff00;
  --chrome: #cbd5e1;
  --chrome-dim: #64748b;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --glass-border: rgba(0, 240, 255, 0.08);
  --glass-bg: rgba(15, 23, 42, 0.55);
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.25);
  --glow-violet: 0 0 20px rgba(124, 58, 237, 0.25);
  --glow-lime: 0 0 20px rgba(196, 255, 0, 0.2);
}

/* --- Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--graphite);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Shifting Background Gradient --- */
.bg-shift {
  background: linear-gradient(
    135deg,
    var(--graphite) 0%,
    #0a1225 25%,
    var(--navy) 50%,
    #0e0f1f 75%,
    var(--graphite) 100%
  );
  background-size: 400% 400%;
  animation: bgShift 20s ease infinite;
}

@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 100% 0%; }
  50%  { background-position: 100% 100%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

/* --- Diagonal Glitch Streak --- */
.glitch-streak {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glitch-streak::before,
.glitch-streak::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 240, 255, 0.03) 20%,
    rgba(0, 240, 255, 0.08) 50%,
    rgba(124, 58, 237, 0.06) 80%,
    transparent 100%
  );
  animation: streakMove 12s linear infinite;
}

.glitch-streak::before {
  top: 30%;
  transform: rotate(-25deg);
  animation-delay: 0s;
}

.glitch-streak::after {
  top: 65%;
  transform: rotate(-20deg);
  animation-delay: 6s;
  opacity: 0.6;
}

@keyframes streakMove {
  0%   { transform: rotate(-25deg) translateX(-50%); }
  100% { transform: rotate(-25deg) translateX(50%); }
}

/* --- Plasma Glow Button --- */
.btn-plasma {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--graphite);
}

.btn-plasma-cyan {
  background: linear-gradient(135deg, var(--cyan), #00c4d6);
  box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-plasma-cyan:hover {
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.45), 0 0 80px rgba(0, 240, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-plasma-violet {
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  color: #fff;
  box-shadow: var(--glow-violet), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-plasma-violet:hover {
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.45), 0 0 80px rgba(124, 58, 237, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-plasma-lime {
  background: linear-gradient(135deg, var(--lime), #a3d900);
  box-shadow: var(--glow-lime), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-plasma-lime:hover {
  box-shadow: 0 0 35px rgba(196, 255, 0, 0.4), 0 0 80px rgba(196, 255, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline-glass:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--glow-cyan);
  background: rgba(15, 23, 42, 0.75);
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.06);
}

/* --- Slot Card --- */
.slot-card {
  background: var(--surface);
  border: 1px solid rgba(0, 240, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.08);
}

.slot-card .slot-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.slot-card .slot-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.slot-card:hover .slot-img-wrap img {
  transform: scale(1.06);
}

.slot-card .slot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-rtp {
  background: rgba(0, 240, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.badge-jackpot {
  background: rgba(196, 255, 0, 0.15);
  color: var(--lime);
  border: 1px solid rgba(196, 255, 0, 0.2);
}

.badge-bonus {
  background: rgba(124, 58, 237, 0.18);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.badge-popular {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.slot-card .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 14, 23, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slot-card:hover .play-overlay {
  opacity: 1;
}

/* --- Pulse Glow Animation --- */
.pulse-glow-cyan {
  animation: pulseCyan 3s ease-in-out infinite;
}

@keyframes pulseCyan {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.15); }
  50%      { box-shadow: 0 0 30px rgba(0, 240, 255, 0.35); }
}

.pulse-glow-violet {
  animation: pulseViolet 3.5s ease-in-out infinite;
}

@keyframes pulseViolet {
  0%, 100% { box-shadow: 0 0 15px rgba(124, 58, 237, 0.15); }
  50%      { box-shadow: 0 0 30px rgba(124, 58, 237, 0.35); }
}

/* --- Marquee (Providers Cloud) --- */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.provider-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  margin: 0 0.5rem;
  background: var(--surface);
  border: 1px solid rgba(0, 240, 255, 0.06);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
}

.provider-chip:hover {
  border-color: rgba(0, 240, 255, 0.25);
  color: var(--cyan);
  background: var(--surface-light);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* --- Parallax Layer --- */
.parallax-wrap {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(0, 240, 255, 0.04) 0%,
    transparent 50%
  ),
  radial-gradient(
    ellipse at 70% 80%,
    rgba(124, 58, 237, 0.04) 0%,
    transparent 50%
  );
  will-change: transform;
  z-index: 0;
}

/* --- Section Titles --- */
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-title .accent-cyan {
  color: var(--cyan);
}

.section-title .accent-violet {
  color: var(--violet);
}

.section-title .accent-lime {
  color: var(--lime);
}

/* --- Feature Card --- */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(0, 240, 255, 0.18);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.05);
  transform: translateY(-3px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

/* --- Tabs (Payment Methods) --- */
.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text-secondary);
}

.tab-btn.active {
  background: var(--surface-light);
  border-color: rgba(0, 240, 255, 0.2);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.tab-btn:not(.active):hover {
  color: var(--text-primary);
  background: var(--surface);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeTabIn 0.35s ease;
}

@keyframes fadeTabIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Payment Table --- */
.pay-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}

.pay-table thead th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(0, 240, 255, 0.06);
}

.pay-table tbody td {
  padding: 0.9rem 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pay-table tbody tr {
  transition: background 0.2s ease;
}

.pay-table tbody tr:hover {
  background: rgba(0, 240, 255, 0.02);
}

/* --- Review Card --- */
.review-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.8rem;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: rgba(0, 240, 255, 0.15);
}

.stars-row {
  display: flex;
  gap: 3px;
}

.star-filled {
  color: #10b981;
  font-size: 1rem;
}

.star-empty {
  color: var(--chrome-dim);
  font-size: 1rem;
}

/* --- Trustpilot Style Rating --- */
.tp-stars {
  display: inline-flex;
  gap: 3px;
}

.tp-star {
  width: 28px;
  height: 28px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* --- Promo Card --- */
.promo-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.18);
}

.promo-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(0, 240, 255, 0.08) 0%,
    rgba(124, 58, 237, 0.08) 50%,
    rgba(196, 255, 0, 0.05) 100%
  );
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 240, 255, 0.04) 0%,
    transparent 60%
  );
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.1); opacity: 1; }
}

/* --- Sticky Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.05);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(11, 14, 23, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
  animation: fadeNavIn 0.25s ease;
}

@keyframes fadeNavIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mobile-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--cyan);
}

/* --- Hamburger --- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero-section {
  background: linear-gradient(
    160deg,
    rgba(0, 240, 255, 0.04) 0%,
    var(--surface) 30%,
    rgba(124, 58, 237, 0.04) 70%,
    var(--surface) 100%
  );
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 240, 255, 0.3),
    transparent
  );
}

/* --- Prose Styling (Reviews, Single Pages) --- */
.prose {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1rem;
}

.prose h2 {
  color: var(--text-primary);
  font-size: 1.65rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.prose h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 0.8rem;
}

.prose p {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
}

.prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 240, 255, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.prose a:hover {
  text-decoration-color: var(--cyan);
}

.prose ul, .prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose li::marker {
  color: var(--cyan);
}

.prose strong {
  color: var(--text-primary);
  font-weight: 700;
}

.prose blockquote {
  border-left: 3px solid var(--cyan);
  padding: 0.8rem 1.2rem;
  margin: 1.5rem 0;
  background: rgba(0, 240, 255, 0.03);
  border-radius: 0 12px 12px 0;
  color: var(--text-secondary);
  font-style: italic;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.prose table th,
.prose table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prose table th {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.15), transparent);
  margin: 2.5rem 0;
}

/* --- Author Card --- */
.author-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* --- Fade In on Scroll --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
.site-footer {
  background: var(--graphite);
  border-top: 1px solid rgba(0, 240, 255, 0.04);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-section {
    border-radius: 18px;
  }

  .glass-card {
    border-radius: 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn-plasma {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .pay-table {
    font-size: 0.8rem;
  }

  .pay-table thead th,
  .pay-table tbody td {
    padding: 0.65rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .slot-card .slot-badge {
    font-size: 0.6rem;
    padding: 2px 7px;
  }

  .provider-chip {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* --- Utility --- */
.text-gradient-cyan {
  background: linear-gradient(135deg, var(--cyan), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-violet {
  background: linear-gradient(135deg, var(--violet), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-lime {
  background: linear-gradient(135deg, var(--lime), #a3e635);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-glow-cyan {
  border: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--graphite);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--chrome-dim);
}

/* --- Selection --- */
::selection {
  background: rgba(0, 240, 255, 0.2);
  color: #fff;
}

/* ============================================
   INNER PAGES - Extended Styles
   ============================================ */

/* --- FAQ Accordion --- */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 240, 255, 0.15);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
  line-height: 1.4;
}

.faq-toggle:hover {
  color: var(--cyan);
}

.faq-toggle svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--chrome-dim);
}

.faq-item.open .faq-toggle svg {
  transform: rotate(180deg);
  color: var(--cyan);
}

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

.faq-item.open .faq-body {
  max-height: 600px;
  padding: 0 1.4rem 1.2rem;
}

.faq-body p,
.faq-body ul {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.faq-body ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.faq-body li {
  margin-bottom: 0.35rem;
}

.faq-body li::marker {
  color: var(--cyan);
}

/* --- Step Counter --- */
.step-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--cyan);
}

.step-content h4 {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.3rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Hint / Alert Boxes --- */
.hint-box {
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.hint-box-cyan {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.12);
}

.hint-box-cyan strong {
  color: var(--cyan);
}

.hint-box-violet {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.hint-box-violet strong {
  color: #a78bfa;
}

.hint-box-lime {
  background: rgba(196, 255, 0, 0.04);
  border: 1px solid rgba(196, 255, 0, 0.1);
}

.hint-box-lime strong {
  color: var(--lime);
}

.hint-box-amber {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.12);
}

.hint-box-amber strong {
  color: #fbbf24;
}

/* --- Expandable Game Card --- */
.game-expand {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-expand:hover {
  border-color: rgba(0, 240, 255, 0.15);
}

.game-expand-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.game-expand-toggle svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--chrome-dim);
}

.game-expand.open .game-expand-toggle svg {
  transform: rotate(180deg);
  color: var(--cyan);
}

.game-expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.game-expand.open .game-expand-body {
  max-height: 400px;
}

/* --- Bonus Table --- */
.bonus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
}

.bonus-table thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  white-space: nowrap;
}

.bonus-table tbody td {
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.bonus-table tbody tr {
  transition: background 0.2s ease;
}

.bonus-table tbody tr:hover {
  background: rgba(0, 240, 255, 0.02);
}

/* --- Jackpot Ticker --- */
.jackpot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jackpot-progressive {
  background: rgba(196, 255, 0, 0.12);
  color: var(--lime);
  border: 1px solid rgba(196, 255, 0, 0.18);
}

.jackpot-fixed {
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.15);
}

.jackpot-daily {
  background: rgba(124, 58, 237, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.jackpot-hourly {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.18);
}

/* --- Section Divider --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.12), transparent);
  margin: 2.5rem 0;
  border: none;

}

/* --- Page Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--chrome-dim);
}

.breadcrumb a {
  color: var(--chrome-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.breadcrumb-sep {
  color: var(--chrome-dim);
  opacity: 0.4;
}

/* --- Inner page responsive fixes --- */
@media (max-width: 768px) {
  .faq-toggle {
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
  }

  .faq-item.open .faq-body {
    padding: 0 1rem 1rem;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .bonus-table {
    font-size: 0.78rem;
  }

  .bonus-table thead th,
  .bonus-table tbody td {
    padding: 0.65rem 0.5rem;
  }
}
