/* ============================================================
   DEMO SLOT - GLOW IN THE DARK THEME
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg-primary:   #050510;
  --bg-secondary: #080820;
  --bg-card:      rgba(8, 8, 30, 0.85);
  --bg-glass:     rgba(0, 245, 255, 0.04);

  --cyan:   #00f5ff;
  --pink:   #ff00ff;
  --purple: #b400ff;
  --green:  #00ff88;
  --gold:   #ffd700;
  --red:    #ff3366;

  --text-primary:   #e8f4ff;
  --text-secondary: #7a9ec8;
  --text-muted:     #4a6480;

  --border:        rgba(0, 245, 255, 0.15);
  --border-hover:  rgba(0, 245, 255, 0.5);

  --glow-sm:  0 0 6px var(--cyan);
  --glow-md:  0 0 12px var(--cyan), 0 0 24px rgba(0,245,255,0.4);
  --glow-lg:  0 0 20px var(--cyan), 0 0 40px rgba(0,245,255,0.3), 0 0 80px rgba(0,245,255,0.1);
  --glow-pink: 0 0 12px var(--pink), 0 0 24px rgba(255,0,255,0.4);
  --glow-purple: 0 0 12px var(--purple), 0 0 24px rgba(180,0,255,0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0,245,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(180,0,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255,0,255,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════
   HEADER / NAVBAR
   ══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 16, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  opacity: 0.6;
}

.nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--glow-sm);
  filter: drop-shadow(0 0 6px var(--cyan));
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  display: block;
  margin-top: -4px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
  background: rgba(0,245,255,0.08);
}

/* Nav Dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-dd-arrow {
  font-size: 9px;
  margin-left: 2px;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.nav-item-dropdown:hover .nav-dd-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: rgba(8, 8, 22, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,245,255,0.06);
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-dropdown li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.35;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(0,245,255,0);
}

/* Provider image replaces bullet */
.nav-dropdown li.has-prov-img a::before { display: none; }
.nav-prov-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: var(--transition);
}
.nav-dropdown li.has-prov-img a:hover .nav-prov-img {
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(0,245,255,0.5));
}

.nav-dropdown li a:hover:not(.nav-dd-soon)::before {
  opacity: 1;
  box-shadow: 0 0 8px 2px rgba(0,245,255,0.55);
}

.nav-dropdown li a:hover:not(.nav-dd-soon) {
  color: var(--cyan);
  background: rgba(0,245,255,0.06);
  transform: translateX(4px);
}

.nav-dd-soon {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.nav-dd-badge {
  margin-left: auto;
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
}

/* ── Provider dropdown: multi-column ─────────────────────── */
.nav-item-provider > .nav-dropdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 540px;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 4px;
  left: 0;
  transform: translateY(-6px);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,245,255,0.2) transparent;
}
.nav-item-provider > .nav-dropdown::-webkit-scrollbar { width: 4px; }
.nav-item-provider > .nav-dropdown::-webkit-scrollbar-track { background: transparent; }
.nav-item-provider > .nav-dropdown::-webkit-scrollbar-thumb { background: rgba(0,245,255,0.2); border-radius: 4px; }

.nav-item-provider:hover > .nav-dropdown {
  transform: translateY(0);
}

.nav-item-provider > .nav-dropdown li {
  display: block;
}

.nav-item-provider > .nav-dropdown li a {
  white-space: normal;
  word-break: break-word;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 1px 4px;
}

.nav-item-provider > .nav-dropdown li a:hover:not(.nav-dd-soon) {
  transform: none;
  background: rgba(0,245,255,0.08);
}

@media (max-width: 1100px) {
  .nav-item-provider > .nav-dropdown {
    grid-template-columns: repeat(2, 1fr);
    min-width: 380px;
  }
}

@media (max-width: 768px) {
  .nav-item-provider > .nav-dropdown {
    display: block;
    min-width: unset;
    max-height: 50vh;
    overflow-y: auto;
    left: 0;
    transform: none !important;
  }
}

/* Active indicator on dropdown trigger */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  box-shadow: var(--glow-sm);
}

