/* ============================================================
   Golden Panda Casino — Main Stylesheet
   Mobile-first | Full Responsive | FR Market
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --gold-primary:  #C9A84C;
  --gold-light:    #F0D080;
  --gold-dark:     #8B6914;
  --black-deep:    #0A0A0A;
  --black-rich:    #111111;
  --black-card:    #161616;
  --black-panel:   #1C1C1C;
  --black-border:  #2A2A2A;
  --text-primary:  #F5F0E8;
  --text-muted:    #9A9080;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-gold:   0 0 30px rgba(201,168,76,0.25);
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --header-h:      64px;
  --section-py:    56px;
  --container-px:  16px;
}

@media (min-width: 768px) {
  :root {
    --header-h:     72px;
    --section-py:   80px;
    --container-px: 24px;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  background-color: var(--black-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--gold-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { font-family: var(--font-body); }

/* ── Typography — Mobile First ──────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.75rem, 6vw, 3.6rem); font-weight: 800; color: var(--gold-light); }
h2 { font-size: clamp(1.35rem, 4.5vw, 2.4rem); font-weight: 700; color: var(--gold-primary); }
h3 { font-size: clamp(1.05rem, 3vw, 1.5rem);  font-weight: 600; color: var(--gold-light); }
h4 { font-size: clamp(0.95rem, 2.5vw, 1.1rem); font-weight: 600; color: var(--text-primary); }

p { font-size: 1rem; color: var(--text-primary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--gold-light); font-weight: 600; }

/* ── Gold Divider ───────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 0.75rem auto 1.25rem;
  border-radius: 2px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section-alt  { background: var(--black-rich); }
.section-dark { background: var(--black-card); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .section-header { margin-bottom: 56px; } }

.section-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}
@media (min-width: 768px) { .section-header p { font-size: 1.05rem; } }

/* ── Header / Nav ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
}
@media (min-width: 768px) { .logo img { height: 48px; } }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 480px) { .logo-text { font-size: 1.15rem; } }
@media (min-width: 768px) { .logo-text { font-size: 1.25rem; } }

.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* Desktop Nav */
nav.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  nav.main-nav { display: flex; }
}
nav.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
nav.main-nav a:hover { color: var(--gold-primary); }
nav.main-nav a:hover::after { transform: scaleX(1); }

.btn-cta-nav {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)) !important;
  color: var(--black-deep) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  white-space: nowrap;
}
.btn-cta-nav::after { display: none !important; }
.btn-cta-nav:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary)) !important;
  box-shadow: 0 6px 25px rgba(201,168,76,0.5) !important;
  transform: translateY(-1px);
  color: var(--black-deep) !important;
}

/* ── Mobile Menu Toggle ─────────────────────────────────────── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
nav.main-nav.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px var(--container-px) 32px;
  gap: 0;
  border-bottom: 1px solid var(--black-border);
  align-items: stretch;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  z-index: 999;
}
nav.main-nav.mobile-open a {
  font-size: 1rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--black-border);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
nav.main-nav.mobile-open a:last-child { border-bottom: none; }
nav.main-nav.mobile-open a::after { display: none; }
nav.main-nav.mobile-open .btn-cta-nav {
  margin-top: 16px;
  text-align: center !important;
  padding: 14px 20px !important;
  justify-content: center;
  border-radius: var(--radius-sm) !important;
  font-size: 0.95rem !important;
}

/* ── Hero Section ───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-panda.jpg');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero-bg { background-position: center right; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.93) 40%,
    rgba(10,10,10,0.65) 70%,
    rgba(10,10,10,0.3) 100%
  );
}
@media (min-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      105deg,
      rgba(10,10,10,0.96) 0%,
      rgba(10,10,10,0.88) 45%,
      rgba(10,10,10,0.45) 75%,
      rgba(10,10,10,0.2) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 40px var(--container-px) 48px;
}
@media (min-width: 768px) { .hero-content { padding: 48px var(--container-px) 64px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
}
@media (min-width: 480px) { .hero-badge { font-size: 0.78rem; } }

.hero-badge-dot {
  width: 6px; height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 6px #4CAF50;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title { margin-bottom: 20px; }
.hero-title em {
  display: block;
  font-style: normal;
  font-size: clamp(0.7rem, 2vw, 1rem);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Keyword anchor line below H1 — SEO visible, visually unobtrusive */
