/* ============================================
   LUCKERA CASINO – Główny arkusz stylów
   Paleta: Deep Black / Navy / Gold
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black:       #07070D;
  --navy:        #101726;
  --navy-light:  #172035;
  --navy-mid:    #1E2D48;
  --gold:        #C89A3A;
  --gold-light:  #E4B84D;
  --gold-pale:   #F2C14E;
  --gold-dark:   #8A651F;
  --cream:       #E7D7B0;
  --white:       #FFFFFF;
  --text:        #D4C9B5;
  --text-muted:  #8A8FA0;
  --border:      rgba(200,154,58,0.18);
  --card-bg:     rgba(23,32,53,0.85);
  --card-bg2:    rgba(30,45,72,0.7);
  --shadow:      0 4px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 24px rgba(200,154,58,0.22);
  --radius:      12px;
  --radius-lg:   20px;
  --trans:       0.25s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: 200px;
}
main { display: block; min-width: 0; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: 50px;
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
  white-space: nowrap;
  text-align: center;
}
.btn-primary:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,154,58,0.45);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }
.btn-ghost {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background var(--trans), color var(--trans);
}
.btn-ghost:hover { background: var(--gold); color: var(--black); }
.cta-center { text-align: center; margin-top: 2.5rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 200px; right: 0;
  z-index: 1000;
  background: rgba(7,7,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
/* Desktop: sidebar visible – hide logo & button in header */
@media (min-width: 901px) {
  .header-logo-wrap { display: none; }
  .header-inner .btn-primary { display: none; }
  .burger { display: none; }
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(200,154,58,0.3));
  transition: filter var(--trans), opacity var(--trans);
}
.logo:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(200,154,58,0.6));
  opacity: 0.92;
}
.footer-brand .logo-img { height: 32px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  width: 100%;
  background: var(--black);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(7,7,13,0.97) 0%,
    rgba(7,7,13,0.88) 40%,
    rgba(7,7,13,0.50) 65%,
    rgba(7,7,13,0.10) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 620px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: clamp(48px, 7vw, 90px) 0; }
.section-dark  { background: var(--navy); }
.section-light { background: var(--black); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Two Col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.col-text p { margin-bottom: 1rem; }
.col-text p:last-child { margin-bottom: 0; }

/* ---------- Check List ---------- */
.check-list { margin: 1rem 0; }
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--text);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Highlight Card ---------- */
.highlight-box {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-gold);
  position: sticky;
  top: 80px;
}
.highlight-box h3 {
  font-family: var(--font-head);
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
}
.highlight-list { margin-bottom: 1.5rem; }
.highlight-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.highlight-list li:last-child { border-bottom: none; }
.highlight-list span { font-weight: 600; color: var(--white); }

/* ============================================
   GAMES GRID
   ============================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  backdrop-filter: blur(6px);
}
.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.game-icon { font-size: 2.2rem; margin-bottom: 0.8rem; line-height: 1; }
.game-card h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.game-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.mini-list li {
  font-size: 0.82rem;
  color: var(--text);
  padding: 3px 0 3px 12px;
  position: relative;
}
.mini-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }

/* Games Banner */
.games-banner-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
}
.games-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.games-banner-wrap:hover .games-banner-img { transform: scale(1.01); }
.games-banner-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,7,13,0.92) 0%, transparent 100%);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 20px 16px 10px;
  text-align: center;
}

/* ============================================
   BONUS
   ============================================ */
.bonus-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.bonus-card {
  background: var(--card-bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: border-color var(--trans);
}
.bonus-card:hover { border-color: var(--gold); }
.bonus-main {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border-color: var(--gold-dark);
}
.bonus-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.bonus-card h3 { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.bonus-amount { color: var(--gold-light); font-weight: 700; font-size: 1rem; margin-bottom: 0.8rem; }
.bonus-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.table-title { font-family: var(--font-head); color: var(--gold); font-size: 1.15rem; margin-bottom: 1rem; }
.btn-tournament { margin-top: 1rem; display: inline-block; }
.bonus-table-wrap { margin-top: 0.5rem; }

/* ============================================
   PROVIDERS
   ============================================ */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.provider-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--trans), color var(--trans);
  white-space: nowrap;
}
.provider-item:hover { border-color: var(--gold); color: var(--gold); }
.providers-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================
   PAYMENTS
   ============================================ */
.payment-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}
.payment-group h3 { font-family: var(--font-head); color: var(--gold); margin-bottom: 1rem; font-size: 1.1rem; }
.payment-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.payment-list li:last-child { border-bottom: none; }
.pm-label { font-weight: 500; }
.pm-time { color: var(--text-muted); font-size: 0.82rem; white-space: nowrap; }

