/* ============================================
   SLOTORADO CASINO CANADA — STYLESHEET
   Brand: Dark navy + gold accent
   ============================================ */

:root {
  --bg-deep:     #0d0d1a;
  --bg-dark:     #13132b;
  --bg-card:     #1a1a35;
  --bg-card2:    #1e1e3c;
  --gold:        #d4a017;
  --gold-light:  #f0c040;
  --gold-dim:    #a07810;
  --green-acc:   #1db954;
  --text-main:   #e8e8f0;
  --text-muted:  #9090b0;
  --text-dim:    #6060808;
  --border:      #2a2a4a;
  --border-gold: #d4a01740;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(212,160,23,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BONUS BAR ── */
.top-bonus-bar {
  background: linear-gradient(90deg, #1a1a00, #2a1f00, #1a1a00);
  border-bottom: 2px solid var(--gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.bonus-bar-text {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── BUTTONS ── */
.btn-cta {
  background: var(--gold);
  color: #0d0d1a;
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--gold-light); transform: scale(1.03); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0d0d1a;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: var(--shadow-gold); transform: translateY(-1px); }

.btn-primary.btn-large { padding: 16px 40px; font-size: 1.1rem; }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--gold); color: #0d0d1a; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}
.btn-outline:hover { background: var(--gold); color: #0d0d1a; }

.btn-nav-cta {
  background: var(--gold);
  color: #0d0d1a;
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-nav-cta:hover { background: var(--gold-light); }

/* ── HEADER ── */
.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 44px;
  z-index: 90;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo { display: flex; align-items: center; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--gold); background: var(--border); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 1.3rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #0d0d1a 0%, #13132b 40%, #1a1500 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 64px 0 56px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--border-gold);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 2px; }
.rating-num { font-size: 1.3rem; font-weight: 800; color: var(--gold-light); }
.rating-label { font-size: 0.85rem; color: var(--text-muted); }

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num { font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── MAIN CONTENT ── */
.main-content { padding: 48px 0; }

.section-block {
  margin-bottom: 56px;
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.section-block h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 28px 0 12px;
}

.section-block p { color: var(--text-main); margin-bottom: 14px; }
.section-block p:last-child { margin-bottom: 0; }

/* ── QUICK FACTS TABLE ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 400px;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 38%;
  white-space: nowrap;
}

.info-table td { color: var(--text-main); }
.info-table tbody tr:hover { background: var(--bg-card2); }
.info-table thead tr { background: var(--bg-dark); }
.info-table thead th { color: var(--gold); font-weight: 700; }

/* ── BONUS CARDS ── */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 32px;
}

.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bonus-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-gold); }
.bonus-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }

.bonus-card-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0d0d1a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.bonus-icon { font-size: 2rem; margin-bottom: 10px; }

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 10px;
}

.bonus-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.bonus-extra {
  font-size: 0.85rem;
  color: var(--green-acc);
  font-weight: 600;
  margin-bottom: 16px;
}

.bonus-details {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  padding: 0;
}
.bonus-details li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}
.bonus-details li::before { content: "✓ "; color: var(--green-acc); }

/* ── MID BANNER ── */
.mid-banner {
  background: linear-gradient(90deg, #1a1500, #2a2000, #1a1500);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0 0 40px;
}
.mid-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mid-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mid-banner-text strong {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 800;
}
.mid-banner-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── GAME CATEGORIES ── */
.game-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.game-cat-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: border-color 0.2s;
}
.game-cat-card:hover { border-color: var(--gold-dim); }

.game-cat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.game-cat-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold-light); margin: 0 0 10px; }
.game-cat-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── SECURITY GRID ── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.security-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.sec-icon { font-size: 1.6rem; margin-bottom: 10px; }
.security-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--gold-light); margin: 0 0 8px; }
.security-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── PROS / CONS ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.pros, .cons {
  background: var(--bg-card2);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.pros { border: 1px solid rgba(29,185,84,0.3); }
.cons { border: 1px solid rgba(220,50,50,0.3); }
.pros h3 { color: var(--green-acc); margin-bottom: 16px; }
.cons h3 { color: #ff6b6b; margin-bottom: 16px; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  min-width: 50px;
  line-height: 1;
  padding-top: 2px;
}
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin: 0 0 6px; }
.step-content p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ── FAQ ── */
.faq-list { margin-top: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-card2);
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--border); }
.faq-arrow { color: var(--gold); font-size: 0.85rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-answer {
  display: none;
  padding: 0 20px;
  background: var(--bg-dark);
}
.faq-answer.open { display: block; padding: 16px 20px; }
.faq-answer p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
}
.footer-links h4, .footer-info h4 {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold); }
.footer-info p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.age-warning { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}
.footer-rg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.rg-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
}
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .game-categories { grid-template-columns: repeat(2, 1fr); }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .security-grid { grid-template-columns: 1fr; }
  .comparison-table th:nth-child(3), .comparison-table td:nth-child(3) { display: none; }
}

@media (max-width: 700px) {
  .top-bonus-bar { flex-direction: column; gap: 10px; }
  .site-header { top: 72px; }

  .mobile-menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    z-index: 89;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 14px; width: 100%; }
  .btn-nav-cta { width: 100%; margin-top: 8px; }

  .hero { padding: 40px 0 36px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .section-block { padding: 22px 16px; }

  .game-categories { grid-template-columns: 1fr; }

  .step { flex-direction: column; gap: 10px; }
  .step-num { font-size: 1.4rem; }

  .mid-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-num { font-size: 1.2rem; }
}