/* Search */
.nav-search {
  flex: 1;
  max-width: 320px;
  margin-left: auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 9px 16px 9px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.search-input::placeholder { color: var(--text-muted); }

.search-input:focus {
  border-color: var(--cyan);
  box-shadow: var(--glow-sm);
  background: rgba(0,245,255,0.06);
}

.search-icon {
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-outline {
  padding: 8px 20px;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  background: transparent;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: var(--glow-sm);
}

.btn-primary {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-md);
  opacity: 0.9;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hamburger → X when open */
.mobile-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
@media (max-width: 768px) {
  /* Base state – always fixed, hidden via opacity/visibility/transform */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    bottom: 64px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    z-index: 1001;
    overflow-y: auto;
    gap: 0;
    padding: 8px 0;
    /* Closed state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .nav-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    z-index: 1001;
    margin-left: 0;
    /* Closed state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  /* Open state */
  .mobile-menu-open .nav-links,
  .mobile-menu-open .nav-cta {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* CTA slight delay so it feels staggered */
  .mobile-menu-open .nav-cta {
    transition-delay: 0.05s;
  }

  .nav-links > li { width: 100%; }

  .nav-links .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.15);
    padding: 4px 0;
  }

  .nav-links .nav-dropdown li a {
    padding: 10px 40px;
    font-size: 14px;
  }

  .nav-links .nav-dropdown li a:hover:not(.nav-dd-soon),
  .nav-links .nav-dropdown li a:active:not(.nav-dd-soon) {
    transform: none;
  }

  /* Prevent desktop hover transform from overriding mobile static dropdown */
  .nav-links .nav-item-dropdown:hover .nav-dropdown,
  .nav-links .nav-item-dropdown:focus-within .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 60px) 24px 60px;
  overflow: hidden;
}

/* Animated grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Orbitron', sans-serif;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,245,255,0.4));
}

.hero-title span {
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-play {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 30px rgba(0,245,255,0.4);
}

.btn-hero-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0,245,255,0.6);
}

.btn-hero-info {
  padding: 14px 32px;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.btn-hero-info:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: var(--glow-pink);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--glow-sm);
  display: block;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══════════════════════════════════════════════════════════
   TICKER / MARQUEE
   ══════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: rgba(0,245,255,0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 12px;
  white-space: nowrap;
  color: var(--text-secondary);
}

.ticker-item .ticker-icon { color: var(--gold); }
.ticker-item .ticker-game { color: var(--text-primary); font-weight: 600; }
.ticker-item .ticker-win  { color: var(--green); font-weight: 700; font-family: 'Orbitron', sans-serif; font-size: 11px; }
.ticker-item .ticker-sep  { color: var(--border-hover); margin: 0 4px; }

/* Description Bar */
.desc-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 2px 20px;
}
.desc-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.desc-bar-icon { font-size: 14px; }
.desc-bar-dot {
  color: var(--border-hover);
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 600px) {
  .desc-bar-dot { display: none; }
  .desc-bar { gap: 6px 12px; }
}

/* ══════════════════════════════════════════════════════════
   GAMES SECTION
   ══════════════════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title-accent {
  color: var(--cyan);
  text-shadow: var(--glow-sm);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
  max-width: 200px;
}

.section-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Filter Bar ──────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-bar-right {
  flex-shrink: 0;
}

.filter-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 13px;
  pointer-events: none;
}

.filter-search-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px 7px 34px;
  font-size: 13px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  width: 220px;
  transition: var(--transition);
  outline: none;
}

.filter-search-input::placeholder { color: var(--text-muted); }

.filter-search-input:focus {
  border-color: var(--cyan);
  background: rgba(0,245,255,0.05);
  box-shadow: 0 0 0 2px rgba(0,245,255,0.15);
  width: 260px;
}

.filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-right: 8px;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0,245,255,0.06);
}

.filter-btn.active {
  color: #000;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-color: transparent;
  box-shadow: var(--glow-sm);
  font-weight: 600;
}

/* ── Game Grid ───────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* ── Game Card ───────────────────────────────────────────── */
.game-card {
  position: relative;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,245,255,0.2), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.card-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d2b, #1a0a2e);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .card-thumb img {
  transform: scale(1.05);
}

