/* =========================================================
   SLOTORADO CASINO CANADA — Main Stylesheet
   Brand palette: deep forest dark + gold + green accent
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg-dark:     #0d1117;
  --bg-card:     #141b24;
  --bg-surface:  #1a2433;
  --bg-elevated: #1f2d3d;
  --gold:        #f5a623;
  --gold-light:  #ffc84a;
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --red:         #ef4444;
  --text-primary:#e8edf3;
  --text-muted:  #8fa3b8;
  --text-faint:  #4d6378;
  --border:      #243040;
  --border-gold: rgba(245,166,35,0.35);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --font-display:'Rajdhani', sans-serif;
  --font-body:   'Inter', sans-serif;
  --shadow-gold: 0 0 28px rgba(245,166,35,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; color: var(--gold); }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 700; color: var(--text-primary); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: var(--gold-light); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); }

p { margin-bottom: 0.9em; color: var(--text-primary); }
ul, ol { padding-left: 1.4em; margin-bottom: 0.9em; }
li { margin-bottom: 0.35em; }

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

section { padding: 56px 0; }
section + section { border-top: 1px solid var(--border); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f5a623 0%, #e8890c 100%);
  color: #0d1117;
  padding: 13px 32px;
  font-size: 0.95rem;
  box-shadow: 0 4px 18px rgba(245,166,35,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc84a 0%, #f5a623 100%);
  box-shadow: 0 6px 28px rgba(245,166,35,0.6);
  transform: translateY(-2px);
  color: #0d1117;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 11px 28px;
  font-size: 0.88rem;
}
.btn-secondary:hover {
  background: rgba(245,166,35,0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  padding: 13px 32px;
  font-size: 0.95rem;
  box-shadow: 0 4px 18px rgba(34,197,94,0.35);
}
.btn-green:hover {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  box-shadow: 0 6px 28px rgba(34,197,94,0.55);
  transform: translateY(-2px);
  color: #fff;
}

/* ---- TOP PROMO BANNER ---- */
.promo-top-bar {
  background: linear-gradient(90deg, #1a2d10 0%, #0f1f08 50%, #1a2d10 100%);
  border-bottom: 2px solid var(--green);
  padding: 11px 20px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.promo-top-bar .promo-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.promo-top-bar .promo-text span { color: var(--gold); font-size: 1.05rem; }
.promo-top-bar .btn { margin-left: 18px; padding: 7px 22px; font-size: 0.82rem; }

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

/* Logo SVG */
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 40px; height: 40px; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1;
}
.logo-wordmark span { color: var(--green); }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--gold); background: rgba(245,166,35,0.08); }

.header-cta { display: flex; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(34,197,94,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
    var(--bg-dark);
  padding: 72px 0 80px;
  border-bottom: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 14px; }
.hero-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-gold);
}
.hero-bonus-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hero-bonus-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-bonus-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 22px; }
.hero-bonus-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.hero-bonus-row:last-of-type { border-bottom: none; }
.hero-bonus-row .label { color: var(--text-muted); }
.hero-bonus-row .val { color: var(--gold); font-weight: 600; }
.hero-card .btn { width: 100%; margin-top: 20px; display: block; }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 36px; }
.section-header .eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 10px; }
.section-header p { color: var(--text-muted); max-width: 680px; }

/* ---- QUICK STATS ---- */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- BONUS CARDS ---- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.22s, box-shadow 0.22s;
  max-width: 100%;
}
.bonus-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.bonus-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.bonus-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.bonus-card .amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonus-card p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 16px; }
.bonus-card .btn { width: 100%; display: block; }

/* ---- REVIEW ARTICLE ---- */
.review-body { max-width: 840px; }
.review-body h2 { margin: 36px 0 14px; }
.review-body h3 { margin: 26px 0 10px; }
.review-body p { margin-bottom: 1em; }
.review-body ul, .review-body ol { margin-bottom: 1em; }
.review-body li { color: var(--text-muted); }

.review-score {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.score-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(245,166,35,0.07);
}
.score-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.score-max { font-size: 0.72rem; color: var(--text-muted); }
.score-details h4 { margin-bottom: 6px; font-size: 1.05rem; }
.score-details p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ---- PROS & CONS ---- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 22px;
}
.pros-box { border-top: 3px solid var(--green); }
.cons-box { border-top: 3px solid var(--red); }
.pros-box h4 { color: var(--green); margin-bottom: 14px; }
.cons-box h4 { color: var(--red); margin-bottom: 14px; }
.pros-box li, .cons-box li { font-size: 0.88rem; margin-bottom: 8px; color: var(--text-muted); }

/* ---- RATINGS TABLE ---- */
.ratings-list { margin: 20px 0 28px; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.rating-row:last-child { border-bottom: none; }
.rating-label { min-width: 150px; font-size: 0.88rem; color: var(--text-muted); }
.rating-bar-wrap { flex: 1; background: var(--bg-surface); border-radius: 4px; height: 8px; overflow: hidden; }
.rating-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%); }
.rating-score { min-width: 38px; text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 0.95rem; }

/* ---- TABLE (responsive) ---- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 20px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: 0.88rem;
}
th {
  background: var(--bg-surface);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ---- MID-CONTENT BANNER ---- */
.mid-banner {
  background: linear-gradient(135deg, #112209 0%, #0d2b12 50%, #1a3d0c 100%);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0;
}
.mid-banner-content h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 6px;
}
.mid-banner-content p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.mid-banner-content span { color: var(--gold); font-weight: 600; }
.mid-banner .btn { flex-shrink: 0; }

/* ---- FEATURE CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,166,35,0.25); }
.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
.feature-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

/* ---- PAYMENT CHIPS ---- */
.payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.chip {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: border-color 0.18s, color 0.18s;
}
.chip:hover { border-color: var(--border-gold); color: var(--gold); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  gap: 12px;
  transition: color 0.18s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.28s ease;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.28s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 22px 18px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--gold); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 14px; line-height: 1.65; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.18s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.78rem; color: var(--text-faint); line-height: 1.6; max-width: 780px; }
.footer-age {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--text-faint);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-faint);
  flex-shrink: 0;
}

/* ---- ANCHOR SCROLL OFFSET ---- */
[id] { scroll-margin-top: 80px; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .mid-banner { flex-direction: column; text-align: center; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 620px) {
  section { padding: 40px 0; }
  .hero { padding: 48px 0 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .promo-top-bar { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .promo-top-bar .btn { margin: 0; }
  .review-score { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  h1 { font-size: 1.7rem; }
  .hero-bonus-amount { font-size: 2.2rem; }
}
