/* Royal Reels Casino — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=Orbitron:wght@400;600;700;900&display=swap');

:root {
  --bg-deep:      #060912;
  --bg-base:      #0b0f1a;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-card-hov:  rgba(255,255,255,0.08);
  --border:       rgba(255,255,255,0.08);
  --border-glow:  rgba(168,85,247,0.4);

  --purple:       #a855f7;
  --purple-dark:  #7c3aed;
  --pink:         #ec4899;
  --gold:         #f59e0b;
  --gold-bright:  #fbbf24;
  --blue:         #38bdf8;
  --green:        #22c55e;

  --text-primary: #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;

  --glow-purple:  0 0 20px rgba(168,85,247,0.5), 0 0 60px rgba(168,85,247,0.2);
  --glow-gold:    0 0 20px rgba(245,158,11,0.6), 0 0 60px rgba(245,158,11,0.25);
  --glow-pink:    0 0 20px rgba(236,72,153,0.5), 0 0 60px rgba(236,72,153,0.2);
  --glow-blue:    0 0 20px rgba(56,189,248,0.5), 0 0 60px rgba(56,189,248,0.2);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --font-display: 'Bebas Neue', cursive;
  --font-mono:    'Orbitron', monospace;
  --font-body:    'DM Sans', sans-serif;

  --affiliate:    https://zotatraff.com/gfiv1v...;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── BACKGROUND TEXTURE ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(168,85,247,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245,158,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 60% 30%, rgba(56,189,248,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.15; }
h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: 0.02em; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0.02em; }
h3 { font-family: var(--font-body); font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; }
p { color: var(--text-muted); }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--gold); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { position: relative; z-index: 1; padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ─── GLASS CARD ─────────────────────────────────────────── */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass:hover { background: var(--bg-card-hov); border-color: var(--border-glow); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  color: #0b0f1a;
  box-shadow: var(--glow-gold);
  animation: pulse-gold 3s ease-in-out infinite;
}
.btn-gold:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 40px rgba(245,158,11,0.8), 0 0 80px rgba(245,158,11,0.3); color: #0b0f1a; }

.btn-purple {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  box-shadow: var(--glow-purple);
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(168,85,247,0.8); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; box-shadow: var(--glow-purple); }

.btn-lg { padding: 18px 48px; font-size: 1.15rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: var(--glow-gold); }
  50% { box-shadow: 0 0 40px rgba(245,158,11,0.9), 0 0 80px rgba(245,158,11,0.4), 0 0 120px rgba(245,158,11,0.15); }
}

/* ─── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(245,158,11,0.15); color: var(--gold-bright); border: 1px solid rgba(245,158,11,0.3); }
.badge-purple { background: rgba(168,85,247,0.15); color: var(--purple); border: 1px solid rgba(168,85,247,0.3); }
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.badge-pink { background: rgba(236,72,153,0.15); color: var(--pink); border: 1px solid rgba(236,72,153,0.3); }

/* ─── SECTION LABEL ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple));
}
.section-label::after {
  content: '';
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

/* ─── GRADIENT TEXT ──────────────────────────────────────── */
.text-gold { color: var(--gold-bright); }
.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.text-blue { color: var(--blue); }
.grad-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-purple {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── RATING STARS ───────────────────────────────────────── */
.stars { color: var(--gold-bright); font-size: 1.1rem; letter-spacing: 2px; }

/* ─── DIVIDER ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  margin: 60px 0;
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,9,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--gold-bright); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}
.nav-cta { flex-shrink: 0; }
.nav-hamburger { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; font-size: 1.5rem; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(6,9,18,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); margin-top: 12px; line-height: 1.8; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-dim); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--purple); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.responsible-gaming {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rg-badge {
  padding: 4px 10px;
  border: 1px solid var(--text-dim);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── STICKY CTA (mobile) ────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 16px;
  background: rgba(6,9,18,0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  text-align: center;
}
@media (max-width: 768px) { .sticky-cta { display: block; } }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(168,85,247,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(245,158,11,0.1) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-badge { margin-bottom: 24px; }
.hero h1 { margin-bottom: 24px; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-item .val {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.trust-item .lbl { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── BONUS CARD ─────────────────────────────────────────── */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--gold));
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(168,85,247,0.15);
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.bonus-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-primary); }
.bonus-card p { font-size: 0.875rem; }
.bonus-card .terms { font-size: 0.7rem; color: var(--text-dim); margin-top: 16px; }

/* ─── GAME CARD ──────────────────────────────────────────── */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(168,85,247,0.2);
}
.game-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1030, #2d1b69);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.game-info { padding: 14px 16px; }
.game-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.game-info .provider { font-size: 0.75rem; color: var(--text-dim); }
.game-info .rtp { font-size: 0.75rem; color: var(--green); }

/* ─── PROS/CONS ──────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-list, .cons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pros-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.cons-list li::before { content: '✗'; color: var(--pink); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple); }
.faq-q .icon { font-size: 1.25rem; color: var(--purple); flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding-bottom: 20px; font-size: 0.9rem; }

/* ─── RATING BAR ─────────────────────────────────────────── */
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rating-row .label { width: 120px; font-size: 0.85rem; color: var(--text-muted); }
.rating-bar-bg { flex: 1; height: 8px; background: var(--bg-card-hov); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--purple), var(--pink)); transition: width 1s ease; }
.rating-row .score { width: 36px; font-size: 0.85rem; font-weight: 700; color: var(--gold-bright); text-align: right; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(168,85,247,0.15) 0%, rgba(245,158,11,0.1) 50%, rgba(236,72,153,0.1) 100%);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--gold));
  z-index: -1;
  opacity: 0.3;
}

/* ─── STAT BOX ───────────────────────────────────────────── */
.stat-box {
  text-align: center;
  padding: 24px;
}
.stat-box .num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  display: block;
}
.stat-box .desc { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

/* ─── TABLE ──────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-card); }

/* ─── TOOLTIP ─────────────────────────────────────────────── */
.tooltip-wrap { position: relative; display: inline-block; }
.tooltip-wrap:hover .tooltip-box { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tooltip-box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1e2435;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.75rem;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  transition: all 0.2s;
  pointer-events: none;
  z-index: 50;
}

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb span { color: var(--text-muted); }

/* ─── SCROLL ANIMATION ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── GLOW ORBS ──────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-purple { background: rgba(168,85,247,0.25); }
.orb-gold   { background: rgba(245,158,11,0.2); }
.orb-pink   { background: rgba(236,72,153,0.2); }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(168,85,247,0.12) 0%, transparent 70%);
}

/* ─── PAYMENT ICONS ──────────────────────────────────────── */
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.payment-chip {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── AFFILIATE LINK TRACKING ────────────────────────────── */
/* handled via JS onclick events */

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {
  .site-header, .sticky-cta, .cta-banner { display: none; }
}