/* Placeholder gradient for failed images */
.card-thumb .thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3e 50%, #0d1a2b 100%);
  font-size: 32px;
}

.card-thumb .thumb-placeholder .placeholder-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  padding: 0 8px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* Overlay on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 245, 255, 0.12);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .card-overlay { opacity: 1; }

.card-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
  box-shadow: var(--glow-md);
  transform: scale(0.9);
  transition: var(--transition);
}

.game-card:hover .card-play-btn {
  transform: scale(1);
}

/* Badges */
.card-badges {
  position: absolute;
  top: 8px; left: 8px;
  display: flex;
  gap: 4px;
  z-index: 2;
}

.badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
}

.badge-hot {
  background: linear-gradient(135deg, #ff3366, #ff6600);
  color: #fff;
  box-shadow: 0 0 8px rgba(255,51,102,0.6);
}

.badge-new {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  box-shadow: var(--glow-sm);
}

/* Card Body */
.card-body {
  padding: 12px 14px;
}

.card-demo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
}

.card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.card-provider {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.provider-dot {
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--cyan);
  flex-shrink: 0;
}

.card-rtp {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
}

/* ── No Results ──────────────────────────────────────────── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results-title { font-family: 'Orbitron', sans-serif; font-size: 18px; color: var(--text-secondary); margin-bottom: 8px; }
.no-results-sub { font-size: 14px; color: var(--text-muted); }

/* ── Load More ───────────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  padding: 32px 0 0;
}

.btn-load-more {
  padding: 12px 36px;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  background: transparent;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.btn-load-more:hover {
  background: rgba(0,245,255,0.08);
  box-shadow: var(--glow-sm);
}

/* ══════════════════════════════════════════════════════════
   PROMO AD BANNER
   ══════════════════════════════════════════════════════════ */
.promo-ad {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

.promo-ad-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.promo-ad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .promo-ad-grid {
    grid-template-columns: 1fr;
  }
}

.promo-ad-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.promo-ad-link:hover {
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.2), 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.promo-ad-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .promo-ad { padding: 20px 16px; }
}

/* ══════════════════════════════════════════════════════════
   GAME STATS DASHBOARD
   ══════════════════════════════════════════════════════════ */
.stats-dashboard {
  padding: 32px 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-md);
  border-color: var(--cyan);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,245,255,0.3));
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-card-primary .stat-value {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-secondary .stat-icon {
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.3));
}

.stat-card-tertiary .stat-icon {
  filter: drop-shadow(0 2px 8px rgba(180,0,255,0.3));
}

.stat-card-trending {
  background: linear-gradient(135deg, rgba(255,100,0,0.1), rgba(255,0,100,0.1));
  border-color: rgba(255,100,0,0.3);
}

.stat-card-trending .stat-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-icon {
    font-size: 32px;
  }
  .stat-value {
    font-size: 24px;
  }
}

/* ══════════════════════════════════════════════════════════
   HOT GAMES (Horizontal Scroll)
   ══════════════════════════════════════════════════════════ */
.hot-section {
  padding: 40px 24px 48px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 8px 16px;
  margin: -8px -8px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) var(--bg-secondary);
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.scroll-row.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.scroll-row .game-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
}

/* ══════════════════════════════════════════════════════════
   PROVIDERS SECTION
   ══════════════════════════════════════════════════════════ */
.providers-section {
  padding: 0 24px 60px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.prov-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prov-carousel-viewport {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.prov-carousel-viewport::-webkit-scrollbar { display: none; }

.providers-grid {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 4px 2px;
  min-width: max-content;
}

.providers-grid .provider-chip {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.prov-carousel-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary, #aaa);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s, border-color .2s, color .2s;
  font-size: 13px;
}
.prov-carousel-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.prov-carousel-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-all-providers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid rgba(0,245,255,0.35);
  background: rgba(0,245,255,0.06);
  color: var(--cyan, #00f5ff);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, border-color .2s;
  letter-spacing: .3px;
}
.btn-all-providers:hover {
  background: rgba(0,245,255,0.12);
  box-shadow: 0 0 16px rgba(0,245,255,0.2);
  border-color: var(--cyan);
}

.provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}

.provider-chip:hover,
.provider-chip.active {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-sm);
  background: rgba(0,245,255,0.06);
}