.hero-sub-kw {
  font-size: 0.82rem;
  color: rgba(212,175,55,0.55);
  letter-spacing: 0.04em;
  margin: 6px 0 20px;
  font-weight: 400;
}
.hero-sub-kw strong {
  color: rgba(212,175,55,0.75);
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-direction: column;
  margin-bottom: 36px;
}
@media (min-width: 420px) {
  .hero-cta-group { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
@media (min-width: 768px) {
  .hero-cta-group { gap: 16px; margin-bottom: 48px; }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--black-deep);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
  text-decoration: none;
  width: 100%;
}
@media (min-width: 420px) { .btn-primary { width: auto; } }
@media (min-width: 768px) { .btn-primary { padding: 15px 36px; font-size: 0.95rem; } }

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  box-shadow: 0 8px 35px rgba(201,168,76,0.6);
  transform: translateY(-2px);
  color: var(--black-deep);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
}
@media (min-width: 420px) { .btn-secondary { width: auto; } }
@media (min-width: 768px) { .btn-secondary { padding: 14px 30px; } }

.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
}
@media (min-width: 768px) { .hero-stats { gap: 40px; } }

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 4px;
}

/* ── Jackpot Bar ────────────────────────────────────────────── */
#jackpot-bar {
  background: linear-gradient(90deg, rgba(201,168,76,0.06), rgba(201,168,76,0.14), rgba(201,168,76,0.06));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 12px 0;
  text-align: center;
}

.jackpot-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 var(--container-px);
}
@media (min-width: 768px) { .jackpot-ticker { gap: 16px; } }

.jackpot-ticker label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.jackpot-amount {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}

/* ── Info Bar ───────────────────────────────────────────────── */
#info-bar {
  background: var(--black-panel);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 14px 0;
  overflow: hidden;
}
.info-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding: 0 var(--container-px);
}
@media (min-width: 768px) { .info-bar-inner { gap: 20px 48px; } }

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
@media (min-width: 768px) { .info-item { font-size: 0.875rem; } }

.info-item i { color: var(--gold-primary); font-size: 0.9rem; }

/* ── Cards Grid ─────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.card {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .card { padding: 32px 28px; } }

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}
@media (min-width: 768px) { .card-icon { width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: 20px; } }

.card h3 { margin-bottom: 10px; font-size: 1rem; }
@media (min-width: 768px) { .card h3 { margin-bottom: 12px; font-size: 1.1rem; } }
.card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Games Showcase ─────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
}

.game-card {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.game-card-thumb {
  height: 100px;
  background: linear-gradient(135deg, var(--black-card), var(--black-panel));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
@media (min-width: 768px) { .game-card-thumb { height: 130px; font-size: 3rem; } }
.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}
.game-card-info { padding: 10px 12px; }
.game-card-info h4 { font-size: 0.82rem; margin-bottom: 4px; }
@media (min-width: 768px) { .game-card-info h4 { font-size: 0.9rem; } }
.game-card-info span { font-size: 0.7rem; color: var(--text-muted); }
.game-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Tables — scrollable on mobile ─────────────────────────── */
.data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--black-border);
  margin: 24px 0;
}
@media (min-width: 768px) { .data-table-wrap { margin: 32px 0; } }

.data-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.82rem;
}
@media (min-width: 768px) { .data-table { font-size: 0.9rem; } }

.data-table thead tr {
  background: linear-gradient(90deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.data-table thead th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-primary);
  white-space: nowrap;
}
@media (min-width: 768px) { .data-table thead th { padding: 14px 20px; font-size: 0.8rem; } }

.data-table tbody tr {
  border-bottom: 1px solid var(--black-border);
  transition: background var(--transition);
}
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.data-table tbody td {
  padding: 12px 14px;
  color: var(--text-primary);
  white-space: nowrap;
}
@media (min-width: 768px) { .data-table tbody td { padding: 13px 20px; white-space: normal; } }

.td-gold { color: var(--gold-primary); font-weight: 600; }
.td-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(76,175,80,0.15);
  color: #81C784;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Lists ──────────────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.feature-list li::before {
  content: '◆';
  color: var(--gold-primary);
  font-size: 0.55rem;
  margin-top: 7px;
  flex-shrink: 0;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check-list li i {
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── Bonus Cards ────────────────────────────────────────────── */
.bonus-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .bonus-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .bonus-cards { grid-template-columns: repeat(4, 1fr); }
}

