/* Critical Variables - Above the fold */
:root {
  /* Brand Colors - HUMANIZED PALETTE */
  --bg-1: #1a0d2e;
  --bg-2: #2d1b4e;
  --bg-3: #3d2a5a;
  --bg-4: #130a24;
  /* Darker Footer */

  /* Texture & Noise */
  --noise: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjgiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWRHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjAzIiBmaWxsZXQ9InVybCgjbikiLz48L3N2Zz4=');
  --glass: rgba(255, 255, 255, .05);
  --glass-border: rgba(255, 255, 255, .1);

  /* Typography */
  --font-heading: 'Outfit', Inter, system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --purple: #6b46c1;
  --purple-2: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.5);

  --yellow: #fbbf24;
  --yellow-2: #f59e0b;
  --yellow-glow: rgba(251, 191, 36, 0.4);

  --white: #ffffff;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, .08);

  --radius: 20px;
  /* Softer corners */
  --shadow: 0 20px 60px rgba(13, 7, 30, .6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-hover: 0 25px 50px -12px rgba(139, 92, 246, 0.25);

  --maxw: 1200px;
  /* Color shadow */

  --maxw: 1200px;
  --mcta-h: 72px;
}

/* Base Reset */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  /* MESH GRADIENT + NOISE */
  background-color: var(--bg-1);
  background-image:
    var(--noise),
    radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(251, 191, 36, 0.1), transparent 25%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  /* Parallax feel */
  color: var(--text);
  font: 16px/1.8 var(--font-body);
  /* Increased line-height */
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: var(--yellow);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--yellow-2);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px
}

.section {
  padding: 64px 0;
  content-visibility: auto;
  animation: fadeIn 0.8s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography */
h1 {
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(22px, 3.6vw, 36px);
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(18px, 2.6vw, 24px);
  margin: 24px 0 12px;
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 14px
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, var(--bg-2), rgba(45, 27, 78, .95));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(26, 13, 46, .4);
  backdrop-filter: blur(10px);
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 68px
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  color: var(--white)
}

.brand .logo {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: var(--bg-1);
  box-shadow: 0 8px 22px rgba(251, 191, 36, .35);
  font-weight: 900;
  font-size: 18px;
}

.brand span {
  font-weight: 900;
  letter-spacing: .2px
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.nav a {
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  transition: all .2s
}

.nav a:hover {
  background: var(--glass);
  color: var(--yellow)
}

/* Mobile Nav */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.burger svg {
  width: 22px;
  height: 22px
}

@media (max-width:960px) {
  .burger {
    display: flex
  }

  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: linear-gradient(180deg, var(--bg-2), rgba(45, 27, 78, .98));
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 14px;
    backdrop-filter: blur(10px)
  }

  .nav a {
    padding: 14px 10px;
    border-radius: 12px
  }

  .nav.nav--open {
    display: flex
  }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.lang-switcher a {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid var(--line);
}

.lang-switcher a.active {
  background: var(--yellow);
  color: var(--bg-1);
  border-color: var(--yellow);
}

.lang-switcher a:not(.active):hover {
  background: var(--glass);
  color: var(--yellow);
}

/* Humanized Buttons */
.btn {
  --bg: rgba(255, 255, 255, 0.03);
  --txt: var(--white);
  --brd: rgba(255, 255, 255, 0.1);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid var(--brd);
  background: var(--bg);
  color: var(--txt);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 14px;

  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn--purple {
  --bg: linear-gradient(135deg, var(--purple), var(--purple-2));
  --brd: rgba(139, 92, 246, .4);
  --txt: var(--white);
  box-shadow: 0 16px 44px rgba(107, 70, 193, .4), inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.btn--purple:hover {
  --txt: var(--white);
}

.btn--yellow {
  --bg: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  --txt: #1a0d2e !important;
  --brd: rgba(251, 191, 36, .4);
  box-shadow: 0 16px 44px rgba(251, 191, 36, .4), inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.btn--yellow:hover,
.btn--yellow:active {
  color: #1a0d2e !important;
  --txt: #1a0d2e !important;
}

.btn--ghost {
  --bg: var(--glass);
  --brd: rgba(255, 255, 255, .22)
}

.btn--xl {
  padding: 14px 26px;
  font-size: clamp(16px, 4.5vw, 20px)
}

.btn--wide {
  min-width: 220px;
  margin-top: 15px
}

.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(26, 13, 46, 0.8), rgba(45, 27, 78, 0.7)),
    url(../img/home_the-vault.webp);
  /* Corrected path for CSS file location */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 20px 0 40px;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px 18px;
  position: relative;
  z-index: 2
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(251, 191, 36, .1);
  border: 1px solid rgba(251, 191, 36, .2);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--yellow)
}

.hero__lead {
  font-size: clamp(15px, 3.8vw, 20px);
  opacity: .95;
  max-width: 760px;
  margin: 0 0 18px
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* Cards & Helpers */
/* Bonus Card & Promo Box */
.promo-box {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(121, 74, 255, 0.15));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: promoGlow 4s infinite alternate;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.promo-box:hover {
  transform: scale(1.02);
  border-color: var(--yellow);
}

@keyframes promoGlow {
  0% {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
  }

  100% {
    box-shadow: 0 15px 45px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.6);
  }
}

.promo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.promo-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--bg-1);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.promo-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Section Entrance Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Button Glow Enhancements */
.glow:hover {
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.promo-highlight {
  color: var(--yellow);
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.promo-code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px dashed var(--yellow);
  margin-top: 16px;
  width: fit-content;
}

.promo-code-label {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 700;
}

.promo-code-value {
  font-family: monospace;
  font-size: 18px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 1px;
}

/* Trust Bar (Bank Logos) */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.8;
  letter-spacing: 1px;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.trust-logos:hover {
  opacity: 1;
}

.bank-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  /* Glow for visibility on dark background */
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
}