.provider-chip .chip-icon { font-size: 18px; }

.provider-chip .chip-icon--img {
  font-size: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.provider-chip .chip-icon--img img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════════
   PROMO BANNER
   ══════════════════════════════════════════════════════════ */
.promo-banner {
  position: relative;
  z-index: 1;
  margin: 0 24px 60px;
  max-width: 1392px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,245,255,0.08), rgba(180,0,255,0.08));
  border: 1px solid rgba(0,245,255,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,245,255,0.1), transparent 70%);
  pointer-events: none;
}

.promo-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.promo-text p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cyan);
}

.footer-bottom {
  max-width: 1440px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-copy span {
  color: var(--cyan);
}

/* ══════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV
   ══════════════════════════════════════════════════════════ */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: rgba(8, 8, 22, 0.97);
    border-top: 1px solid rgba(0, 245, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 8px;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
    position: relative;
  }

  .bottom-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 28px;
    height: 2px;
    background: var(--cyan);
    border-radius: 0 0 3px 3px;
    transition: transform 0.2s ease;
  }

  .bottom-nav-item.active {
    color: var(--cyan);
  }

  .bottom-nav-item.active::before {
    transform: translateX(-50%) scaleX(1);
  }

  .bottom-nav-icon {
    font-size: 20px;
    line-height: 1;
  }

  .bottom-nav-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
  }

  /* Push page content above bottom nav */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

/* ══════════════════════════════════════════════════════════
   GAME PAGE (game.html) — Article Layout
   ══════════════════════════════════════════════════════════ */

/* ── Shared btn-back ─────────────────────────────────────── */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-sm);
}

/* ── Fullscreen button ───────────────────────────────────── */
.btn-fullscreen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-fullscreen:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-sm);
}

/* ── Topbar (breadcrumb + fullscreen) ────────────────────── */
.gp-topbar {
  background: rgba(5,5,16,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: var(--header-height);
  z-index: 90;
}

.gp-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.gp-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.gp-breadcrumb a:hover { color: var(--cyan); }

.gp-bc-sep { color: var(--text-muted); font-size: 12px; }

/* ── Main wrapper ────────────────────────────────────────── */
.gp-main {
  padding-top: 32px;
  padding-bottom: 60px;
  min-height: 60vh;
}

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

/* ── Title row ───────────────────────────────────────────── */
.gp-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.gp-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  padding: 10px 0px;
}

.gp-title-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ── Two-column layout ───────────────────────────────────── */
.gp-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

/* ── Frame column ────────────────────────────────────────── */
.gp-frame-col { display: flex; flex-direction: column; gap: 12px; }

.game-frame-wrap {
  position: relative;
  background: #0a0a1a;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 560px;
}

.game-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Fullscreen overrides */
.game-frame-wrap:fullscreen,
.game-frame-wrap:-webkit-full-screen {
  border-radius: 0;
  height: 100vh !important;
  width: 100vw !important;
}

.game-frame-wrap:fullscreen iframe,
.game-frame-wrap:-webkit-full-screen iframe {
  height: 100vh;
}

/* Loading overlay */
.game-frame-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  gap: 20px;
  z-index: 10;
  transition: opacity 0.5s ease;
}

.game-frame-loader.hidden { opacity: 0; pointer-events: none; }

/* Error overlay */
.game-error {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  gap: 16px;
  padding: 24px;
  text-align: center;
  z-index: 11;
}

.game-error.visible { display: flex; }
.game-error-icon    { font-size: 56px; }

.game-error-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.game-error-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.6;
}

