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

/* ===== CSS VARIABLES ===== */
:root {
  --clr-primary: #E63946;
  --clr-primary-dark: #C1121F;
  --clr-primary-light: #FF6B6B;
  --clr-accent: #F4A261;
  --clr-accent-gold: #FFD700;
  --clr-bg: #FAFAFA;
  --clr-bg-warm: #FFF8F0;
  --clr-bg-card: #FFFFFF;
  --clr-bg-dark: #1A1A2E;
  --clr-bg-dark-2: #16213E;
  --clr-text: #2B2D42;
  --clr-text-light: #8D99AE;
  --clr-text-white: #F1FAEE;
  --clr-border: #E8E8E8;
  --clr-success: #2DC653;
  --clr-gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #0F3460 50%, #E63946 100%);
  --clr-gradient-cta: linear-gradient(135deg, #E63946 0%, #FF6B6B 100%);
  --clr-gradient-gold: linear-gradient(135deg, #FFD700 0%, #F4A261 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 24px rgba(230,57,70,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--clr-bg-warm); }
.section--dark { background: var(--clr-bg-dark); color: var(--clr-text-white); }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  position: relative;
  text-align: center;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--clr-gradient-cta);
  border-radius: 2px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
}

/* ===== ANIMATED CARD SYMBOLS ===== */
.floating-symbols {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.floating-symbols span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.08;
  animation: floatSymbol 15s infinite linear;
}
.floating-symbols span:nth-child(1) { left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.floating-symbols span:nth-child(2) { left: 15%; animation-delay: 2s; font-size: 1.8rem; }
.floating-symbols span:nth-child(3) { left: 30%; animation-delay: 4s; font-size: 3rem; }
.floating-symbols span:nth-child(4) { left: 50%; animation-delay: 1s; font-size: 2.2rem; }
.floating-symbols span:nth-child(5) { left: 65%; animation-delay: 3s; font-size: 1.5rem; }
.floating-symbols span:nth-child(6) { left: 80%; animation-delay: 5s; font-size: 2.8rem; }
.floating-symbols span:nth-child(7) { left: 90%; animation-delay: 6s; font-size: 2rem; }
.floating-symbols span:nth-child(8) { left: 40%; animation-delay: 7s; font-size: 1.6rem; }
@keyframes floatSymbol {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.08; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--clr-gradient-cta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
}
.logo span { color: var(--clr-primary); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: var(--transition);
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--clr-primary); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--clr-gradient-hero);
  overflow: hidden;
  padding-top: 70px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content {
  color: var(--clr-text-white);
  padding: 60px 0;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}
.hero__badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--clr-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero h1 .highlight {
  background: var(--clr-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__text {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
/* hero image now in grid, old absolute style removed */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-gradient-cta);
  color: white;
  box-shadow: 0 4px 20px rgba(230,57,70,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,57,70,0.45);
}
.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.btn--gold {
  background: var(--clr-gradient-gold);
  color: var(--clr-bg-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}
.btn--dark {
  background: var(--clr-bg-dark);
  color: white;
}
.btn--dark:hover {
  background: var(--clr-bg-dark-2);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 24px; font-size: 0.9rem; }

/* ===== CASINO LISTING ===== */
.casino-list { display: flex; flex-direction: column; gap: 16px; max-width: 960px; margin-left: auto; margin-right: auto; }
.casino-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.casino-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--clr-gradient-cta);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: var(--transition);
}
.casino-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(230,57,70,0.2);
}
.casino-card:hover::before { opacity: 1; }
.casino-card__rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 26px;
  height: 26px;
  background: var(--clr-bg-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}
.casino-card__logo {
  width: 120px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.casino-card__info { display: flex; flex-direction: column; gap: 4px; }
.casino-card__bonus-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-light);
}
.casino-card__bonus {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text);
}
.casino-card__promo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-width: 160px;
}
.casino-card__promo-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-light);
}
.promo-code-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px dashed var(--clr-accent);
  border-radius: var(--radius-sm);
  background: rgba(244,162,97,0.08);
  color: var(--clr-text);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', monospace;
}
.promo-code-btn:hover {
  background: rgba(244,162,97,0.15);
  border-color: var(--clr-accent-gold);
}
.promo-code-btn .copy-icon { font-size: 0.85rem; opacity: 0.5; }
.promo-code-btn.copied { border-color: var(--clr-success); background: rgba(45,198,83,0.08); }
.casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  min-width: 200px;
}
.casino-card__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.casino-card__review {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  text-decoration: underline;
}
.casino-card__review:hover { color: var(--clr-primary); }

/* ===== CRITERIA SECTION ===== */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px auto 0;
  max-width: 960px;
}
.criteria-grid .criteria-card:nth-child(4),
.criteria-grid .criteria-card:nth-child(5) {
  /* center the last 2 cards under the 3-column row */
}
@media (min-width: 769px) {
  .criteria-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .criteria-grid .criteria-card:nth-child(-n+3) {
    grid-column: span 2;
  }
  .criteria-grid .criteria-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .criteria-grid .criteria-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}
