/* roknar-casino.fr — global.css */
/* Colors: Primary #FF6B35 | Accent #FFD700 | BG #0D0D0D | Text #F5F5F5 */


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

:root {
  --primary: #8B5CF6;
  --accent: #FFD700;
  --bg: #0D0D0D;
  --bg2: #1A1A1A;
  --bg3: #242424;
  --text: #F5F5F5;
  --text-muted: #A0A0A0;
  --border: #2E2E2E;
  --success: #2ECC71;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(255,107,53,0.4);
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  background: #e55a25;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent); color: #000; }

/* Header */
.site-header {
  background: rgba(13,13,13,0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
}

.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.badge-18 {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
}

/* Hero */
.hero {
  background: #0D0D0D url('/images/hero-bg.svg') center center / cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255,107,53,0.1) 0%, transparent 70%);
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 16px;
}

.hero h1 .highlight { color: var(--primary); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Bonus Card */
.bonus-card {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  margin: 32px auto;
  text-align: center;
  position: relative;
}

.bonus-card::before {
  content: '🎁 EXKLUSIVER BONUS';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0;
}

.promo-code {
  background: var(--bg);
  border: 1px dashed var(--accent);
  border-radius: 6px;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin: 16px 0;
}

/* Quick Facts */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 48px 0;
}

.fact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.fact-icon { font-size: 2rem; margin-bottom: 12px; }
.fact-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.fact-value { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: var(--accent); margin-top: 4px; }

/* Slots Grid */
.slots-section { padding: 48px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
}
.section-title span { color: var(--primary); }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.slot-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.slot-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.slot-emoji { font-size: 2.5rem; margin-bottom: 8px; }
.slot-name { font-family: 'Oswald', sans-serif; font-size: 0.95rem; color: var(--text); }
.slot-provider { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.slot-stars { color: var(--accent); font-size: 0.8rem; margin-top: 6px; }

/* Streamer Section */
.streamer-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.streamer-avatar {
  background: var(--bg2);
  border: 3px solid var(--primary);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.streamer-emoji { font-size: 5rem; }
.streamer-name { font-family: 'Oswald', sans-serif; font-size: 1.5rem; margin-top: 12px; color: var(--primary); }
.streamer-platform { font-size: 0.85rem; color: var(--text-muted); }

/* Why Section */
.why-section { padding: 48px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.why-card {
  background: var(--bg2);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 24px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--accent); }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* FAQ */
.faq-section { padding: 48px 0; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { color: var(--primary); }
.faq-answer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Disclaimer */
.disclaimer {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 32px 0;
}

/* Footer */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-logo { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; }
.footer-logo span { color: var(--primary); }
.footer-desc { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }

.footer-col h4 { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 2px solid var(--primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1000;
  font-size: 0.85rem;
}

.cookie-banner.hidden { display: none; }

/* Live Badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Trust row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trust-row svg { color: var(--success); }

/* Fact icon svg */
.fact-icon-svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--primary);
}
.fact-icon-svg svg { width: 100%; height: 100%; }

/* Streamer photo */
.streamer-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin-bottom: 12px;
}

.streamer-photo-fallback {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg3);
  border: 3px solid var(--primary);
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
}

.streamer-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* EEAT badge */
.eeat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.eeat-badge svg { color: var(--success); flex-shrink: 0; }

/* Update box */
.update-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 0 0 48px;
}
.update-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.update-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.update-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}
.update-item strong { color: var(--text); }

/* Slot cards enhanced */
.slot-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.slot-card:hover { border-color: var(--primary); transform: translateY(-4px); color: var(--text); }