.bonus-card {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) { .bonus-card { padding: 28px; } }

.bonus-card.featured {
  border-color: rgba(201,168,76,0.5);
  background: linear-gradient(160deg, rgba(201,168,76,0.08), var(--black-panel));
}
.bonus-card.featured::after {
  content: 'POPULAIRE';
  position: absolute;
  top: 16px; right: -22px;
  background: var(--gold-primary);
  color: var(--black-deep);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 36px;
  transform: rotate(45deg);
  white-space: nowrap;
}
@media (max-width: 479px) { .bonus-card.featured::after { display: none; } }

.bonus-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.bonus-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-amount span { font-size: 1.2rem; font-weight: 400; }
.bonus-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.bonus-card h3 { font-size: 1rem; margin-bottom: 10px; }
.bonus-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; flex: 1; }

/* ── Providers Row ──────────────────────────────────────────── */
.providers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.provider-badge {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
@media (min-width: 768px) { .provider-badge { padding: 12px 24px; font-size: 0.85rem; } }
.provider-badge:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-primary);
  background: rgba(201,168,76,0.05);
}

/* ── Two Column Layout ──────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (min-width: 1024px) {
  .two-col { gap: 60px; }
}

/* ── Visual Box ─────────────────────────────────────────────── */
.visual-box {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .visual-box { padding: 40px; } }

.visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.visual-box-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.5));
  display: block;
}
@media (min-width: 768px) { .visual-box-icon { font-size: 4rem; margin-bottom: 20px; } }

/* ── Security mini-grid inside visual-box ───────────────────── */
.sec-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
  margin-top: 20px;
}
.sec-mini-card {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.sec-mini-card i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 7px;
  display: block;
}
.sec-mini-card strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 3px;
  color: var(--text-primary);
}
.sec-mini-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Payment Methods ────────────────────────────────────────── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 480px) {
  .payment-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .payment-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
}

.payment-item {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  transition: var(--transition);
}
@media (min-width: 768px) { .payment-item { padding: 16px 12px; } }
.payment-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}
.payment-item i {
  font-size: 1.4rem;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 6px;
}
@media (min-width: 768px) { .payment-item i { font-size: 1.6rem; } }
.payment-item span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
}

.testimonial-card {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
}
@media (min-width: 768px) { .testimonial-card { padding: 28px; } }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 16px;
  font-size: 4rem;
  font-family: var(--font-display);
  color: rgba(201,168,76,0.1);
  line-height: 1;
}
.stars { color: var(--gold-primary); font-size: 0.82rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.65;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  color: var(--black-deep);
  flex-shrink: 0;
}
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.author-city { font-size: 0.72rem; color: var(--text-muted); }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: rgba(201,168,76,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
  gap: 12px;
  line-height: 1.4;
}
@media (min-width: 768px) { .faq-question { padding: 18px 24px; font-size: 0.95rem; } }
.faq-question:hover { color: var(--gold-primary); }
.faq-question i {
  color: var(--gold-primary);
  font-size: 0.75rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: 0 18px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (min-width: 768px) { .faq-answer-inner { padding: 0 24px 18px; } }

/* ── Steps ──────────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .steps-row { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.step-item { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold-primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}
@media (min-width: 768px) { .step-num { width: 64px; height: 64px; font-size: 1.5rem; margin-bottom: 20px; } }
.step-item:hover .step-num { background: var(--gold-primary); color: var(--black-deep); }
.step-item h4 { margin-bottom: 6px; font-size: 0.92rem; }
.step-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ── Content Block ──────────────────────────────────────────── */
.content-block p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.7; }
.content-block h3 { margin-bottom: 14px; }

/* ── License Badges ─────────────────────────────────────────── */
.license-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.license-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.license-badge i { color: var(--gold-primary); font-size: 1.1rem; }
.license-badge div strong { display: block; font-size: 0.82rem; margin-bottom: 2px; }
.license-badge div span { font-size: 0.7rem; color: var(--text-muted); }