@media (max-width: 600px) {
  .hero__trust {
    justify-content: center;
    text-align: center;
  }

  .trust-logos {
    justify-content: center;
    gap: 15px;
  }
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.3);
}

/* Live Payouts Feed */
.payouts-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.payout-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.payout-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--yellow);
  transform: translateX(5px);
}

.payout-user {
  display: flex;
  flex-direction: column;
}

.payout-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}

.payout-meta {
  font-size: 12px;
  opacity: 0.6;
}

.payout-amount {
  font-weight: 900;
  color: var(--yellow);
  text-align: right;
}

.payout-time {
  font-size: 11px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: 99px;
  display: inline-block;
  margin-top: 4px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse 1.5s infinite;
}

/* Bank Speed Table */
.bank-speed {
  margin-top: 32px;
}

.speed-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.speed-badge--fast {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.speed-badge--instant {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.table--banks td {
  text-align: left !important;
  vertical-align: middle;
}

.bank-name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Geo/Legal Info Block */
.geo-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.geo-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease;
}

.geo-box:hover {
  border-color: rgba(251, 191, 36, 0.4);
}

.geo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.geo-tag--ontario {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.geo-tag--canada {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.geo-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.geo-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.geo-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.geo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: bold;
}

@media (max-width: 768px) {
  .geo-legal {
    grid-template-columns: 1fr;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

/* FAQ Section - Premium Accordion */
.faq-section {
  margin: 48px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item:hover .faq-question {
  color: var(--yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  padding: 0 24px;
  color: var(--text);
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: translateY(-50%);
  border-radius: 2px;
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

/* Comparison Table */
.comparison-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.table--comparison {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.table--comparison th,
.table--comparison td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.table--comparison th {
  background: rgba(251, 191, 36, 0.05);
  color: var(--yellow);
  font-weight: 800;
}

.table--comparison tr:last-child td {
  border-bottom: none;
}

.feature-col {
  text-align: left !important;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}

.spinbet-col {
  background: rgba(251, 191, 36, 0.05);
  font-weight: 800;
  color: var(--white);
}

.icon--check {
  color: #4ade80;
  font-weight: bold;
}

.icon--cross {
  color: #f87171;
  font-weight: bold;
}

/* Existing Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.trust-item {
  text-align: center;
  padding: 30px;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--bg-1);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.trust-icon svg {
  width: 32px;
  height: 32px;
}

/* Testimonials */
.review-card {
  padding: 30px;
  position: relative;
}

.review-card .stars {
  color: var(--yellow);
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-weight: 700;
  color: var(--white);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: linear-gradient(135deg, rgba(251, 191, 36, .2), rgba(245, 158, 11, .15));
  color: var(--yellow);
  border: 1px solid rgba(251, 191, 36, .3);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: 12px
}

.slot-img {
  border-radius: 14px;
  margin-bottom: 12px;
  object-fit: cover;
  width: 100%
}

.card>a:has(img) {
  display: block;
  transition: transform .2s, opacity .2s;
  cursor: pointer
}

.card>a:has(img):hover {
  transform: scale(1.02);
  opacity: .9
}

.card>a:has(img) img {
  display: block
}

.grid-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr
}

.grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr)
}

@media (max-width:1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:880px) {
  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--yellow);
}

.breadcrumbs span {
  margin: 0 8px;
}

/* Tip / Blockquote */
.tip {
  border-left: 4px solid var(--yellow);
  background: rgba(251, 191, 36, .08);
  padding: 12px;
  border-radius: 14px;
  color: var(--text)
}

.tip.warn {
  border-left-color: var(--purple-2);
  background: rgba(139, 92, 246, .08)
}

blockquote {
  margin: 0;
  padding: 18px;
  border-left: 4px solid var(--purple-2);
  background: rgba(255, 255, 255, .05);
  border-radius: 14px
}

/* Tables */
.table {
  min-width: 0 !important;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .02)
}

.table th,
.table td {
  white-space: nowrap;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top
}

.table thead th {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, .15), rgba(139, 92, 246, .1));
  z-index: 1;
  color: var(--white);
  font-weight: 700
}

.table-wrap {
  overflow-x: auto
}

@media (min-width:1024px) {
  .table-wrap {
    overflow: visible
  }

  .table {
    display: table;
    width: 100%;
    table-layout: fixed;
    overflow: visible
  }

  .table th,
  .table td {
    white-space: normal;
    text-overflow: clip
  }
}

/* Mobile CTA */
.m-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: linear-gradient(180deg, rgba(26, 13, 46, .8), rgba(26, 13, 46, .95));
  border-top: 1px solid var(--line);
  display: none;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

@media (max-width:880px) {
  .m-cta {
    display: flex
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(26, 13, 46, .8), rgba(45, 27, 78, .6));
  color: var(--muted);
  text-align: center;
  font-size: 14px
}

.footer-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-nav a {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 12px;
  transition: all .2s
}

.footer-nav a:hover {
  background: var(--glass);
  color: var(--yellow)
}

/* Glow effect */
.glow {
  box-shadow: 0 0 20px rgba(251, 191, 36, .3), 0 0 40px rgba(139, 92, 246, .2);
}

.section:nth-child(even) {
  background: linear-gradient(135deg, rgba(139, 92, 246, .03) 0%, rgba(251, 191, 36, .02) 100%);
}

/* Game Sections */
.game-section {
  margin: 48px 0;
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.game-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.game-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.game-section-title svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}

.game-section-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.game-section-nav .btn-view-all {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  transition: all 0.2s;
}

.game-section-nav .btn-view-all:hover {
  background: var(--glass);
  color: var(--yellow);
  border-color: var(--yellow);
}

/* Games Scroll */
.games-scroll-container {
  margin: 0 -20px;
  padding: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.games-scroll-container::-webkit-scrollbar {
  display: none;
}

.games-scroll {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 20px;
  padding-bottom: 20px;
}

.games-scroll-single-row {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

.game-card {
  width: 170px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22),
    0 0 20px var(--purple-glow);
  border-color: rgba(139, 92, 246, 0.4);
  z-index: 2;
}

.game-card-image-wrapper {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.games-page .game-card-image-wrapper {
  aspect-ratio: 336/502;
}

.game-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-image {
  transform: scale(1.1);
}

.game-card-info {
  padding: 12px;
  background: rgba(19, 10, 36, 0.6);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.game-card-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.game-card-rtp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.game-card-hot {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.btn-scroll {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.btn-scroll:hover {
  background: var(--white);
  color: var(--bg-1);
}

.btn-scroll svg {
  width: 18px;
  height: 18px;
}

/* Providers */
.providers-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.provider-card {
  min-width: 160px;
  height: auto;
  min-height: 90px;
  flex-shrink: 0;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 16px;
  text-align: center;
}

.provider-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--yellow);
}

.provider-card p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.3;
  text-transform: none;
  /* Reset if needed */
}

.provider-card:hover {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.provider-card img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1) brightness(2);
  opacity: 0.7;
  transition: all 0.2s;
  margin-bottom: 8px;
}

/* CSS for Static FAQ (Google Friendly & User Requested) */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0 0 24px 0;
  margin-bottom: 24px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  display: block;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  cursor: default;
  /* Not clickable */
  position: relative;
  padding: 0;
  user-select: text;
}

.faq-question:hover {
  color: var(--white);
}

/* Hide the pseudo-element completely */
.faq-question::after {
  display: none;
}

.faq-answer {
  display: block !important;
  /* Always visible */
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  opacity: 1;
  transform: none;
}

/* Remove animation artifacts */
.faq-item.active .faq-answer {
  display: block;
}

.provider-card:hover img {
  filter: none;
  opacity: 1;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 16px;
}

/* Media Queries (Micro) */
@media (max-width:380px) {
  .container {
    padding: 0 14px
  }

  .header__wrap {
    height: 64px
  }

  .hero__cta {
    gap: 10px
  }
}

/* Bottom Tab Bar (Mobile) */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(26, 13, 46, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--line);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  gap: 4px;
  text-decoration: none;
  transition: color 0.2s;
}

