/* =============================================
   SLOTORADO CASINO – CANADA REVIEW
   Brand: Dark Navy + Gold/Orange palette
   ============================================= */

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

:root {
  --bg-deep:    #0d1117;
  --bg-card:    #151c27;
  --bg-section: #111820;
  --bg-header:  #0a0f19;
  --gold:       #f5a623;
  --gold-light: #ffc857;
  --green:      #1db954;
  --accent:     #ff6b35;
  --text:       #e8eaf0;
  --text-muted: #8a95a8;
  --border:     #1e2a3a;
  --radius:     10px;
  --font-main:  'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  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 !important; }

/* ---- Typography ---- */
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.5em;
}
h2 {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold-light);
  margin: 1.2em 0 0.5em;
}
h3 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: #c8d0de;
  margin: 1em 0 0.4em;
}
p { margin-bottom: 1em; color: var(--text); }
ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: 0.4em; }
strong { color: var(--gold-light); }

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

section { padding: 48px 0; }
section:nth-child(even) { background: var(--bg-section); }

/* ---- TOP STICKY BANNER ---- */
.top-promo-bar {
  background: linear-gradient(90deg, #1a2540 0%, #0d1117 40%, #1a2540 100%);
  border-bottom: 2px solid var(--gold);
  padding: 10px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-promo-bar span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.top-promo-bar strong { color: var(--gold); font-size: 1.05rem; }

/* ---- HEADER ---- */
.site-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- LOGO ---- */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--gold);
  line-height: 1;
}
.logo-text span { color: #fff; }
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* ---- NAV ---- */
.site-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover { background: var(--bg-card); color: var(--gold); }

.btn-header {
  background: var(--gold);
  color: #000 !important;
  border-radius: 8px;
  padding: 10px 22px !important;
  font-weight: 800;
  font-size: 0.9rem;
}
.btn-header:hover { background: var(--gold-light) !important; }

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(135deg, #0a0f19 0%, #12203a 50%, #0a0f19 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 1.1rem;
  color: #b0bccf;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; }

/* ---- BONUS CARD (Hero side) ---- */
.bonus-card {
  background: linear-gradient(145deg, #1a2a45, #0f1e35);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 70%);
}
.bonus-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.bonus-card-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-card-sub {
  font-size: 1rem;
  color: #c8d0de;
  margin-bottom: 20px;
}
.bonus-card-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: left;
}
.bonus-card-perks li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 8px;
  align-items: center;
  color: #c0cad8;
}
.bonus-card-perks li::before { content: '✓'; color: var(--green); font-weight: 700; }
.bonus-card-footer { font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #000;
}
.btn-primary:hover { color: #000; }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-secondary:hover { background: rgba(245,166,35,0.1); color: var(--gold); }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* ---- RATING STARS ---- */
.rating { display: flex; gap: 4px; align-items: center; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-score { font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-left: 8px; }
.rating-label { font-size: 0.82rem; color: var(--text-muted); margin-left: 4px; }

/* ---- INFO CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color 0.2s;
}
.info-card:hover { border-color: var(--gold); }
.info-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}
.info-card-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-card-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

/* ---- BONUS STRIP ---- */
.bonus-strip {
  background: linear-gradient(90deg, #12203a, #1a2a45, #12203a);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 28px 0;
}
.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-strip-text .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.bonus-strip-text .amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.bonus-strip-text .sub { font-size: 1rem; color: #c0cad8; }

/* ---- PRO/CON TABLE ---- */
.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pro-list, .con-list {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
}
.pro-list { border-top: 3px solid var(--green); }
.con-list { border-top: 3px solid #ef4444; }
.pro-list h3 { color: var(--green); margin-top: 0; }
.con-list h3 { color: #ef4444; margin-top: 0; }
.pro-list ul, .con-list ul { list-style: none; padding: 0; }
.pro-list li::before { content: '✓ '; color: var(--green); }
.con-list li::before { content: '✗ '; color: #ef4444; }

/* ---- SCROLLABLE TABLE ---- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.93rem;
}
thead { background: #12203a; }
th {
  padding: 13px 16px;
  text-align: left;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(245,166,35,0.04); }
.td-green { color: var(--green); font-weight: 600; }
.td-gold  { color: var(--gold);  font-weight: 600; }

/* ---- GAME CATEGORY CHIPS ---- */
.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,0.07); }
.chip-icon { font-size: 1rem; }

/* ---- PAYMENT GRID ---- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color 0.2s;
}
.payment-item:hover { border-color: var(--gold); color: var(--text); }
.payment-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.payment-name { font-weight: 600; display: block; margin-bottom: 2px; color: var(--text); }
.payment-time { font-size: 0.75rem; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(255,107,53,0.07));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
}
.highlight-box p { margin-bottom: 0; }

/* ---- STEPS ---- */
.steps-list { list-style: none; padding: 0; counter-reset: steps; margin: 20px 0; }
.steps-list li {
  counter-increment: steps;
  padding: 16px 20px 16px 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  position: relative;
  font-size: 0.95rem;
}
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- FAQ ACCORDION ---- */
.faq-list { margin: 20px 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  user-select: none;
  list-style: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 400;
  line-height: 1;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 18px;
  color: #aab3c2;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, #0f1e35 0%, #1a2a45 50%, #0f1e35 100%);
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-top: 0; font-size: 2rem; color: var(--gold); }
.cta-section p { max-width: 540px; margin: 0 auto 28px; color: #b0bccf; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #8a95a8; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-about { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: #4a5568;
  max-width: 680px;
  line-height: 1.5;
}
.footer-legal { font-size: 0.78rem; color: var(--text-muted); }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 28px; }
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.section-header h2 { margin: 0; }
.section-header p { color: var(--text-muted); margin: 8px 0 0; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold { background: rgba(245,166,35,0.15); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); }
.badge-green { background: rgba(29,185,84,0.15); color: var(--green); border: 1px solid rgba(29,185,84,0.3); }
.badge-red { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }

/* ---- DIVIDER ---- */
.divider { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .bonus-card { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pro-con-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-nav { display: none; }
  .hero { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .bonus-strip-inner { flex-direction: column; text-align: center; }
  .header-inner { gap: 10px; }
  .btn { padding: 12px 22px; font-size: 0.95rem; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 36px 0; }
}
@media (max-width: 400px) {
  .cards-grid { grid-template-columns: 1fr; }
}