.criteria-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.criteria-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.criteria-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.criteria-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.criteria-card p {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 0; margin: 40px auto 0; position: relative; max-width: 860px; }
.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-border);
}
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.step__number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--clr-gradient-cta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(230,57,70,0.3);
}
.step__content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step__content p {
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ===== CASINO REVIEW CARDS ===== */
.review-cards { display: flex; flex-direction: column; gap: 40px; margin: 40px auto 0; max-width: 900px; }
.review-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(26,26,46,0.03), rgba(230,57,70,0.03));
  border-bottom: 1px solid var(--clr-border);
}
.review-card__logo-wrap {
  position: relative;
}
.review-card__logo-wrap .placeholder-note {
  display: block;
  font-size: 0.6rem;
  color: var(--clr-text-light);
  text-align: center;
  margin-top: 4px;
}
.review-card__header h3 {
  font-size: 1.5rem;
}
.review-card__body { padding: 28px 32px; }
.review-card__body p { margin-bottom: 16px; line-height: 1.8; }
.review-card__table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.review-card__table th,
.review-card__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.review-card__table th {
  background: var(--clr-bg-dark);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.review-card__table td {
  font-size: 0.95rem;
}
.review-card__table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.review-card__table tr:last-child td { border-bottom: none; }

/* ===== CONTENT SECTIONS (text from docx) ===== */
.content-block { max-width: 860px; margin-left: auto; margin-right: auto; }
.content-block p { margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }
.content-block ul, .content-block ol {
  padding-left: 0;
  margin-bottom: 20px;
}
.content-block ul li, .content-block ol li {
  position: relative;
  padding: 12px 0 12px 28px;
  line-height: 1.7;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
}
.content-block ol { counter-reset: item; }
.content-block ol li { counter-increment: item; }
.content-block ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--clr-primary);
}
.content-block h3 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  color: var(--clr-text);
}
.content-block strong { color: var(--clr-text); }

/* ===== INFO GRID (for game stats) ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px auto;
  max-width: 860px;
}
.info-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.info-card__value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-primary);
}
.info-card__label {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 32px auto 0; }
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--clr-bg-card);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(230,57,70,0.2); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  gap: 16px;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clr-primary);
  transition: var(--transition);
  min-width: 24px;
  text-align: center;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer__inner {
  padding: 0 24px 20px;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-white);
  padding: 60px 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-top: 12px; max-width: 400px; line-height: 1.7; }
.footer__links h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--clr-accent-gold);
}
.footer__links a { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; padding: 6px 0; }
.footer__links a:hover { color: white; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--clr-primary);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--clr-primary);
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f0f0f0;
}
.img-placeholder__note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.7rem;
  padding: 6px 8px;
  text-align: center;
}

/* ===== TABLE OF CONTENTS / NAV PILLS ===== */
.toc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
  justify-content: center;
}
.toc-nav a {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(230,57,70,0.06);
  color: var(--clr-text);
  transition: var(--transition);
}
.toc-nav a:hover {
  background: var(--clr-primary);
  color: white;
}

/* ===== RESPONSIBLE GAMBLING BANNER ===== */
.rg-banner {
  background: linear-gradient(135deg, #FFF3CD, #FFF8E1);
  border: 1px solid #FFECB5;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 32px auto 0;
  max-width: 860px;
}
.rg-banner__icon { font-size: 2rem; min-width: 40px; }
.rg-banner p { line-height: 1.7; color: #664D03; }

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

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--clr-text);
}
.mobile-nav a:hover { background: rgba(230,57,70,0.06); color: var(--clr-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero__image { width: 350px; opacity: 0.1; }
  .hero__grid { gap: 24px; }
  .hero__img { max-width: 340px; }
  .footer__top { grid-template-columns: 1fr; }
  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .casino-card__logo { margin: 0 auto; }
  .casino-card .img-placeholder { margin: 0 auto; }
  .casino-card__actions { width: 100%; }
  .casino-card__actions .btn { width: 100%; justify-content: center; }
  .casino-card__promo { align-items: center; }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero__image { display: none; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { margin-top: 20px; }
  .hero__img { max-width: 300px; }
  .hero__cta { justify-content: center; }
  .hero h1 { font-size: 2rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .steps::before { left: 20px; }
  .step__number { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; }
  .criteria-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card__header { flex-direction: column; text-align: center; padding: 20px; }
  .review-card__body { padding: 20px; }
  .review-card__table { font-size: 0.85rem; }
  .review-card__table th, .review-card__table td { padding: 10px 12px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .toc-nav { gap: 6px; }
  .toc-nav a { padding: 6px 14px; font-size: 0.8rem; }
  .rg-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .casino-card { padding: 16px; }
  .casino-card__bonus { font-size: 1.1rem; }
  .promo-code-btn { font-size: 0.8rem; }
  .section-title { font-size: 1.5rem; }
}