.tab-item svg {
  width: 20px;
  height: 20px;
}

.tab-item.active {
  color: var(--yellow);
}

/* Mobile: Hide yellow CTA button, show only purple */
@media (max-width:768px) {
  .hero__cta .btn--yellow {
    display: none
  }

  .hero__cta .btn--purple {
    width: 100%;
    text-align: center
  }
}

/* Tab Bar Mobile Tweaks */
@media (max-width: 880px) {
  .tab-bar {
    display: grid;
  }

  .m-cta {
    bottom: 68px;
    /* Move above tab bar */
  }

  .footer {
    padding-bottom: calc(68px + var(--mcta-h) + 20px) !important;
  }
}

.hero-grid,
.hero-review {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {

  .hero-grid,
  .hero-review {
    grid-template-columns: 1.2fr 0.8fr;
    /* Give text slightly more space */
  }
}

/* Chips (Tags) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.chip:first-child {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

/* Facts Grid */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}

.fact span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero Image Specifics */
.hero-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Play Now Button (Game Review) */
.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: var(--bg-1);
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 24px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(251, 191, 36, 0.4);
  filter: brightness(1.1);
  color: var(--bg-1);
}

/* Highlight Box */
.highlight {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.02));
  border-left: 4px solid var(--yellow);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.6;
}

