/* =============================================
   Slotorado Casino Canada — Main Stylesheet
   Brand: dark bg, gold accent, teal accent
   ============================================= */

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

:root {
  --bg-dark:      #0d1117;
  --bg-card:      #161d27;
  --bg-card2:     #1c2535;
  --gold:         #f5a623;
  --gold-light:   #ffd166;
  --teal:         #00c9a7;
  --teal-dark:    #009e84;
  --text-main:    #e8eaf0;
  --text-muted:   #8a95a8;
  --border:       #2a3347;
  --red-accent:   #e74c5e;
  --radius:       12px;
  --radius-sm:    8px;
  --font-main:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

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

img { display: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== TOP PROMO BANNER ===== */
.top-promo-bar {
  background: linear-gradient(90deg, #1a0a2e 0%, #0f2027 40%, #1a1a00 100%);
  border-bottom: 2px solid var(--gold);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.top-promo-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(245,166,35,0.03) 40px,
    rgba(245,166,35,0.03) 80px
  );
}
.top-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.top-promo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-badge {
  background: var(--gold);
  color: #0d1117;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.top-promo-text strong {
  color: var(--gold-light);
  font-size: 17px;
}
.top-promo-text span {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
  padding: 12px 28px;
  font-family: var(--font-main);
  text-decoration: none;
}
.btn:active { transform: scale(.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e8920a 100%);
  color: #0d1117;
  box-shadow: 0 4px 18px rgba(245,166,35,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 24px rgba(245,166,35,.5);
  color: #0d1117;
  transform: translateY(-1px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #0d1117;
  box-shadow: 0 4px 18px rgba(0,201,167,.3);
}
.btn-teal:hover {
  box-shadow: 0 6px 24px rgba(0,201,167,.5);
  transform: translateY(-1px);
  color: #0d1117;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0d1117;
}

.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: rgba(13,17,23,.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

/* ===== SVG LOGO ===== */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text-main {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  font-family: var(--font-display);
}
.logo-text-sub {
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== MAIN NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--text-main); background: var(--bg-card); }
.main-nav a.active { color: var(--gold); }

.header-cta { display: flex; gap: 10px; align-items: center; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #0f1a2e 0%, #0d1117 50%, #1a1100 100%);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,201,167,.15);
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-bonus-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(245,166,35,.12), rgba(0,201,167,.08));
  border: 1px solid rgba(245,166,35,.3);
  border-radius: var(--radius);
  padding: 24px 40px;
  margin-bottom: 32px;
  gap: 8px;
}
.hero-bonus-amount {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
}
.hero-bonus-desc {
  font-size: 15px;
  color: var(--text-muted);
}
.hero-bonus-fs {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
}
.hero-cta-wrap { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== RATING STRIP ===== */
.rating-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
.rating-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.rating-star { color: var(--gold); font-size: 16px; }
.rating-num { font-weight: 800; color: var(--gold); font-size: 18px; }
.rating-label { color: var(--text-muted); }
.rating-sep { color: var(--border); font-size: 20px; }

/* ===== SECTIONS ===== */
.section { padding: 64px 20px; }
.section-alt { background: var(--bg-card); }
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: #fff;
}
.section-title span { color: var(--gold); }
.section-lead {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 720px;
  margin-bottom: 36px;
}
.section-header { margin-bottom: 40px; }

/* ===== FEATURE CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color .2s, transform .2s;
}
.card:hover {
  border-color: rgba(245,166,35,.4);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}
.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.card-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== MID PROMO BANNER ===== */
.mid-promo {
  background: linear-gradient(135deg, #1a0e00 0%, #0d1a10 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 36px 20px;
  text-align: center;
}
.mid-promo-inner {
  max-width: 800px;
  margin: 0 auto;
}
.mid-promo-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.mid-promo-text { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }

/* ===== BONUS TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.data-table th {
  background: var(--bg-card2);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.data-table .highlight { color: var(--gold); font-weight: 700; }
.data-table .ok { color: var(--teal); }
.data-table .badge-pill {
  display: inline-block;
  background: rgba(0,201,167,.15);
  border: 1px solid rgba(0,201,167,.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== GAMES CATEGORY GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.game-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.game-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245,166,35,.1);
  font-size: 26px;
}
.game-card-name { font-weight: 700; color: #fff; margin-bottom: 6px; font-size: 15px; }
.game-card-count { color: var(--text-muted); font-size: 13px; }

/* ===== PAYMENT GRID ===== */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.pay-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  transition: border-color .2s;
}
.pay-item:hover { border-color: rgba(245,166,35,.3); }
.pay-item-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.pay-item-name { font-size: 13px; font-weight: 600; color: var(--text-main); margin-bottom: 4px; }
.pay-item-time { font-size: 11px; color: var(--text-muted); }

/* ===== PROS CONS ===== */
.pros-cons-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-box, .cons-box {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.pros-box { border-top: 3px solid var(--teal); }
.cons-box { border-top: 3px solid var(--red-accent); }
.pros-cons-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-cons-title.pros { color: var(--teal); }
.pros-cons-title.cons { color: var(--red-accent); }
.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-cons-list li {
  font-size: 14px;
  color: var(--text-main);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pros-cons-list li::before {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pros-cons-list.pros-list li::before { content: '✔'; color: var(--teal); }
.cons-box .pros-cons-list li::before { content: '✖'; color: var(--red-accent); }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.step-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--gold);
  color: #0d1117;
  font-weight: 900;
  font-size: 13px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title { font-weight: 700; color: #fff; margin-bottom: 8px; margin-top: 4px; }
.step-text { font-size: 14px; color: var(--text-muted); }

/* ===== INFO BLOCKS ===== */
.info-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.info-box p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.info-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.info-box ul li {
  font-size: 14px;
  color: var(--text-main);
  display: flex;
  gap: 10px;
}
.info-box ul li::before { content: '›'; color: var(--gold); font-weight: 700; }

/* ===== REVIEW TEXT ===== */
.review-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  margin: 40px 0 16px;
}
.review-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin: 28px 0 12px;
}
.review-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.review-text strong { color: var(--text-main); }
.review-text ul {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-text ul li {
  color: var(--text-muted);
  font-size: 15px;
  display: flex;
  gap: 10px;
}
.review-text ul li::before { content: '›'; color: var(--gold); font-weight: 700; }

/* ===== SCORE BOX ===== */
.score-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.score-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.score-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.score-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(245,166,35,.4); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-main);
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-a p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== FOOTER ===== */
.site-footer {
  background: #080c11;
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); margin: 14px 0; line-height: 1.7; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--text-main); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-legal {
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-legal strong { color: var(--text-main); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--red-accent);
  color: var(--red-accent);
  font-weight: 900;
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta .btn-outline { display: none; }

  .hero { padding: 50px 16px 44px; }
  .hero-bonus-box { padding: 20px 24px; }

  .pros-cons-wrap { grid-template-columns: 1fr; }
  .info-2col { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }

  .section { padding: 44px 16px; }

  .top-promo-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
  .hero-bonus-box { padding: 18px 16px; }
  .top-promo-text strong { font-size: 15px; }
}

/* ===== HAMBURGER MENU (mobile) ===== */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .mobile-nav-toggle { display: flex; align-items: center; }
  .mobile-nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .mobile-nav-open .main-nav a { font-size: 18px; padding: 12px 24px; }
  .mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 28px;
    cursor: pointer;
  }
}

/* ===== NOTICE / ALERT ===== */
.notice {
  background: rgba(0,201,167,.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.notice strong { color: var(--teal); }

.divider { height: 1px; background: var(--border); margin: 0; }