.game-error-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Spinner */
.loader-spinner {
  width: 60px; height: 60px;
  border: 3px solid var(--border);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  box-shadow: var(--glow-sm);
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* Demo notice */
.gp-demo-notice {
  padding: 10px 16px;
  background: rgba(0,245,255,0.05);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gp-demo-notice i { color: var(--cyan); flex-shrink: 0; }

/* ── Sidebar ─────────────────────────────────────────────── */
.gp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

/* Stats box */
.gp-stats-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.gp-stats-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gp-stats-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.gp-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.gp-stat-row:last-child { border-bottom: none; }

.gp-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gp-stat-label i { width: 14px; text-align: center; color: var(--text-muted); }

.gp-stat-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

.gp-stat-green  { color: var(--green) !important; }
.gp-stat-gold   { color: var(--gold)  !important; }
.gp-stat-cyan   { color: var(--cyan)  !important; }

/* Tags box */
.gp-tags-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.gp-tags-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gp-tags-wrap { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
  max-height: 110px;
  overflow-y: auto;
  padding-right: 4px;
}

.gp-tags-wrap::-webkit-scrollbar {
  width: 4px;
}
.gp-tags-wrap::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 4px;
}
.gp-tags-wrap::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 4px;
}

.gp-tag {
  padding: 4px 10px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: 50px;
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: capitalize;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.gp-tag:hover {
  background: rgba(0,245,255,0.15);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}

/* RTP Daily Badge */
.rtp-daily-badge {
  display: inline-block;
  padding: 2px 6px;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(180,0,255,0.2));
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
  vertical-align: middle;
  animation: rtpPulse 3s ease-in-out infinite;
}

@keyframes rtpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Social Share Box */
.gp-share-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.gp-share-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gp-share-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gp-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--bg-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.gp-share-btn i {
  font-size: 14px;
}

.gp-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gp-share-fb {
  background: linear-gradient(135deg, #1877f2, #0d5dbf);
  border-color: #1877f2;
}

.gp-share-fb:hover {
  background: linear-gradient(135deg, #2b88ff, #1877f2);
  box-shadow: 0 4px 12px rgba(24,119,242,0.4);
}

.gp-share-twitter {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
  border-color: #1da1f2;
}

.gp-share-twitter:hover {
  background: linear-gradient(135deg, #33b1ff, #1da1f2);
  box-shadow: 0 4px 12px rgba(29,161,242,0.4);
}

.gp-share-wa {
  background: linear-gradient(135deg, #25d366, #1da851);
  border-color: #25d366;
}

.gp-share-wa:hover {
  background: linear-gradient(135deg, #3ae374, #25d366);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

.gp-share-copy {
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(180,0,255,0.2));
  border-color: rgba(0,245,255,0.3);
  color: var(--cyan);
}

.gp-share-copy:hover {
  background: linear-gradient(135deg, rgba(0,245,255,0.3), rgba(180,0,255,0.3));
  box-shadow: var(--glow-sm);
}

/* Sidebar CTA */
.gp-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(180,0,255,0.1));
  border: 1px solid rgba(0,245,255,0.25);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition);
}

.gp-sidebar-cta:hover {
  background: rgba(0,245,255,0.15);
  box-shadow: var(--glow-sm);
}

/* ── Article ─────────────────────────────────────────────── */
.gp-article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 40px;
}

.gp-article-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.gp-article-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.gp-article-body p strong { color: var(--text-primary); }

/* ── Article Body – Rich Typography ─────────────────────── */

.gp-article-body h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--glow-sm);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.gp-article-body h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-shadow: var(--glow-purple);
  margin: 22px 0 10px;
}

.gp-article-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin: 18px 0 8px;
}

