/* ============================================================
   SLOTORADO CASINO — slotoradocasino-gokken.com
   Brand palette: dark navy bg, gold accent, teal highlight
   ============================================================ */

:root {
  --bg-main:      #0d1117;
  --bg-card:      #161c27;
  --bg-card2:     #1c2333;
  --gold:         #f5a623;
  --gold-hover:   #ffc14d;
  --teal:         #00d4aa;
  --white:        #f0f0f0;
  --muted:        #8b9bb4;
  --border:       #2a3347;
  --pos:          #00d4aa;
  --neg:          #f0634a;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition:   0.22s ease;
  --max-width:    1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ============================================================ BUTTONS */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f5a623, #e8920f);
  color: #0d1117;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc14d, #f5a623);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.btn-primary.btn-large { font-size: 18px; padding: 16px 36px; border-radius: 10px; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 7px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: var(--gold); color: #0d1117; }

/* ============================================================ TOP BANNER */
.top-banner {
  background: linear-gradient(90deg, #1a2740, #0f1e38, #1a2740);
  border-bottom: 2px solid var(--gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  cursor: pointer;
}
.top-banner__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.top-banner__btn {
  background: var(--gold);
  color: #0d1117;
  border: none;
  border-radius: 6px;
  padding: 6px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.top-banner__btn:hover { background: var(--gold-hover); }

/* ============================================================ HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.logo { display: flex; align-items: center; }
.logo-svg { height: 38px; width: auto; }

.site-nav { display: flex; gap: 6px; }
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover { color: var(--white); background: var(--bg-card); }

.nav-cta {
  background: var(--gold);
  color: #0d1117;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-hover); }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ============================================================ HERO */
.hero {
  background: linear-gradient(160deg, #0f1e38 0%, #0d1117 60%, #0a1628 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.stat-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 22px;
  min-width: 110px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-cta { font-size: 17px; padding: 15px 36px; }
.hero-disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================ QUICK VERDICT */
.quick-verdict {
  padding: 60px 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.verdict-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.verdict-card--pros { border-top: 3px solid var(--teal); }
.verdict-card--cons { border-top: 3px solid #f0634a; }
.verdict-card--rating { border-top: 3px solid var(--gold); text-align: center; }
.verdict-icon { font-size: 28px; margin-bottom: 12px; }
.verdict-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
}
.verdict-card ul { list-style: none; }
.verdict-card ul li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.verdict-card--pros ul li::before { content: '✓'; color: var(--teal); position: absolute; left: 0; font-weight: 700; }
.verdict-card--cons ul li::before { content: '!'; color: #f0634a; position: absolute; left: 0; font-weight: 700; }
.big-rating {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 10px 0 8px;
}
.big-rating span { font-size: 28px; color: var(--muted); }
.verdict-card--rating p { font-size: 14px; color: var(--muted); margin: 0 0 20px; }

/* ============================================================ SECTIONS */
.section-review,
.section-bonuses,
.section-games,
.section-payments,
.section-trust,
.section-support,
.section-mobile,
.section-compare,
.section-faq,
.section-final {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.section-bonuses { background: var(--bg-card); }
.section-trust    { background: var(--bg-card); }
.section-compare  { background: var(--bg-card); }

h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.prose-block { max-width: 820px; }
.prose-block p { color: #c8d2e0; margin-bottom: 18px; font-size: 15.5px; line-height: 1.75; }
.prose-block h2, .prose-block h3 { margin-top: 36px; }

/* ============================================================ MID BANNER */
.mid-banner {
  background: linear-gradient(90deg, #1a2740, #0f3060, #1a2740);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 20px 0;
}
.mid-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mid-banner__tag {
  display: inline-block;
  background: var(--gold);
  color: #0d1117;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  margin-right: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mid-banner__text { font-size: 15px; font-weight: 600; color: var(--white); }

/* ============================================================ BONUS GRID */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.bonus-icon { font-size: 28px; margin-bottom: 10px; }
.bonus-card h3 { font-size: 17px; margin-bottom: 6px; }
.bonus-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.bonus-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.bonus-terms { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.bonus-terms h3 { margin-bottom: 14px; }
.bonus-terms p { color: #c8d2e0; font-size: 15px; line-height: 1.7; margin-bottom: 14px; }

/* ============================================================ GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.game-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.game-cat-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.game-cat-icon { font-size: 30px; margin-bottom: 12px; }
.game-cat-card h3 { font-size: 17px; margin-bottom: 8px; }
.game-cat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.providers-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 40px; }
.provider-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  transition: border-color var(--transition), color var(--transition);
}
.provider-tag:hover { border-color: var(--teal); color: var(--white); }

/* ============================================================ TABLES */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 36px; border-radius: var(--radius); }
.payments-table, .compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}
.payments-table th, .compare-table th {
  background: var(--bg-card2);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}
.payments-table td, .compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: #c8d2e0;
}
.payments-table tr:hover td, .compare-table tr:hover td { background: rgba(245,166,35,0.04); }
.compare-table td.pos { color: var(--teal); font-weight: 600; }
.compare-table td.neu { color: var(--gold); }

.payments-note { max-width: 820px; }
.payments-note h3 { margin-bottom: 14px; }
.payments-note p { color: #c8d2e0; font-size: 15px; line-height: 1.75; margin-bottom: 14px; }

/* ============================================================ TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.trust-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.trust-icon { font-size: 30px; margin-bottom: 12px; }
.trust-card h3 { font-size: 17px; margin-bottom: 10px; }
.trust-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================ SUPPORT */
.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.support-icon { font-size: 26px; margin-bottom: 10px; }
.support-card h3 { font-size: 16px; margin-bottom: 8px; }
.support-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ============================================================ MOBILE FEATURES */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.mobile-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.feat-icon { font-size: 20px; flex-shrink: 0; }

/* ============================================================ FAQ */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-card2); }
.faq-item.open .faq-question { background: var(--bg-card2); color: var(--gold); }
.faq-arrow {
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}
.faq-answer p { color: #c8d2e0; font-size: 14.5px; line-height: 1.75; }

/* ============================================================ FINAL CTA */
.final-cta {
  text-align: center;
  margin-top: 44px;
  padding: 44px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.disclaimer-text {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================ FOOTER */
.site-footer {
  background: #060a10;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start;
}
.footer-logo svg { display: block; }
.footer-tagline { font-size: 12px; color: var(--muted); margin-top: 8px; }
.footer-disclaimer p { font-size: 12px; color: #586270; line-height: 1.6; margin-bottom: 8px; }
.footer-disclaimer p strong { color: #8b9bb4; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .verdict-grid { grid-template-columns: 1fr 1fr; }
  .verdict-card--rating { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-badges { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(13,17,23,0.98); border-bottom: 1px solid var(--border); padding: 12px 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 24px; border-radius: 0; }
  .burger { display: block; }
  .nav-cta { display: none; }
  .header-inner { position: relative; }
  .verdict-grid { grid-template-columns: 1fr; }
  .mid-banner__inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-badges { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .hero { padding: 48px 0 40px; }
}

@media (max-width: 480px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .support-methods { grid-template-columns: 1fr; }
  .mobile-features { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 10px; }
  .stat-pill { min-width: 90px; padding: 10px 14px; }
  .stat-num { font-size: 22px; }
  .top-banner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
