﻿/* ===== SLOTARK – STYLE.CSS ===== */
/* Color palette: dark navy + gold/amber */

:root {
  --bg:        #0b0d16;
  --bg-mid:    #10131e;
  --bg-light:  #171b2c;
  --bg-card:   #1c2035;
  --gold:      #e8a020;
  --gold-dark: #c4841a;
  --gold-glow: rgba(232,160,32,0.35);
  --orange:    #ff6c35;
  --text:      #eaeaf2;
  --text-muted:rgba(234,234,242,0.5);
  --border:    rgba(232,160,32,0.18);
  --radius:    12px;
}

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

html { scroll-behavior: smooth; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar              { width: 8px; }
::-webkit-scrollbar-track        { background: var(--bg-mid); }
::-webkit-scrollbar-thumb        { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold); }
* { scrollbar-width: thin; scrollbar-color: var(--gold-dark) var(--bg-mid); }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LIVE BANNER ===== */
.live-banner {
  display: none;
  background: linear-gradient(90deg, rgba(200,0,0,0.93), rgba(160,0,0,0.9));
  border-bottom: 1px solid rgba(255,60,60,0.45);
  box-shadow: 0 2px 20px rgba(200,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 2000;
  animation: liveSlideIn 0.4s ease;
}
@keyframes liveSlideIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.live-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: livePulse 1.4s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.live-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-platform-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.live-watch-btn {
  margin-left: 4px;
  padding: 4px 14px;
  background: #fff;
  color: #b00;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.live-watch-btn:hover { background: #ffd0d0; }
.live-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}
.live-close:hover { color: #fff; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-discord {
  display: inline-block;
  background: #5865F2;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 14px rgba(88,101,242,0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-discord:hover {
  opacity: 0.9;
  box-shadow: 0 0 24px rgba(88,101,242,0.6);
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0b0d16;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 14px var(--gold-glow);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn-guide {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-guide:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-outline:hover {
  background: rgba(232,160,32,0.1);
  box-shadow: 0 0 14px var(--gold-glow);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-full { display: block; width: 100%; text-align: center; padding: 8px; border-radius: 6px; font-size: 0.78rem; }

.btn-sm {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-sm:hover {
  background: rgba(232,160,32,0.12);
  box-shadow: 0 0 12px var(--gold-glow);
}
.btn-demo {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: none;
}
.btn-demo:hover {
  background: rgba(255,108,53,0.12);
  box-shadow: 0 0 12px rgba(255,108,53,0.4);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,13,22,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(232,160,32,0.45));
  transition: filter 0.3s ease;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(232,160,32,0.75));
}
.header-motto {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-left: 1px solid var(--border);
  padding-left: 14px;
  margin-left: 4px;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .header-motto { display: none; }
}
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.05em;
}
.logo-accent { color: var(--gold); }
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.search-btn:hover { border-color: var(--gold); color: var(--gold); }
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.search-backdrop.open { opacity: 1; pointer-events: all; }
.search-overlay {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: #0f1120;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 0;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.search-overlay.open { opacity: 1; transform: translateY(0); pointer-events: all; visibility: visible; }
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text-muted);
}
.search-box:focus-within { border-color: var(--gold); }
#searchInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}
#searchInput::placeholder { color: var(--text-muted); }
.search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0 2px;
  display: none;
}
.search-clear:hover { color: var(--text); }
.search-results {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 320px;
  overflow-y: auto;
}
.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  gap: 12px;
}
.search-result:hover { background: rgba(255,255,255,0.05); }
.search-result-title { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.search-result-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.type-slot    { background: rgba(232,160,32,0.12); color: var(--gold); }
.type-casino  { background: rgba(34,197,94,0.12);  color: #22c55e; }
.type-section { background: rgba(129,140,248,0.12); color: #818cf8; }
.type-tool    { background: rgba(232,160,32,0.12); color: var(--gold); }
.type-review  { background: rgba(129,140,248,0.12); color: #818cf8; }
.search-empty {
  padding: 16px 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.hamburger:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SIDEBAR ===== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #0f1120;
  border-right: 1px solid var(--border);
  z-index: 2000;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0.3s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sidebar.open { transform: translateX(0); visibility: visible; }
.sidebar-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s;
}
.sidebar-close:hover { color: var(--text); }
.sidebar-logo {
  padding: 20px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo img { height: 40px; width: auto; }
.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.sidebar-nav a {
  padding: 13px 24px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-nav a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.sidebar-nav .nav-giveaway { color: #22c55e !important; }
.sidebar-nav .nav-picker  { color: var(--gold) !important; }
.sidebar-nav .nav-new     { color: var(--gold) !important; }
.nav-picker {
  color: var(--gold) !important;
}
.nav-giveaway {
  color: #22c55e !important;
  animation: giveaway-glow 2s ease-in-out infinite;
}
@keyframes giveaway-glow {
  0%, 100% { text-shadow: 0 0 6px rgba(34,197,94,0.4); }
  50%       { text-shadow: 0 0 14px rgba(34,197,94,0.9), 0 0 30px rgba(34,197,94,0.4); }
}
.nav-new { color: var(--gold) !important; }
.nav-tmb-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(232,160,32,0.4);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--gold);
  color: #0b0d16;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.88rem;
  text-align: center;
  flex-wrap: wrap;
  transition: background 0.2s;
}
.announce-bar:hover { background: var(--gold-dark); }
.announce-bar--guide { background: #1d4ed8; }
.announce-bar--guide:hover { background: #1e40af; }
.announce-text { color: #0b0d16; }
.announce-cta {
  background: #0b0d16;
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
}
.announce-cta--guide {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(232,160,32,0.13) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.06); }
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hp {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: hpFloat 9s ease-in-out infinite;
}
/* Gold particles */
.hp1  { width: 7px;  height: 7px;  background: var(--gold);   top: 18%; left: 12%; animation-delay: 0s;   animation-duration: 8s; }
.hp2  { width: 4px;  height: 4px;  background: var(--orange); top: 62%; left: 78%; animation-delay: 1.5s; animation-duration: 10s; }
.hp3  { width: 6px;  height: 6px;  background: var(--gold);   top: 33%; left: 88%; animation-delay: 3s;   animation-duration: 7s; }
.hp4  { width: 3px;  height: 3px;  background: var(--orange); top: 77%; left: 22%; animation-delay: 4.5s; animation-duration: 9s; }
.hp5  { width: 5px;  height: 5px;  background: var(--gold);   top: 50%; left: 48%; animation-delay: 2s;   animation-duration: 11s; }
.hp6  { width: 4px;  height: 4px;  background: var(--gold);   top: 25%; left: 60%; animation-delay: 0.8s; animation-duration: 8.5s; }
.hp7  { width: 8px;  height: 8px;  background: var(--orange); top: 70%; left: 55%; animation-delay: 3.5s; animation-duration: 12s; }
.hp8  { width: 3px;  height: 3px;  background: var(--gold);   top: 45%; left: 8%;  animation-delay: 5s;   animation-duration: 9.5s; }
.hp9  { width: 5px;  height: 5px;  background: var(--gold);   top: 10%; left: 40%; animation-delay: 1.2s; animation-duration: 7.5s; }
.hp10 { width: 4px;  height: 4px;  background: var(--orange); top: 85%; left: 70%; animation-delay: 6s;   animation-duration: 10.5s; }
.hp11 { width: 6px;  height: 6px;  background: var(--gold);   top: 55%; left: 92%; animation-delay: 2.8s; animation-duration: 8s; }
.hp12 { width: 3px;  height: 3px;  background: var(--gold);   top: 38%; left: 30%; animation-delay: 4s;   animation-duration: 13s; }

@keyframes hpFloat {
  0%   { opacity: 0;    transform: translateY(0) scale(0.8); }
  15%  { opacity: 0.85; transform: translateY(-10px) scale(1); }
  85%  { opacity: 0.6;  transform: translateY(-55px) scale(0.9); }
  100% { opacity: 0;    transform: translateY(-75px) scale(0.7); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.badge {
  display: inline-block;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  position: relative;
}

/* ===== HANDWRITING ANIMATION ===== */
.hw-about,
.hw-slotark {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}
.hw-about { margin-right: 0.25em; }
.hw-about.hw-run {
  animation: hwReveal 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hw-slotark.hw-run {
  animation: hwReveal 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes hwReveal {
  to { clip-path: inset(0 0% 0 0); }
}
.hw-nib {
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 3px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hw-about, .hw-slotark { clip-path: none !important; animation: none !important; }
  .hw-nib { display: none; }
}
.accent {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(232,160,32,0.5), 0 0 60px rgba(232,160,32,0.2);
  animation: accentPulse 3s ease-in-out infinite alternate;
}
@keyframes accentPulse {
  0%   { text-shadow: 0 0 20px rgba(232,160,32,0.4), 0 0 50px rgba(232,160,32,0.15); }
  100% { text-shadow: 0 0 40px rgba(232,160,32,0.7), 0 0 80px rgba(232,160,32,0.3); }
}
.hero-motto {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  color: rgba(232,160,32,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 auto 16px !important;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin: 0 auto 16px !important;
}
.hero-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-newsletter {
  margin-bottom: 48px;
  text-align: center;
}
@keyframes nl-label-shimmer {
  0%, 100% { color: var(--text-muted); }
  50% { color: rgba(232,160,32,0.75); }
}
@keyframes nl-icon-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-4px) scale(1.15); }
  60% { transform: translateY(1px) scale(0.97); }
}
.hero-newsletter-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
  animation: nl-label-shimmer 3.5s ease-in-out infinite;
}
.nl-icon {
  display: inline-block;
  animation: nl-icon-bounce 3.5s ease-in-out infinite;
}
.hero-email-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}
.hero-email-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 11px 16px;
  color: var(--text-primary);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  min-width: 0;
}
.hero-email-form input[type="email"]::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.hero-email-form input[type="email"]:focus {
  border-color: var(--gold);
}
.hero-email-form button {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.hero-email-form button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.hero-newsletter-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin: 10px 0 0;
}
@media (max-width: 480px) {
  .hero-email-form { flex-direction: column; padding: 0 16px; }
  .hero-email-form button { width: 100%; padding: 13px; }
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.stat { text-align: center; padding: 0 28px; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--gold); }
.stat span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-mid); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.section-header p { color: var(--text-muted); font-size: 1rem; }

/* ===== CASINO CARDS ===== */
.casino-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.casino-card:hover {
  border-color: rgba(232,160,32,0.4);
  box-shadow: 0 0 24px rgba(232,160,32,0.1);
}
.casino-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(232,160,32,0.15);
}
.casino-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 6px;
  gap: 4px;
  min-height: 28px;
}
.casino-card-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.badge-non-sticky {
  background: #3cc878;
  color: #0b0d16;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.badge-exclusive {
  background: rgba(138,43,226,0.85);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.casino-more-link {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.67rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}
.casino-more-link:hover { color: var(--gold); }
.casino-more-link .info-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}
.casino-logo-area {
  overflow: hidden;
  height: 110px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.casino-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}
.casino-card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.casino-card-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.casino-card-stars {
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 9px;
}
.casino-stats {
  width: 100%;
  margin-bottom: 12px;
  flex: 1;
}
.casino-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.79rem;
}
.casino-stat-row:last-child { border-bottom: none; }
.casino-stat-label { color: var(--text-muted); }
.casino-stat-value { font-weight: 700; color: var(--text); }
.btn-claim {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: #0b0d16;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 11px 8px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  box-sizing: border-box;
}
.btn-claim:hover { background: #f5b535; transform: translateY(-1px); }
.disclaimer-small {
  text-align: center;
  font-size: 0.6rem;
  color: rgba(234,234,242,0.25);
  margin-top: 8px;
  line-height: 1.4;
}
/* ===== SLOT CARDS ===== */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.slot-card {
  position: relative;
  display: block;
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.slot-card:hover {
  border-color: rgba(232,160,32,0.4);
  box-shadow: 0 0 24px rgba(232,160,32,0.1);
  transform: translateY(-3px);
}
.slot-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  border: none;
  transform: translateY(0%);
  transition: transform 0.35s;
}
.slot-card:hover .slot-thumb-img { transform: translateY(2%) scale(1.06); }
.slot-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 26px;
  height: 26px;
  background: rgba(11,13,22,.78);
  border: 1.5px solid rgba(232,160,32,0.5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--gold);
}
.slot-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.93) 0%, rgba(0,0,0,.55) 65%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.slot-provider { font-size: 0.67rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; }
.slot-overlay h4 { font-size: 0.92rem; font-weight: 800; color: #fff; line-height: 1.25; margin: 0; }
.slot-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.slot-rtp {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(232,160,32,0.15);
  border-radius: 4px;
  padding: 2px 6px;
}
.slot-vol {
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 6px;
}
.vol-high { background: rgba(255,108,53,0.12); color: var(--orange); }
.vol-med  { background: rgba(232,160,32,0.12); color: var(--gold); }
.vol-low  { background: rgba(60,200,120,0.12); color: #3cc878; }
.slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.slot-actions .btn-sm { flex: 1; text-align: center; min-width: 70px; }

/* ===== BONUS TABLE ===== */
.bonus-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.bonus-row {
  display: grid;
  grid-template-columns: 120px 1fr 100px 90px;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bonus-row:last-child { border-bottom: none; }
.bonus-row-header {
  background: rgba(232,160,32,0.07);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.bonus-casino { font-weight: 700; color: var(--text); }
.bonus-offer { font-size: 0.88rem; color: var(--text-muted); }
.bonus-tag {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 7px;
  margin-left: 6px;
}
.bonus-wager { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ===== CROSSLINK ===== */
/* ===== HIGHLIGHTS / SOCIAL ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.highlight-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--bg-card);
  border: 1px solid rgba(232,160,32,0.12);
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(232,160,32,0.18);
  border-color: rgba(232,160,32,0.35);
}
.highlight-thumb {
  position: relative;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-light));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.play-btn {
  position: relative;
  width: 56px;
  height: 56px;
  background: rgba(232,160,32,0.12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 16px var(--gold-glow);
}
.highlight-card:hover .play-btn {
  background: rgba(232,160,32,0.25);
  box-shadow: 0 0 28px var(--gold);
}
.platform-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tag-youtube   { background: #ff0000; color: #fff; box-shadow: 0 0 8px rgba(255,0,0,0.5); }
.tag-tiktok    { background: #010101; color: #69c9d0; border: 1px solid #69c9d0; box-shadow: 0 0 8px rgba(105,201,208,0.4); }
.tag-instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); color: #fff; }
.tag-twitch    { background: #9146ff; color: #fff; box-shadow: 0 0 8px rgba(145,70,255,0.55); }
.tag-kick      { background: #1a1a1a; color: #53fc18; border: 1px solid #53fc18; box-shadow: 0 0 8px rgba(83,252,24,0.4); }
.tag-discord   { background: #5865f2; color: #fff; box-shadow: 0 0 8px rgba(88,101,242,0.55); }
.highlight-thumb-twitch  { background: linear-gradient(135deg, #1a0a2e, #2d1060) !important; }
.highlight-thumb-kick    { background: linear-gradient(135deg, #0a1a08, #0d2e0a) !important; }
.highlight-thumb-discord { background: linear-gradient(135deg, #0e1030, #1e2260) !important; }
.highlight-info { padding: 14px 18px; }
.highlight-info h4 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.highlight-meta { font-size: 0.76rem; color: var(--text-muted); }
.social-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  color: #fff;
}
.social-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.youtube   { background: #ff0000; box-shadow: 0 0 14px rgba(255,0,0,0.4); }
.twitch    { background: #9146ff; box-shadow: 0 0 14px rgba(145,70,255,0.45); }
.kick      { background: #1a1a1a; color: #53fc18 !important; border: 1.5px solid #53fc18; box-shadow: 0 0 14px rgba(83,252,24,0.35); }
.tiktok    { background: #010101; border: 1.5px solid #69c9d0; box-shadow: 0 0 14px rgba(105,201,208,0.35); }
.instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.discord   { background: #5865f2; box-shadow: 0 0 14px rgba(88,101,242,0.45); }

/* ===== THEMATBETS SECTION ===== */
.tmb-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.tmb-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, #00e5ff33, #d400e033, #00e5ff22);
  z-index: -1;
}
.tmb-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tmb-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 18px rgba(0,229,255,0.4)) drop-shadow(0 0 36px rgba(212,0,224,0.25));
  transition: filter 0.3s ease;
}
.tmb-logo:hover {
  filter: drop-shadow(0 0 28px rgba(0,229,255,0.65)) drop-shadow(0 0 50px rgba(212,0,224,0.4));
}
.tmb-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(212,0,224,0.15));
  border: 1px solid rgba(0,229,255,0.3);
  color: #00e5ff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tmb-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  background: linear-gradient(135deg, #00e5ff, #d400e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.tmb-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.tmb-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tmb-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  color: #fff;
  transition: opacity 0.2s, transform 0.15s;
}
.tmb-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.tmb-twitch    { background: #9146ff; box-shadow: 0 0 12px rgba(145,70,255,0.45); }
.tmb-kick      { background: #1a1a1a; color: #53fc18 !important; border: 1.5px solid #53fc18; box-shadow: 0 0 12px rgba(83,252,24,0.35); }
.tmb-youtube   { background: #ff0000; box-shadow: 0 0 12px rgba(255,0,0,0.4); }
.tmb-discord   { background: #5865f2; box-shadow: 0 0 12px rgba(88,101,242,0.45); }
.tmb-tiktok    { background: #010101; border: 1.5px solid #69c9d0; box-shadow: 0 0 12px rgba(105,201,208,0.35); }
.tmb-instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }


/* ===== STREAM WINS CLIPS ===== */
.stream-wins {
  margin-top: 40px;
}
.stream-wins-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-align: center;
}
.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.clip-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.15s;
}
.clip-card:hover {
  border-color: rgba(83,252,24,0.35);
  transform: translateY(-3px);
}
.clip-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: #0a0a0a;
  overflow: hidden;
}
.clip-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(83,252,24,0.15);
  border: 2px solid rgba(83,252,24,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #53fc18;
  transition: background 0.2s;
}
.clip-card:hover .clip-play-btn {
  background: rgba(83,252,24,0.3);
}
.clip-kick-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #53fc18;
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 4px;
}
.clip-title {
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(232,160,32,0.3); }
.faq-item.open { border-color: rgba(232,160,32,0.4); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 220px; }

/* ===== RESPONSIBLE GAMBLING ===== */
.responsible {
  background: linear-gradient(90deg, rgba(232,160,32,0.06), rgba(255,108,53,0.04), rgba(232,160,32,0.06));
  border-top: 1px solid rgba(232,160,32,0.2);
  border-bottom: 1px solid rgba(232,160,32,0.12);
  padding: 32px 0;
}
.responsible-inner { display: flex; align-items: flex-start; gap: 20px; }
.responsible-badge {
  flex-shrink: 0;
  background: rgba(232,160,32,0.12);
  border: 1.5px solid rgba(232,160,32,0.35);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 8px;
  padding: 10px 14px;
}
.responsible-body { flex: 1; }
.responsible-heading { color: rgba(234,234,242,0.75); font-size: 0.88rem; margin: 0 0 6px; line-height: 1.5; }
.responsible-heading strong { color: var(--gold); }
.responsible-sub { color: rgba(234,234,242,0.4); font-size: 0.8rem; margin: 0 0 10px; }
.responsible-links { display: flex; flex-wrap: wrap; gap: 8px; }
.responsible-links a {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 5px;
  padding: 4px 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.responsible-links a:hover { background: rgba(232,160,32,0.12); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-sister {
  margin-top: 8px !important;
  font-size: 0.82rem !important;
}
.footer-sister a { color: var(--gold); font-weight: 600; }
.footer-sister a:hover { text-decoration: underline; }
.footer-links { display: contents; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  padding: 18px 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(234,234,242,0.3); font-size: 0.78rem; }

/* ===== NEW RELEASES (Homepage) ===== */
.new-releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.new-release-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  aspect-ratio: 3/2;
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.new-release-card:hover {
  border-color: rgba(232,160,32,0.4);
  box-shadow: 0 0 24px rgba(232,160,32,0.1);
  transform: translateY(-3px);
}
.new-release-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.new-release-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.new-release-card:hover .new-release-thumb img { transform: scale(1.06); }
.new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #0b0d16;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.new-release-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.93) 0%, rgba(0,0,0,.55) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 2;
}
.new-release-name { font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.25; }
.new-release-provider { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; margin-top: 0; }
.new-release-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip-rtp {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(232,160,32,0.15);
  color: var(--gold);
  border-radius: 4px;
  padding: 2px 8px;
}
.chip-vol {
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
}
.new-release-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 3px; }
.new-release-actions .btn-sm { flex: 1; text-align: center; min-width: 90px; }

/* ===== REVIEW PAGE ===== */
.breadcrumb {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-mid);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb-inner a:hover { opacity: 0.7; }

.review-hero {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.review-hero-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.review-slot-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(232,160,32,0.1);
}
.provider-badge {
  display: inline-block;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.review-slot-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 6px;
}
.review-slot-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.review-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
}
.stat-box-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.stat-box-value { font-size: 0.92rem; font-weight: 800; color: var(--gold); }
.review-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.review-disclaimer {
  font-size: 0.72rem;
  color: rgba(234,234,242,0.3);
  margin-top: 10px;
}