.gp-article-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-article-body ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 10px 14px 10px 42px;
  position: relative;
  background: rgba(0, 245, 255, 0.04);
  border: 1px solid rgba(0, 245, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.gp-article-body ul li:hover {
  background: rgba(0, 245, 255, 0.07);
  border-color: rgba(0, 245, 255, 0.25);
  color: var(--text-primary);
}

.gp-article-body ul li::before {
  content: '▸';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  text-shadow: var(--glow-sm);
  font-size: 15px;
}

.gp-article-body ul li strong { color: var(--cyan); }

.gp-article-body ol {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  counter-reset: article-counter;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-article-body ol li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 10px 14px 10px 50px;
  position: relative;
  counter-increment: article-counter;
  background: rgba(180, 0, 255, 0.04);
  border: 1px solid rgba(180, 0, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.gp-article-body ol li:hover {
  background: rgba(180, 0, 255, 0.08);
  border-color: rgba(180, 0, 255, 0.35);
  color: var(--text-primary);
}

.gp-article-body ol li::before {
  content: counter(article-counter);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #050510;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gp-article-body ol li strong { color: var(--text-primary); }

.gp-article-body blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--cyan);
  background: rgba(0, 245, 255, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
}

.gp-article-body blockquote strong { color: var(--cyan); font-style: normal; }

.gp-article-body code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 4px;
  padding: 2px 7px;
}

.gp-article-body pre {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}

.gp-article-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--green);
}

.gp-article-body a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  transition: var(--transition);
}

.gp-article-body a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
  text-shadow: var(--glow-pink);
}

.gp-article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.gp-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.gp-article-body table th {
  background: rgba(0, 245, 255, 0.1);
  color: var(--cyan);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
}

.gp-article-body table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

.gp-article-body table tr:hover td {
  background: rgba(0, 245, 255, 0.03);
  color: var(--text-primary);
}

.gp-article-body em { color: var(--gold); font-style: italic; }

/* How to play */
.gp-howto {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.gp-howto-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gp-howto-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-howto-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gp-howto-list li strong { color: var(--text-primary); }

/* ══════════════════════════════════════════════════════════
   PROVIDER PAGE (provider.html)
   ══════════════════════════════════════════════════════════ */

/* Hero */
.prov-hero {
  position: relative;
  z-index: 1;
  padding: 48px 24px 40px;
  background: linear-gradient(180deg, rgba(0,245,255,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.prov-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prov-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.prov-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.prov-breadcrumb a:hover { color: var(--cyan); }

.prov-hero-identity {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.prov-hero-icon {
  font-size: 52px;
  line-height: 1;
  flex-shrink: 0;
}

.prov-hero-icon--img {
  font-size: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,245,255,0.15);
  padding: 8px;
  flex-shrink: 0;
}

.prov-hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,245,255,0.2));
}

.prov-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.prov-hero-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

/* Stats row */
.prov-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  width: fit-content;
}

.prov-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
}

.prov-stat:first-child { padding-left: 0; }

.prov-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.prov-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prov-stat-green { color: var(--green) !important; }
.prov-stat-cyan  { color: var(--cyan)  !important; }

.prov-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Games section */
.prov-games-section { position: relative; z-index: 1; }

.prov-games-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* Empty state */
.prov-empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.prov-empty i { font-size: 32px; opacity: 0.4; }

/* Provider chips → link style */
.provider-chip-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  font-family: 'Inter', sans-serif;
}

.provider-chip-link:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .prov-hero { padding: 56px 16px 28px; }
  .prov-hero-identity { flex-direction: column; gap: 0px; }
  .prov-hero-icon {
    font-size: 44px;
    align-self: flex-start;
    padding: 12px;
    background: rgba(0,0,0,0.25);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,245,255,0.12);
    line-height: 1;
    margin-bottom: 10px;
  }
  .prov-hero-icon--img {
    width: 72px;
    height: 72px;
    padding: 10px;
    align-self: flex-start;
    margin-bottom: 8px;
  }
  .prov-hero-stats { padding: 12px 16px; width: 100%; justify-content: space-around; }
  .prov-stat { padding: 0 12px; }
  .prov-games-inner { padding: 28px 16px 40px; }
}

@media (max-width: 480px) {
  .prov-hero-stats { gap: 8px; }
  .prov-stat-divider { display: none; }
  .prov-stat { padding: 0 8px; }
}

/* ── Provider Article Section ────────────────────────────── */
.prov-article {
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.prov-article-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(0,245,255,0.05) 0%, transparent 60%);
}

.prov-article-icon { font-size: 24px; flex-shrink: 0; }

.prov-article-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.prov-article-title-accent { color: var(--cyan); }

.prov-article-content {
  padding: 32px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 15px;
}