/* ── Ritual Grid ────────────────────────────────────────────── */
.ritual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 480px) {
  .ritual-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .ritual-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.ritual-card {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: var(--transition);
}
@media (min-width: 768px) { .ritual-card { padding: 28px; } }
.ritual-card:hover { border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); }
.ritual-symbol { font-size: 2rem; margin-bottom: 12px; }
@media (min-width: 768px) { .ritual-symbol { font-size: 2.4rem; margin-bottom: 16px; } }
.ritual-card h4 { color: var(--gold-primary); margin-bottom: 8px; font-size: 0.95rem; }
.ritual-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Responsible Gaming Grid ────────────────────────────────── */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .rg-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 960px) {
  .rg-grid { grid-template-columns: repeat(6, 1fr); gap: 20px; }
}

.rg-card {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
}
@media (min-width: 768px) { .rg-card { padding: 24px; } }
.rg-card:hover { border-color: rgba(201,168,76,0.2); }
.rg-card i { font-size: 1.75rem; color: var(--gold-primary); margin-bottom: 10px; display: block; }
.rg-card h4 { font-size: 0.85rem; margin-bottom: 6px; }
.rg-card p { font-size: 0.75rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
  padding: 48px 0 20px;
}
@media (min-width: 768px) { #site-footer { padding: 60px 0 24px; } }

/* ============================================================
   BANNERS
   ============================================================ */
.banner-section {
  padding: 0 0 16px;
}

.banner-block {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin: 28px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(212,175,55,0.25);
}

.banner-block a {
  display: block;
  line-height: 0;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.banner-img--wide {
  object-position: center center;
  max-height: 320px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .banner-img--wide {
    max-height: 260px;
  }
  .banner-section {
    padding: 0 0 24px;
  }
}

@media (min-width: 1024px) {
  .banner-img--wide {
    max-height: none;
    object-fit: fill;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }

.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

.footer-col h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--gold-primary); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { justify-content: space-between; }
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); margin: 0; }
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.55;
  text-align: center;
  margin-top: 20px;
  line-height: 1.65;
  padding: 0 4px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── Scroll To Top ──────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 24px; right: 20px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  border-radius: 50%;
  color: var(--black-deep);
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
@media (min-width: 768px) { #scroll-top { bottom: 32px; right: 32px; width: 48px; height: 48px; } }
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 28px rgba(201,168,76,0.6); }

/* ── Cookie Banner ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(28,28,28,0.98);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(8px);
}
@media (min-width: 640px) {
  #cookie-banner { flex-direction: row; align-items: center; padding: 14px 24px; }
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.78rem; color: var(--text-muted); margin: 0; flex: 1; line-height: 1.5; }
.btn-accept-cookie {
  background: var(--gold-primary);
  color: var(--black-deep);
  border: none;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  align-self: center;
  width: 100%;
}
@media (min-width: 640px) { .btn-accept-cookie { width: auto; } }
.btn-accept-cookie:hover { background: var(--gold-light); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { transition: none; opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.gold-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ── Utility Classes ────────────────────────────────────────── */
.mt-sm   { margin-top: 16px; }
.mb-section { margin-bottom: 32px; }
.mt-cta  { margin-top: 20px; display: inline-flex; }
@media (min-width: 768px) {
  .mt-sm      { margin-top: 20px; }
  .mb-section { margin-bottom: 40px; }
  .mt-cta     { margin-top: 28px; }
}

/* ── Element-specific helpers ───────────────────────────────── */
.progress-title {
  font-size: 1rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 600;
}
@media (min-width: 768px) { .progress-title { margin-bottom: 24px; } }

.visual-box-heading {
  margin-bottom: 12px;
}
@media (min-width: 768px) { .visual-box-heading { margin-bottom: 16px; } }

.visual-box-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media (min-width: 768px) { .visual-box-desc { font-size: 0.9rem; margin-bottom: 24px; } }

.faq-centered {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-age-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.footer-rg-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-sm {
  padding: 11px 20px !important;
  font-size: 0.82rem !important;
  width: auto !important;
}

.mt-section  { margin-top: 32px; }
.mt-section-lg { margin-top: 40px; }
@media (min-width: 768px) {
  .mt-section   { margin-top: 40px; }
  .mt-section-lg { margin-top: 48px; }
}

.td-check { color: #81C784; font-size: 0.9rem; }

/* Oracle section text helpers */
.oracle-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 14px;
}
.oracle-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(139,105,20,0.06));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-banner { padding: 60px 40px; } }
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 250px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner > p { max-width: 540px; margin: 0 auto 28px; color: var(--text-muted); }
.cta-banner .hero-cta-group { justify-content: center; margin-bottom: 0; }
.cta-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 16px;
  opacity: 0.65;
}