.slot-thumb {
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slot-hot {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
}
.slot-symbol {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.4));
  color: rgba(255,255,255,0.9);
}
.slot-maxwin {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.slot-info {
  padding: 12px 14px;
}
.slot-name { font-family: 'Oswald', sans-serif; font-size: 0.95rem; }
.slot-provider { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.slot-stars { display: flex; gap: 2px; margin-top: 6px; }

/* Recommendation section */
.recommendation-section {
  padding: 48px 0;
}
.recommendation-inner {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.rec-avatar { flex-shrink: 0; }
.rec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Oswald', sans-serif;
}
.rec-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

/* Why Section icons */
.why-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { color: var(--text); font-size: 1rem; margin-bottom: 8px; }

/* EEAT section */
.eeat-section { padding: 48px 0; }
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.eeat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.eeat-card svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}
.eeat-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.eeat-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.eeat-card a { color: var(--primary); }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.final-cta h2 { font-size: 2rem; margin-bottom: 12px; }
.final-cta h2 span { color: var(--primary); }
.final-cta p { color: var(--text-muted); }

/* FAQ enhanced */
.faq-icon { flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }

/* Footer trust */
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.trust-badge svg { color: var(--success); flex-shrink: 0; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 2px solid var(--primary);
  padding: 12px 20px;
  z-index: 999;
  transition: bottom 0.3s ease;
}
.sticky-cta.visible { bottom: 0; }
.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* CSS Avatar — replaces unavatar.io */
.om-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #c94d1a 100%);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 0 30px rgba(255,107,53,0.35);
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.om-avatar-sm {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #c94d1a 100%);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

/* Numbered badges */
.eeat-num {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.why-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #e55a25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.fact-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

/* Bonus sub-label */
.bonus-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 0.6rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* Steps Section */
.steps-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #e55a25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}
.step-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SEO content block */
.seo-content {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.seo-content h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 28px 0 12px;
}
.seo-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.seo-content a { color: var(--primary); }

/* Casino compare table */
.casino-compare { padding: 48px 0; border-bottom: 1px solid var(--border); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.88rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg3);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--text);
  border-bottom: 2px solid var(--primary);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-win { color: var(--success); font-weight: 600; }
.compare-ok { color: var(--text); }
.compare-row-highlight td { background: rgba(255,107,53,0.05); color: var(--text); }
.compare-row-highlight td:first-child { color: var(--accent); font-weight: 600; }

/* Popup countdown */
.popup-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}
#popupTimer { font-weight: 700; color: var(--accent); }

/* Slot image */
.slot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slot-custom-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px;
  text-align: center;
}

/* Bonus Popup */
.bonus-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.bonus-popup.visible {
  opacity: 1;
  pointer-events: all;
}
.bonus-popup-inner {
  background: linear-gradient(160deg, var(--bg2), var(--bg3));
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 44px 32px 32px;
  max-width: 400px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.35s ease;
  box-shadow: 0 20px 60px rgba(255,107,53,0.25);
}
.bonus-popup.visible .bonus-popup-inner {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--text); }
.popup-gift {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
  animation: giftBounce 2s ease-in-out infinite;
}
@keyframes giftBounce {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}
.bonus-popup-inner h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.bonus-popup-inner > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.popup-disclaimer {
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

/* Spinning Gift Widget */
.spin-widget {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.spin-widget-btn {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 0 0 rgba(255,107,53,0.5);
  animation: spinPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
  position: relative;
}
.spin-widget-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,107,53,0.4);
  animation: spinRing 2.5s ease-in-out infinite;
}
@keyframes spinPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(255,107,53,0); }
}
@keyframes spinRing {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0; }
}
.spin-widget:hover .spin-widget-btn { transform: scale(1.15) rotate(20deg); }
.spin-widget-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255,107,53,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .streamer-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 20px; }
  .bonus-amount { font-size: 2.2rem; }
  .update-content { grid-template-columns: 1fr; }
  .recommendation-inner { flex-direction: column; }
  .sticky-cta { display: none; }
  .spin-widget { bottom: 20px; right: 12px; }
  .spin-widget-btn { width: 50px; height: 50px; font-size: 1.4rem; }
  .bonus-popup-inner { padding: 40px 20px 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .update-content { grid-template-columns: 1fr 1fr; }
}