/* Headings inside article */
.prov-article-content h2,
.prov-article-content h3,
.prov-article-content h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.prov-article-content h2 { font-size: 18px; color: var(--cyan); border-color: rgba(0,245,255,0.2); }
.prov-article-content h3 { font-size: 15px; }
.prov-article-content h4 { font-size: 14px; border: none; color: var(--text-secondary); margin-top: 20px; }

/* First heading no top margin */
.prov-article-content > *:first-child,
.prov-article-content > p:first-child { margin-top: 0; }

/* Paragraphs */
.prov-article-content p {
  margin-bottom: 16px;
  margin-top: 0;
}

/* Bold / strong */
.prov-article-content strong,
.prov-article-content b {
  color: var(--text-primary);
  font-weight: 600;
}

/* Italic */
.prov-article-content em,
.prov-article-content i { color: var(--text-secondary); font-style: italic; }

/* Lists */
.prov-article-content ul,
.prov-article-content ol {
  margin: 8px 0 20px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prov-article-content ul > li {
  padding-left: 20px;
  position: relative;
}

.prov-article-content ul > li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.6;
}

.prov-article-content ol {
  counter-reset: prov-ol;
}

.prov-article-content ol > li {
  padding-left: 28px;
  position: relative;
  counter-increment: prov-ol;
}

.prov-article-content ol > li::before {
  content: counter(prov-ol) '.';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 13px;
}

/* Blockquote */
.prov-article-content blockquote {
  margin: 20px 0;
  padding: 14px 20px;
  border-left: 3px solid var(--cyan);
  background: rgba(0,245,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* Links */
.prov-article-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.prov-article-content a:hover { opacity: 0.75; }

/* Responsive */
@media (max-width: 768px) {
  .prov-article-header { padding: 18px 20px; }
  .prov-article-content { padding: 20px; font-size: 14px; }
  .prov-article-content h2 { font-size: 15px; }
  .prov-article-content h3 { font-size: 14px; }
}

/* ── Casino Bonuses ──────────────────────────────────────── */
.casino-bonuses {
  margin-bottom: 40px;
}

.cb-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cb-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: var(--transition);
}

.cb-card:hover {
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
  transform: translateY(-2px);
}

.cb-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.cb-rating i { font-size: 12px; }

.cb-logo {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding-right: 48px;
}

.cb-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.cb-logo-text span { color: var(--cyan); }

.cb-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.cb-desc strong { color: var(--text-primary); }

.cb-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.cb-btn:hover {
  background: linear-gradient(135deg, #33f7ff, #00bbff);
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.4);
}

@media (max-width: 768px) {
  .cb-grid { grid-template-columns: 1fr; }
}

@media (min-width: 480px) and (max-width: 768px) {
  .cb-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Related games ───────────────────────────────────────── */
.gp-related { margin-bottom: 20px; }

.gp-related-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .gp-layout { grid-template-columns: 1fr; }
  .gp-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .gp-stats-box { flex: 1; min-width: 240px; }
  .gp-tags-box  { flex: 1; min-width: 200px; }
  .gp-sidebar-cta { width: 100%; }
  .game-frame-wrap { height: 420px; }
}

@media (max-width: 600px) {
  .gp-container { padding: 0 16px; }
  .gp-main { padding-top: 20px; padding-bottom: 40px; }
  .game-frame-wrap { height: 320px; }
  .gp-article { padding: 20px 16px; }
  .gp-topbar-inner { padding: 8px 16px; }
  .btn-fullscreen span { display: none; }
  .gp-demo-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ══════════════════════════════════════════════════════════
   SKELETON LOADING
   ══════════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 0%,
    rgba(255,255,255,0.05) 50%,
    var(--bg-card) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
}

.skeleton-text {
  height: 16px;
  margin: 8px 0;
  border-radius: 4px;
}

.skeleton-text-short {
  width: 60%;
}

/* Game card loading state */
.game-card.loading .card-thumb {
  background: var(--bg-card);
}

.game-card.loading .card-thumb img {
  opacity: 0;
}

.game-card.loading .card-name,
.game-card.loading .card-meta {
  opacity: 0;
}

/* ══════════════════════════════════════════════════════════
   MOBILE / RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .hero { min-height: 400px; padding-top: calc(var(--header-height) + 32px); }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }

  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    margin: 0 12px 40px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .filter-bar { gap: 10px; flex-direction: column; align-items: flex-start; }
  .filter-bar-left { gap: 6px; }
  .filter-bar-right { width: 100%; }
  .filter-search-wrap { width: 100%; }
  .filter-search-input { width: 100%; box-sizing: border-box; }
  .filter-search-input:focus { width: 100%; }
  .filter-btn { padding: 6px 12px; font-size: 12px; }
  .section { padding: 32px 16px; }
  .hot-section { padding: 32px 16px 32px; }
  .providers-section { padding: 0 16px 40px; }
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,245,255,0.5); }
  50%       { text-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,245,255,0.8), 0 0 60px rgba(0,245,255,0.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-glow   { animation: glow-pulse 2.5s ease-in-out infinite; }
.animate-float  { animation: float 4s ease-in-out infinite; }
.animate-fadein { animation: fade-in-up 0.6s ease forwards; }

/* Stagger animations */
.games-grid .game-card { opacity: 0; animation: fade-in-up 0.5s ease forwards; }
.games-grid .game-card:nth-child(1)  { animation-delay: 0.05s; }
.games-grid .game-card:nth-child(2)  { animation-delay: 0.10s; }
.games-grid .game-card:nth-child(3)  { animation-delay: 0.15s; }
.games-grid .game-card:nth-child(4)  { animation-delay: 0.20s; }
.games-grid .game-card:nth-child(5)  { animation-delay: 0.25s; }
.games-grid .game-card:nth-child(6)  { animation-delay: 0.30s; }
.games-grid .game-card:nth-child(7)  { animation-delay: 0.35s; }
.games-grid .game-card:nth-child(n+9){ animation-delay: 0.45s; }

/* ── Fullscreen Overlay Mode ── */
.game-frame-wrap { position: relative; }
.btn-overlay-fs {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 15, 25, 0.75);
  border: 1px solid rgba(0, 245, 255, 0.3);
  color: var(--cyan);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0.5;
}
.btn-overlay-fs:hover {
  opacity: 1;
  background: rgba(0, 245, 255, 0.15);
  border-color: var(--cyan);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--glow-sm);
}