.slotark-score-section {
  padding: 32px 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.slotark-score-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.score-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px var(--gold-glow);
}
.score-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0b0d16;
  line-height: 1;
}
.score-label {
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(11,13,22,0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.score-details { flex: 1; }
.score-details h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.score-details p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

.review-body { padding: 56px 0; }
.review-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.review-main { display: flex; flex-direction: column; gap: 40px; }
.review-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.review-section p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.review-section p:last-child { margin-bottom: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; }
.feature-text h4 { font-size: 0.86rem; font-weight: 700; margin-bottom: 3px; }
.feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 !important;
  line-height: 1.5;
}

.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.verdict-pros, .verdict-cons {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 20px;
}
.verdict-pros { border: 1px solid rgba(60,200,120,0.25); }
.verdict-cons { border: 1px solid rgba(255,108,53,0.25); }
.verdict-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.verdict-pros .verdict-title { color: #3cc878; }
.verdict-cons .verdict-title { color: var(--orange); }
.verdict-list { display: flex; flex-direction: column; gap: 8px; }
.verdict-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.verdict-pros .verdict-list li::before { content: '✔'; position: absolute; left: 0; color: #3cc878; font-size: 0.8rem; }
.verdict-cons .verdict-list li::before { content: '✖'; position: absolute; left: 0; color: var(--orange); font-size: 0.8rem; }

.review-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-box-title {
  background: rgba(232,160,32,0.07);
  border-bottom: 1px solid var(--border);
  padding: 11px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.sidebar-casino {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-casino:last-child { border-bottom: none; }
.sidebar-casino-name { font-size: 0.9rem; font-weight: 700; }
.sidebar-casino-bonus { font-size: 0.78rem; color: var(--gold); }
.sidebar-casino-wr { font-size: 0.7rem; color: var(--text-muted); }
.quick-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.quick-fact:last-child { border-bottom: none; }
.quick-fact-label { color: var(--text-muted); }
.quick-fact-value { font-weight: 700; color: var(--text); }

/* ===== GIVEAWAY ===== */
.nav-giveaway {
  color: #22c55e !important;
  position: relative;
  animation: giveaway-glow 2s ease-in-out infinite;
}
@keyframes giveaway-glow {
  0%, 100% { text-shadow: 0 0 6px rgba(34,197,94,0.4); }
  50%       { text-shadow: 0 0 14px rgba(34,197,94,0.9), 0 0 30px rgba(34,197,94,0.4); }
}
.giveaway-card {
  background: var(--bg-card);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(88,101,242,0.07);
}
.giveaway-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(88,101,242,0.18), rgba(232,160,32,0.12), rgba(88,101,242,0.08));
  z-index: -1;
}
/* Sparkles */
.gw-spark {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: sparkFloat 6s ease-in-out infinite;
  font-style: normal;
  line-height: 1;
}
.gw-s1 { top: 10%; left: 6%;   color: var(--gold);   font-size: 1rem;   animation-delay: 0s;   animation-duration: 5s; }
.gw-s2 { top: 18%; right: 8%;  color: #818cf8;        font-size: 0.7rem;  animation-delay: 1.3s; animation-duration: 6s; }
.gw-s3 { top: 68%; left: 5%;   color: var(--orange);  font-size: 0.75rem; animation-delay: 2.6s; animation-duration: 7s; }
.gw-s4 { top: 72%; right: 7%;  color: var(--gold);    font-size: 0.6rem;  animation-delay: 0.9s; animation-duration: 5.5s; }
.gw-s5 { top: 42%; left: 3%;   color: #818cf8;        font-size: 0.8rem;  animation-delay: 3.4s; animation-duration: 6.5s; }
.gw-s6 { top: 50%; right: 4%;  color: var(--gold);    font-size: 0.65rem; animation-delay: 2s;   animation-duration: 8s; }
@keyframes sparkFloat {
  0%   { opacity: 0;   transform: translateY(0)    scale(0.5) rotate(0deg); }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.4; }
  100% { opacity: 0;   transform: translateY(-32px) scale(1.3) rotate(200deg); }
}
.giveaway-prize { text-align: center; display: flex; flex-direction: column; align-items: center; }
.giveaway-prize-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.giveaway-prize-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.giveaway-prize-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #22c55e;
  text-shadow: 0 0 12px rgba(34,197,94,0.7), 0 0 28px rgba(34,197,94,0.35);
  margin-bottom: 6px;
}
.giveaway-prize-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.giveaway-steps {
  display: flex;
  justify-content: center;
  width: 100%;
}
.giveaway-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 520px;
  width: 100%;
}
.giveaway-step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(88,101,242,0.15);
  border: 1.5px solid rgba(88,101,242,0.4);
  color: #818cf8;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.giveaway-step-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.giveaway-step-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.giveaway-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5865f2;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(88,101,242,0.45);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.giveaway-discord-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-15deg);
  animation: btnShimmer 3s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%        { left: -80%; }
  50%, 100% { left: 160%; }
}
.giveaway-discord-btn:hover {
  opacity: 0.92;
  box-shadow: 0 0 44px rgba(88,101,242,0.65);
  transform: translateY(-2px);
}
.giveaway-disclaimer {
  font-size: 0.72rem;
  color: rgba(234,234,242,0.28);
  text-align: center;
}
.giveaway-countdown {
  text-align: center;
  margin: 24px 0;
}
.countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  min-width: 68px;
}
.countdown-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.countdown-unit {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 600;
}
.countdown-sep {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 18px;
}
.giveaway-email-bar {
  max-width: 720px;
  margin: 24px auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.giveaway-email-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.giveaway-email-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.giveaway-email-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.giveaway-email-form {
  display: flex;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}
.giveaway-email-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text);
  width: 220px;
  outline: none;
  transition: border-color 0.2s;
}
.giveaway-email-input::placeholder { color: var(--text-muted); }
.giveaway-email-input:focus { border-color: var(--gold); }
.giveaway-email-btn {
  background: var(--gold);
  color: #0b0d16;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.giveaway-email-btn:hover { opacity: 0.88; }
@media (max-width: 640px) {
  .giveaway-email-bar { flex-direction: column; align-items: stretch; }
  .giveaway-email-form { flex-direction: column; }
  .giveaway-email-input { width: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .casino-cards { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .giveaway-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .tmb-card { grid-template-columns: 160px 1fr; gap: 32px; }
  .clips-grid { grid-template-columns: 1fr 1fr; }
  .new-releases-grid { grid-template-columns: repeat(2, 1fr); }
  .review-hero-inner { grid-template-columns: 280px 1fr; gap: 32px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-inner { gap: 12px; }
  .header-inner > .btn-primary { display: none; }
  .header-inner > .btn-guide { display: none; }
  .header-inner > .btn-discord { display: none; }
  .header-inner > .btn-slots-nav { display: none; }
  .giveaway-card { padding: 32px 24px; }
  .giveaway-steps { grid-template-columns: 1fr; }
  .countdown-boxes { gap: 6px; }
  .countdown-box { padding: 10px 12px; min-width: 58px; }
  .countdown-num { font-size: 1.6rem; }
  .countdown-sep { font-size: 1.2rem; }
  .casino-cards { display: flex; overflow-x: auto; gap: 12px; padding-bottom: 4px; scrollbar-width: none; }
  .casino-cards::-webkit-scrollbar { display: none; }
  .casino-card { flex: 0 0 180px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .new-releases-grid { grid-template-columns: repeat(2, 1fr); }
  .new-release-card { aspect-ratio: 3/4; }
  .slot-card { aspect-ratio: 3/4; }
  .bonus-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .bonus-row-header { display: none; }
  .tmb-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .clips-grid { grid-template-columns: 1fr; }
  .tmb-logo-wrap { justify-content: center; }
  .tmb-platforms { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 64px 0 56px; }
  .review-hero-inner { grid-template-columns: 1fr; }
  .review-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .review-sidebar { display: grid; grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .countdown-boxes { gap: 4px; }
  .countdown-box { padding: 8px 8px; min-width: 50px; }
  .countdown-num { font-size: 1.2rem; }
  .countdown-sep { font-size: 1rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .responsible-inner { flex-direction: column; gap: 12px; }
  .new-releases-grid { grid-template-columns: repeat(2, 1fr); }
  .review-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 9999;
  padding: 16px 24px;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(234,234,242,0.65);
  margin: 0;
}
.cookie-policy-link { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.8; }
.cookie-accept { background: var(--gold); color: #0a0a12; }
.cookie-decline {
  background: transparent;
  color: rgba(234,234,242,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ===== SIDEBAR REVIEW LINK ===== */
.sidebar-review-link {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(234,234,242,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-review-link:hover { color: var(--gold); }
.sidebar-guide-link {
  display: block;
  padding: 8px 10px;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.sidebar-guide-link:hover { color: var(--gold); border-color: rgba(232,160,32,0.4); }

/* ===== AUTHOR BOX ===== */
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 32px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  background: var(--bg-light);
}
.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.author-title {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin: 3px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.author-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
@media (max-width: 500px) {
  .author-box { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== MORE REVIEWS SECTION ===== */
.more-reviews {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.more-reviews-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.more-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.more-review-card {
  display: block;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.more-review-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.more-review-name { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.more-review-meta { font-size: 0.75rem; color: rgba(234,234,242,0.45); }
@media (max-width: 768px) { .more-reviews-grid { grid-template-columns: 1fr; } }
.more-reviews-all {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.more-reviews-all:hover { color: var(--gold); }

/* ===== HERO ANNOUNCEMENT BANNER ===== */
.hero-announce {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 40px;
  padding: 8px 16px 8px 8px;
  margin-top: 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  max-width: 100%;
}
.hero-announce:hover {
  background: rgba(232,160,32,0.15);
  border-color: var(--gold);
}
.hero-announce-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-announce-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-announce-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== SLOT DEMO SECTION ===== */
.demo-section {
  padding: 48px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.demo-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}
.demo-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(232,160,32,0.08);
}
.demo-placeholder {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.3);
  transform: scale(1.05);
}
.demo-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 24px;
}
.demo-label {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 20px;
}
.demo-desc {
  font-size: 0.88rem;
  color: rgba(234,234,242,0.7);
  margin: 0;
}
.demo-play-btn {
  background: var(--gold);
  color: #0b0d16;
  border: none;
  border-radius: 10px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(232,160,32,0.4);
  letter-spacing: 0.02em;
}
.demo-play-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(232,160,32,0.6);
}
.demo-disclaimer {
  font-size: 0.72rem;
  color: rgba(234,234,242,0.3);
  margin: 0;
}
.demo-iframe {
  width: 100%;
  aspect-ratio: 16/10;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .demo-placeholder { aspect-ratio: 4/3; }
  .demo-iframe { aspect-ratio: 4/3; }
}

/* ===== SCROLL TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #0b0d16;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
  pointer-events: none;
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { background: #f5b535; }
@media (max-width: 768px) { #back-top { bottom: 72px; right: 14px; width: 40px; height: 40px; } }

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, #f5b535 100%);
  z-index: 10001;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ===== MOBILE STICKY BOTTOM NAV ===== */
#sticky-mobile-nav { display: none; }
@media (max-width: 768px) {
  #sticky-mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f1120;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 1001;
    padding: 6px 0 max(8px, env(safe-area-inset-bottom));
  }
  #sticky-mobile-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(234,234,242,0.45);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 0;
    transition: color 0.2s;
  }
  #sticky-mobile-nav a.active,
  #sticky-mobile-nav a:hover { color: var(--gold); }
  #sticky-mobile-nav svg { width: 21px; height: 21px; }
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 2px;
  white-space: nowrap;
}
.filter-chip {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  user-select: none;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active { background: var(--gold); border-color: var(--gold); color: #0b0d16; }
.review-card.rc-hidden { display: none; }
.filter-count {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
  align-self: center;
}

/* ===== SLOT OF THE MONTH ===== */
.sotm-wrap { padding: 0 0 36px; }
.sotm-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 0 48px rgba(232,160,32,0.1);
}
.sotm-img { position: relative; overflow: hidden; min-height: 220px; }
.sotm-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sotm-label {
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--gold);
  color: #0b0d16;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  padding: 4px 14px 4px 10px;
  border-radius: 0 20px 20px 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sotm-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sotm-tag { font-size: 0.65rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; }
.sotm-name { font-family: 'Orbitron', sans-serif; font-size: 1.35rem; font-weight: 900; color: #fff; line-height: 1.2; }
.sotm-provider { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.sotm-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.sotm-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.sotm-actions { display: flex; gap: 10px; margin-top: 4px; }
@media (max-width: 768px) {
  .sotm-card { grid-template-columns: 1fr; }
  .sotm-img { height: 180px; }
  .sotm-body { padding: 18px 18px 16px; }
  .sotm-name { font-size: 1.1rem; }
}

/* ===== NEW BADGE ON REVIEW CARDS ===== */
.rc-img { position: relative; }
.rc-new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: #0b0d16;
  font-size: 0.58rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

/* ===== FAQ SECTION (review pages) ===== */
.review-section .faq-list { display: flex; flex-direction: column; gap: 0; max-width: none; margin: 0; }
.review-section .faq-item { background: none; border: none; border-radius: 0; overflow: visible; padding: 16px 0; border-bottom: 1px solid rgba(232,160,32,0.12); }
.review-section .faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-section .faq-item:hover { border-color: transparent; }
.review-section .faq-item h3 { font-size: 0.97rem; font-weight: 700; color: #fff; margin: 0 0 7px; line-height: 1.3; }
.review-section .faq-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
