/* ============================================================
   SLOTORADO CASINO ONLINE — style.css
   Brand palette: Dark Navy, Gold, Green CTA
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --bg-primary:    #0a0e1a;
  --bg-secondary:  #111827;
  --bg-card:       #1a2235;
  --bg-card-hover: #1f2a40;
  --gold:          #f5a623;
  --gold-light:    #ffc857;
  --gold-dark:     #d4891a;
  --green:         #4ade80;
  --green-dark:    #22c55e;
  --text-primary:  #f0f4ff;
  --text-muted:    #8b9abf;
  --text-dim:      #6272a4;
  --border:        #1e2d4a;
  --border-light:  #2a3a5c;
  --shadow:        0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold:   0 4px 20px rgba(245,166,35,0.25);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  flex-wrap: wrap;
}

.top-bar-text { flex: 1 1 auto; min-width: 200px; }

/* ---------- BUTTONS ---------- */
.btn-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #051210;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  padding: 11px 24px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
  display: inline-block;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,222,128,0.35); filter: brightness(1.08); }
.btn-cta:active { transform: translateY(0); }
.btn-cta.small { padding: 7px 16px; font-size: 0.82rem; }
.btn-cta.large { padding: 16px 36px; font-size: 1.1rem; border-radius: 12px; }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 11px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: inline-block;
  margin-top: 12px;
}
.btn-outline:hover { background: var(--green); color: #051210; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,26,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.logo { display: flex; align-items: center; }
.logo-svg { height: 40px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--text-primary); background: var(--bg-card); }
.nav-cta { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-cta { margin-top: 12px; text-align: center; width: 100%; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1829 40%, #0a1525 70%, #0e1a2e 100%);
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(245,166,35,0.3);
}

.hero-sub {
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 120px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.disclaimer {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-top: 8px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 72px 0; }
.section-dark { background: var(--bg-secondary); }

.section h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.25;
}

.section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 12px;
  line-height: 1.3;
}

.section p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ---------- BANNER STRIP ---------- */
.banner-strip {
  background: linear-gradient(90deg, #1a1500 0%, #2a2000 40%, var(--gold-dark) 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 20px 0;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-text strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 800;
}
.banner-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- INFO GRID ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.info-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.info-icon { font-size: 2rem; margin-bottom: 12px; }
.info-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 8px; margin-top: 0; }
.info-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

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

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.bonus-card:hover { border-color: var(--gold); }
.bonus-card.featured { border-color: var(--gold); background: linear-gradient(160deg, var(--bg-card) 0%, #1a1a00 100%); }

.bonus-tag {
  display: inline-block;
  background: rgba(245,166,35,0.18);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}

.bonus-card h3 { font-size: 1.05rem; color: var(--text-primary); margin: 0 0 8px; }

.bonus-amount {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.1;
}

.bonus-card ul {
  list-style: none;
  margin: 0 0 20px;
  flex: 1;
}
.bonus-card ul li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bonus-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ---------- LOYALTY TIERS ---------- */
.loyalty-section { margin-top: 36px; }

.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.tier:hover { border-color: var(--gold); }
.tier-icon { font-size: 2rem; margin-bottom: 8px; }
.tier-name { font-weight: 800; font-size: 1rem; color: var(--gold); margin-bottom: 8px; }
.tier-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ---------- GAME CATEGORIES ---------- */
.game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.game-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.game-cat:hover { border-color: var(--green); transform: translateY(-3px); }
.game-cat-icon { font-size: 2.4rem; margin-bottom: 12px; }
.game-cat h3 { font-size: 1.05rem; color: var(--text-primary); margin: 0 0 8px; }
.game-cat p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---------- PROVIDER GRID ---------- */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.provider-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  transition: border-color var(--transition), color var(--transition);
}
.provider-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- TABLE ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 28px 0; border-radius: var(--radius); border: 1px solid var(--border); }

.data-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table thead tr { background: var(--bg-card); }
.data-table th {
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--bg-card-hover); color: var(--text-primary); }
.data-table tbody tr:nth-child(even) { background: rgba(26,34,53,0.5); }

/* ---------- FEATURE LIST ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.feature-check {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- SUPPORT METHODS ---------- */
.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color var(--transition);
}
.support-card:hover { border-color: var(--gold); }
.support-icon { font-size: 2.2rem; margin-bottom: 12px; }
.support-card h3 { font-size: 1rem; color: var(--gold); margin: 0 0 10px; }
.support-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---------- RG TOOLS ---------- */
.rg-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.rg-tool {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 20px;
}
.rg-tool h3 { font-size: 0.95rem; color: var(--green); margin: 0 0 8px; }
.rg-tool p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.rg-note {
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ---------- FAQ ACCORDION (CSS-ONLY) ---------- */
.faq-list { margin-top: 28px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-toggle { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
  user-select: none;
  gap: 12px;
}
.faq-question:hover { color: var(--gold); }

.faq-arrow {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  padding-bottom: 18px;
}

.faq-toggle:checked ~ .faq-question { color: var(--gold); }
.faq-toggle:checked ~ .faq-question .faq-arrow { transform: rotate(180deg); }
.faq-toggle:checked ~ .faq-answer { max-height: 500px; }

/* ---------- SCORES ---------- */
.scores { margin: 32px 0; }

.score-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.score-label {
  min-width: 180px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.score-bar {
  flex: 1;
  background: var(--bg-card);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 4px;
}

.score-val {
  min-width: 60px;
  text-align: right;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a00 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.final-cta h3 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.final-cta p { color: var(--text-muted); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta .disclaimer { font-size: 0.75rem; color: var(--text-dim); margin-top: 16px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #060a14;
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 8px; }
.footer-domain { font-size: 0.8rem; color: var(--gold); font-weight: 600; }

.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links h4 { color: var(--text-primary); font-size: 0.9rem; margin-bottom: 12px; }
.footer-links a { color: var(--text-dim); font-size: 0.85rem; padding: 4px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-responsible h4 { color: var(--text-primary); font-size: 0.9rem; margin-bottom: 12px; }
.footer-responsible p { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 16px; }

.age-badge {
  display: inline-block;
  background: #7c1d1d;
  color: #fca5a5;
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.rg-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.rg-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.7; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }

  .hero { padding: 56px 0 44px; }
  .hero-stats .stat { min-width: 100px; padding: 12px 16px; }
  .stat-num { font-size: 1.3rem; }

  .section { padding: 52px 0; }

  .score-label { min-width: 130px; font-size: 0.82rem; }
  .score-val { min-width: 48px; font-size: 0.82rem; }

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

  .final-cta { padding: 28px 20px; }
  .final-cta h3 { font-size: 1.3rem; }

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

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn-ghost, .hero-cta-row .btn-cta { width: 100%; max-width: 300px; text-align: center; }

  .hero-stats { gap: 8px; }
  .hero-stats .stat { min-width: 90px; padding: 10px 12px; }

  .bonus-cards, .game-categories, .info-grid { grid-template-columns: 1fr; }

  .loyalty-tiers { grid-template-columns: repeat(2, 1fr); }
  .tier { padding: 16px; }

  .rg-tools { grid-template-columns: 1fr; }

  .score-item { flex-wrap: wrap; }
  .score-label { min-width: 100%; margin-bottom: 6px; }
  .score-bar { flex: 1; }
}