.fs-toolbar {
  display: none;
}

.game-frame-wrap:fullscreen,
.game-frame-wrap.fs-active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #000 !important;
}

.game-frame-wrap:fullscreen .btn-overlay-fs,
.game-frame-wrap.fs-active .btn-overlay-fs {
  display: none !important;
}

.game-frame-wrap:fullscreen .fs-toolbar,
.game-frame-wrap.fs-active .fs-toolbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 56px !important;
  background: var(--bg-card) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 0 16px !important;
  flex-shrink: 0 !important;
  z-index: 100 !important;
}

.fs-toolbar-left, .fs-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-fs-back, .btn-fs-action {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.btn-fs-back:hover, .btn-fs-action:hover {
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.1);
}

.fs-toolbar-title {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.game-frame-wrap:fullscreen iframe,
.game-frame-wrap.fs-active iframe {
  flex-grow: 1 !important;
  width: 100% !important;
  height: calc(100% - 56px) !important;
  border-radius: 0 !important;
  border: none !important;
  display: block !important;
  pointer-events: auto !important;
}

.hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── SEO Content Block (/demo/) ──────────────────────────── */
.seo-content-block {
  max-width: 800px;
}
.seo-content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-primary, #e2e8f0);
}
.seo-content-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text-primary, #e2e8f0);
}
.seo-content-block p {
  color: var(--text-secondary, #94a3b8);
  line-height: 1.8;
  margin-bottom: 16px;
}
.seo-content-block p:last-child {
  margin-bottom: 0;
}
.seo-content-block ul {
  color: var(--text-secondary, #94a3b8);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 16px;
}
.seo-content-block strong {
  color: var(--text-primary, #e2e8f0);
}