/* ============================================
   DATA TABLES
   ============================================ */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th {
  background: var(--navy-mid);
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 11px 14px;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--card-bg);
}
.data-table tbody tr:nth-child(even) td { background: rgba(23,32,53,0.5); }
.data-table tbody tr:hover td { background: rgba(200,154,58,0.07); }
.highlight-col { color: var(--gold-light) !important; font-weight: 600; }
.compare-table .highlight-col { background: rgba(200,154,58,0.06) !important; }

/* ============================================
   SECURITY
   ============================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.security-card {
  background: var(--card-bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--trans), transform var(--trans);
}
.security-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.sec-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.security-card h3 { font-family: var(--font-head); color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.security-card p { font-size: 0.855rem; color: var(--text-muted); }

/* ============================================
   RESPONSIBLE GAMBLING
   ============================================ */
.rg-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
.rg-text p { margin-bottom: 1rem; font-size: 0.95rem; }
.rg-box {
  background: rgba(200,154,58,0.06);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.rg-box h3 { font-family: var(--font-head); color: var(--gold); margin-bottom: 1rem; font-size: 1.1rem; }
.warn-list { margin-bottom: 1rem; }
.warn-list li {
  padding: 6px 0 6px 1.4rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.warn-list li:last-child { border-bottom: none; }
.warn-list li::before {
  content: '!';
  position: absolute;
  left: 0;
  color: #E8A020;
  font-weight: 700;
  font-size: 0.85rem;
  top: 7px;
}
.rg-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* ============================================
   STEPS
   ============================================ */
.steps-list { list-style: none; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200,154,58,0.3);
}
.step-content h3 { font-family: var(--font-head); color: var(--white); margin-bottom: 0.4rem; font-size: 1.1rem; padding-top: 10px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   MOBILE SECTION
   ============================================ */
.mobile-single { max-width: 900px; }
.mobile-single > p { margin-bottom: 1.5rem; font-size: 0.95rem; }
.mobile-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.mobile-two-col h3 { font-family: var(--font-head); color: var(--gold); margin: 0 0 0.8rem; font-size: 1.05rem; }
.compat-table-wrap { margin-top: 0.5rem; }

/* ============================================
   TOURNAMENTS
   ============================================ */
.tournaments-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}
.tournament-card {
  background: var(--card-bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--trans), transform var(--trans);
}
.tournament-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.tournament-card.featured {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border-color: var(--gold-dark);
}
.t-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.tournament-card h3 { font-family: var(--font-head); color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.t-prize { color: var(--gold-light); font-weight: 700; margin-bottom: 0.8rem; font-size: 0.95rem; }
.tournament-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.8rem; }

/* ============================================
   SUPPORT
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.support-card {
  background: var(--card-bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.support-card h3 { font-family: var(--font-head); color: var(--white); margin-bottom: 0.6rem; font-size: 1.05rem; }
.support-card p { font-size: 0.875rem; color: var(--text-muted); }
.supp-time { margin-top: 0.8rem; color: var(--gold); font-weight: 600; font-size: 0.85rem; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--card-bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--trans);
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold-pale); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-card p { font-size: 0.9rem; color: var(--text); margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.82rem; color: var(--text-muted); display: block; }
.review-author strong { color: var(--white); }
.rating-summary {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-num { font-family: var(--font-head); font-size: 3.5rem; color: var(--gold); line-height: 1; }
.rating-max { font-size: 1.2rem; color: var(--text-muted); }
.rating-breakdown { flex: 1; }
.rb-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.82rem; }
.rb-row span:first-child { width: 100px; flex-shrink: 0; color: var(--text-muted); }
.rb-row span:last-child { color: var(--gold); font-weight: 600; flex-shrink: 0; }
.rb-bar { flex: 1; height: 6px; background: var(--navy-mid); border-radius: 3px; overflow: hidden; }
.rb-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-pale)); border-radius: 3px; transition: width 1s ease; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 600;
  gap: 1rem;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: transform var(--trans); font-weight: 300; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding-bottom: 16px; }
.faq-answer[hidden] { display: none; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--black); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  padding: 3rem 20px 2rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.age-warning { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-top: 0.5rem; }
.footer-disclaimer h4 { font-family: var(--font-head); color: var(--gold); margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-disclaimer p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.6rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-legal { max-width: 480px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   SIDE NAV
   ============================================ */
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(7,7,13,0.82);
  border-right: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.sn-logo {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.sn-logo img { height: 28px; width: auto; filter: drop-shadow(0 0 6px rgba(200,154,58,0.3)); }
.side-nav ul { display: flex; flex-direction: column; gap: 2px; list-style: none; flex: 1; justify-content: center; }
.side-nav li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--trans), background var(--trans), padding-left var(--trans);
  white-space: nowrap;
  position: relative;
}
.side-nav li a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-pale));
  border-radius: 0 3px 3px 0;
  transition: height var(--trans);
}
.side-nav li a:hover,
.side-nav li a.active {
  color: var(--white);
  background: rgba(200,154,58,0.08);
  padding-left: 20px;
}
.side-nav li a:hover::before,
.side-nav li a.active::before { height: 60%; }
.side-nav li a.active { color: var(--gold-light); font-weight: 600; }
.sn-cta { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.sn-cta .btn-primary { width: 100%; text-align: center; padding: 11px 16px; font-size: 0.88rem; border-radius: 10px; justify-content: center; display: flex; align-items: center; gap: 6px; }
.sn-cta .btn-primary::before { content: '▶'; font-size: 0.65rem; }

/* ============================================
   RESPONSIVE – Large Tablet (max 1200px)
   ============================================ */
@media (max-width: 1200px) {
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .tournaments-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE – Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .highlight-box { position: static; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .rg-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE – Sidebar breakpoint (max 900px)
   ============================================ */
@media (max-width: 900px) {
  body { padding-left: 0; }
  .site-header { left: 0; }
  .burger { display: flex; }
  .header-logo-wrap { display: block !important; }
  .header-inner .btn-primary { display: inline-block !important; }

  /* Side nav slides in on burger click */
  .side-nav {
    display: flex !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1100;
  }
  .side-nav.mobile-open {
    transform: translateX(0);
    box-shadow: 4px 0 40px rgba(0,0,0,0.7);
  }

  /* Tap targets */
  .btn-primary,
  .btn-ghost,
  .faq-question,
  .side-nav li a { min-height: 44px; }

  /* Disable hover transforms on touch */
  .game-card:hover,
  .bonus-card:hover,
  .security-card:hover,
  .tournament-card:hover,
  .review-card:hover { transform: none; box-shadow: none; }

  .table-responsive { scroll-snap-type: x mandatory; }
}

/* ============================================
   RESPONSIVE – Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; }
  .header-inner .btn-primary { display: none !important; }

  .hero { min-height: 70vh; padding: 88px 0 48px; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; gap: 0.75rem; }
  .hero-cta .btn-large,
  .hero-cta .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; font-size: 1rem; }
  .hero-stats { gap: 1.5rem; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .container { padding: 0 16px; }

  .games-grid { grid-template-columns: 1fr; gap: 1rem; }
  .bonus-grid { grid-template-columns: 1fr; gap: 1rem; }
  .security-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .support-grid { grid-template-columns: 1fr; gap: 1rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .tournaments-grid { grid-template-columns: 1fr; gap: 1rem; }
  .payment-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .mobile-two-col { grid-template-columns: 1fr; gap: 1.5rem; }

  .step { grid-template-columns: 52px 1fr; gap: 1rem; margin-bottom: 1.5rem; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; }
  .step-content h3 { font-size: 1rem; padding-top: 6px; }

  .rating-summary { flex-direction: column; text-align: center; gap: 1.5rem; padding: 1.25rem; }
  .rb-row span:first-child { width: 80px; font-size: 0.78rem; }
  .rating-num { font-size: 2.8rem; }

  .game-card,
  .bonus-card,
  .security-card,
  .support-card,
  .review-card,
  .tournament-card { padding: 1.2rem; }
  .highlight-box { padding: 1.5rem; }

  .data-table { font-size: 0.78rem; min-width: 480px; }
  .data-table th, .data-table td { padding: 9px 10px; white-space: nowrap; }

  .rg-box { padding: 1.2rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 16px 1.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 0.5rem; }

  .providers-grid { gap: 0.5rem; }
  .provider-item { font-size: 0.8rem; padding: 8px 14px; }
}

/* ============================================
   RESPONSIVE – Small Mobile (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .security-grid { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
  .hero h1 { font-size: clamp(1.45rem, 7vw, 1.9rem); }
  .data-table { font-size: 0.75rem; min-width: 380px; }
  .data-table th, .data-table td { padding: 7px 8px; }
  .section-header h2 { font-size: clamp(1.3rem, 6vw, 1.7rem); }
  .bonus-amount { font-size: 0.92rem; }
  .faq-question { font-size: 0.9rem; }
  .step { grid-template-columns: 44px 1fr; }
  .step-num { width: 38px; height: 38px; font-size: 0.9rem; }
}

/* ============================================
   ACCESSIBILITY – Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