.highlight strong {
  display: block;
  color: var(--yellow);
  margin-bottom: 8px;
  font-size: 16px;
}

/* Support Page Styles */
.support-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 8px;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.support-icon svg {
  width: 40px;
  height: 40px;
}

.support-card h3 {
  margin: 0;
  font-size: 20px;
  color: var(--white);
}

.support-availability {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  margin-top: auto;
}

/* Mobile Sticky CTA */
.m-cta {
  position: fixed;
  bottom: 80px;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  z-index: 999;
  display: none;
  pointer-events: none;
}

.m-cta .btn {
  pointer-events: auto;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Mobile Bottom Tab Bar */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
  display: none;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  text-decoration: none;
  gap: 4px;
  width: 25%;
  height: 100%;
}

.tab-item svg {
  width: 24px;
  height: 24px;
}

.tab-item.active {
  color: var(--yellow);
}

@media (max-width: 960px) {
  .m-cta {
    display: block;
  }

  .tab-bar {
    display: flex;
  }

  .footer {
    padding-bottom: 200px;
    /* Increased for better clearance */
  }
}

/* Step Guide Styles */
.step-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--line);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: var(--bg-1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.step-item h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.step-item p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

/* Responsible Gaming Tool Styles */
.rg-tool {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

.rg-tool:hover {
  border-color: var(--purple-2);
}

.rg-tool h4 {
  color: var(--white);
  margin: 0 0 10px;
  font-size: 18px;
}

.rg-tool p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* --- NEW: Premium FAQ System --- */
.faq-section {
  margin: 40px 0 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateX(4px);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(251, 191, 36, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--yellow);
  padding-bottom: 12px;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--yellow);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Horizontal line */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* Large enough for content */
  opacity: 1;
  padding-bottom: 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 13, 46, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 10px 0 12px;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  body {
    padding-bottom: 70px;
    /* Space for bottom nav */
  }

  /* Small layout fix for mobile headers */
  .header__wrap {
    padding: 12px 0;
  }
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  gap: 4px;
  transition: all 0.2s ease;
}

.mob-nav-item.active {
  color: var(--yellow);
}

.mob-nav-icon {
  width: 24px;
  height: 24px;
}

.mob-nav-item svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mob-nav-item.active svg {
  stroke: var(--yellow);
}

/* Ensure burger is visible by default */
.burger {
  display: none;
}

@media (max-width: 768px) {
  .burger {
    display: block;
    order: 3;
  }

  .lang-switcher {
    order: 2;
    margin-right: 15px;
  }

  .brand {
    order: 1;
  }
}