@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;500;600;700;800&family=JetBrains+Mono:wght@300;400&display=swap');

/* ── TOKENS ── */
:root {
  --void:       #03050A;
  --deep:       #070C15;
  --surface:    #0C1220;
  --panel:      #111827;
  --panel2:     #161F30;
  --cyan:       #00E5FF;
  --cyan-dim:   #00A8BB;
  --cyan-glow:  rgba(0,229,255,0.15);
  --cyan-glow2: rgba(0,229,255,0.06);
  --magenta:    #FF2D78;
  --mag-glow:   rgba(255,45,120,0.15);
  --amber:      #FFB800;
  --green:      #00FF87;
  --text:       #E8EDF5;
  --text-2:     #8899B0;
  --text-3:     #3D4E63;
  --border:     rgba(0,229,255,0.1);
  --border2:    rgba(0,229,255,0.05);
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       20px;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Syne', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: default;
}

/* custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 2px; }

a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

h1,h2,h3,h4 { line-height: 1.1; }
p { color: var(--text-2); line-height: 1.75; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── CANVAS BACKGROUND ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* everything above canvas */
header, main, footer { position: relative; z-index: 1; }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.4;
}

/* ── NOTICE BAR ── */
.notice-bar {
  background: linear-gradient(90deg, var(--void), rgba(0,229,255,0.08), var(--void));
  border-bottom: 1px solid var(--border);
  padding: 9px 24px;
  text-align: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--cyan-dim);
  letter-spacing: 0.08em;
}
.notice-bar span { color: var(--magenta); }

/* ── HEADER ── */
header {
  background: rgba(3,5,10,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff !important;
  flex-shrink: 0;
  line-height: 1;
}
.logo em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,229,255,0.3);
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
nav a {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width .2s var(--ease);
  box-shadow: 0 0 8px var(--cyan);
}
nav a:hover, nav a.active { color: #fff; }
nav a:hover::after, nav a.active::after { width: calc(100% - 28px); }

.nav-providers-btn {
  margin-left: auto;
  background: var(--cyan-glow2);
  border: 1px solid var(--border);
  color: var(--cyan) !important;
  border-radius: 8px;
  font-size: 12px !important;
  padding: 8px 16px !important;
}
.nav-providers-btn:hover { background: var(--cyan-glow) !important; border-color: var(--cyan-dim); }

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 220px;
  transition: border-color .2s;
}
.header-search:focus-within { border-color: var(--cyan-dim); box-shadow: 0 0 0 3px var(--cyan-glow2); }
.header-search input {
  background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 13px; width: 100%;
}
.header-search input::placeholder { color: var(--text-3); }
.search-ico { color: var(--text-3); font-size: 16px; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,229,255,0.02) 50%, transparent 100%),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0,229,255,0.03) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(0,229,255,0.03) 80px);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  top: -20%; left: -10%;
  width: 60vw; height: 70vh;
  background: radial-gradient(ellipse, rgba(0,229,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-right {
  position: absolute;
  bottom: -20%; right: -10%;
  width: 50vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(255,45,120,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 28px;
}
.hero-title .accent {
  color: var(--cyan);
  text-shadow: 0 0 40px var(--cyan), 0 0 80px rgba(0,229,255,0.3);
  display: block;
}
.hero-title .accent2 {
  color: var(--magenta);
  text-shadow: 0 0 40px var(--magenta), 0 0 80px rgba(255,45,120,0.3);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 20px var(--cyan);
  letter-spacing: 0.03em;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-family: var(--font-mono);
}
.hero-search-wrap {
  display: flex;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 520px;
  transition: border-color .2s, box-shadow .2s;
}
.hero-search-wrap:focus-within {
  border-color: var(--cyan-dim);
  box-shadow: 0 0 0 4px var(--cyan-glow2), 0 0 30px var(--cyan-glow);
}
.hero-search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  padding: 16px 20px; color: var(--text);
  font-family: var(--font-body); font-size: 15px;
}
.hero-search-wrap input::placeholder { color: var(--text-3); }
.hero-search-btn {
  background: var(--cyan);
  border: none;
  color: var(--void);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 28px;
  cursor: pointer;
  transition: background .2s;
}
.hero-search-btn:hover { background: #fff; }

/* hero right — featured cards stack */
.hero-right {
  position: relative;
  height: 460px;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-featured-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  transition: all .4s var(--ease);
  cursor: pointer;
}
.hfc-1 { width: 260px; height: 320px; top: 0; left: 50%; transform: translateX(-50%) rotate(-6deg); z-index: 1; }
.hfc-2 { width: 280px; height: 340px; top: 40px; left: 50%; transform: translateX(-40%) rotate(0deg); z-index: 2; }
.hfc-3 { width: 260px; height: 320px; top: 20px; left: 50%; transform: translateX(-60%) rotate(4deg); z-index: 3; }
.hfc-3:hover { transform: translateX(-60%) rotate(4deg) scale(1.04) translateY(-8px); z-index: 10; }
.hfc-2:hover { transform: translateX(-40%) rotate(0deg) scale(1.04) translateY(-8px); z-index: 10; }
.hfc-1:hover { transform: translateX(-50%) rotate(-6deg) scale(1.04) translateY(-8px); z-index: 10; }
.hfc-img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--panel2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hfc-img img { width: 100%; height: 100%; object-fit: cover; }
.hfc-body { padding: 14px 16px; }
.hfc-name { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 4px; }
.hfc-provider { font-family: var(--font-mono); font-size: 10px; color: var(--cyan); letter-spacing: 0.1em; }
.hfc-rtp { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); float: right; margin-top: -18px; }
.hfc-play {
  display: block;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: var(--void);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SECTION HEADERS ── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}
.view-all-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.view-all-link:hover { color: #fff; border-color: var(--text-2); }

/* ── FILTER PILLS ── */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-mono);
}
.pill:hover { border-color: var(--cyan-dim); color: var(--cyan); }
.pill.active {
  background: var(--cyan-glow);
  border-color: var(--cyan-dim);
  color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* ── GAME GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  display: block;
  position: relative;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(0,229,255,0.04), transparent);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.game-card:hover {
  border-color: rgba(0,229,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px var(--cyan-glow);
}
.game-card:hover::before { opacity: 1; }

.game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--panel2);
}
.game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.game-card:hover .game-thumb img { transform: scale(1.07); }
.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  padding: 12px;
}

.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.badge-hot { background: rgba(255,45,120,0.9); color: #fff; }
.badge-new { background: rgba(0,255,135,0.9); color: #000; }
.badge-top { background: rgba(255,184,0,0.9); color: #000; }

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,5,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.game-card:hover .play-overlay { opacity: 1; }
.play-pill {
  background: var(--cyan);
  color: var(--void);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 40px;
  box-shadow: 0 0 20px var(--cyan);
}

.game-info { padding: 12px 14px 14px; }
.game-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.game-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.game-prov {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.game-rtp {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan-dim);
}

/* ── PROVIDERS SHOWCASE ── */
.providers-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.prov-card {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.prov-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.prov-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.prov-card:hover::after { opacity: 1; }
.prov-abbr {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--panel2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px var(--cyan-dim);
}
.prov-name { font-size: 12px; font-weight: 700; color: var(--text); }
.prov-games { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); letter-spacing: 0.08em; }

/* ── MARQUEE TICKER ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: var(--deep);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.marquee-item span { color: var(--cyan); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BIG PROMO STRIP ── */
.promo-strip {
  background: linear-gradient(135deg, var(--surface), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.08), transparent 70%);
  pointer-events: none;
}
.promo-strip::after {
  content: '';
  position: absolute;
  bottom: -60%; left: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,45,120,0.06), transparent 70%);
  pointer-events: none;
}
.promo-text { position: relative; z-index: 1; }
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.promo-title em { color: var(--cyan); font-style: normal; text-shadow: 0 0 30px var(--cyan); }
.promo-sub { color: var(--text-2); font-size: 0.95rem; max-width: 420px; }
.promo-actions { display: flex; gap: 12px; align-items: center; position: relative; z-index: 1; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--cyan);
  color: var(--void);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.btn-primary:hover { background: #fff; color: var(--void); box-shadow: 0 0 30px rgba(255,255,255,0.2); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--cyan-dim); color: var(--cyan); }

/* ── SEO BLOCK ── */
.seo-block {
  background: var(--deep);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.seo-block::before {
  content: 'SEO';
  position: absolute;
  top: -10px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(0,229,255,0.03);
  pointer-events: none;
  letter-spacing: 0.1em;
}
.seo-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}
.seo-block p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 12px;
  max-width: 800px;
}
.seo-block p:last-child { margin-bottom: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 3px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(0,229,255,0.15); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--cyan); }
.faq-icon {
  color: var(--cyan);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  line-height: 1;
  font-family: var(--font-mono);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease), padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }
.faq-a p { font-size: 13px; color: var(--text-2); line-height: 1.75; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s var(--ease);
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.blog-img {
  height: 170px;
  background: var(--panel2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.blog-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
  display: block;
}
.blog-body { padding: 22px 24px 24px; }
.blog-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.blog-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.blog-meta { margin-top: 16px; font-family: var(--font-mono); font-size: 10px; color: var(--text-3); letter-spacing: 0.08em; display: flex; gap: 16px; }

/* ── PROVIDER PAGE HERO ── */
.prov-hero {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 44px;
  position: relative;
  overflow: hidden;
}
.prov-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06), transparent 70%);
  pointer-events: none;
}
.prov-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.prov-logo-box {
  width: 88px; height: 88px;
  flex-shrink: 0;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-dim);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}
.prov-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}
.prov-hero-desc { color: var(--text-2); max-width: 660px; font-size: 14px; }
.prov-stats-row { display: flex; gap: 32px; margin-top: 22px; flex-wrap: wrap; }
.prov-stat-val { font-family: var(--font-display); font-size: 1.6rem; color: var(--cyan); letter-spacing: 0.05em; text-shadow: 0 0 15px var(--cyan-dim); }
.prov-stat-label { font-family: var(--font-mono); font-size: 9px; color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--cyan); }

/* ── SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, var(--panel) 25%, var(--panel2) 50%, var(--panel) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 6px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skel-card { background: var(--panel); border: 1px solid var(--border2); border-radius: var(--r-md); overflow: hidden; }
.skel-thumb { width: 100%; aspect-ratio: 4/3; }
.skel-body { padding: 12px 14px 14px; }
.skel-line { height: 11px; border-radius: 4px; margin-bottom: 7px; }

/* ── GAME DETAIL ── */
.game-detail-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 340px; gap: 32px; }
.iframe-shell {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
}
.iframe-shell iframe { width: 100%; height: 100%; border: none; }
.game-side-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.meta-table { width: 100%; border-collapse: collapse; }
.meta-table tr { border-bottom: 1px solid var(--border2); }
.meta-table tr:last-child { border-bottom: none; }
.meta-table td { padding: 11px 0; font-size: 13px; }
.meta-table td:first-child { color: var(--text-3); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.meta-table td:last-child { color: var(--text); font-weight: 600; text-align: right; }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border2);
  padding: 60px 24px 36px;
  margin-top: 80px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.5rem; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-2); max-width: 280px; line-height: 1.75; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.footer-bottom strong { color: var(--text-2); }

/* ── LOADING / EMPTY ── */
.no-games {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

/* ── BLOG ARTICLE ── */
.article-body { font-size: 15px; color: var(--text-2); line-height: 1.85; }
.article-body h2 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.04em; color: #fff; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--cyan); }
.info-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 22px 24px;
  margin: 24px 0;
}
.info-box.magenta { border-left-color: var(--magenta); }
.cta-box {
  background: linear-gradient(135deg, var(--surface), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: center;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.08), transparent 70%);
  pointer-events: none;
}

/* ── SORT SELECT ── */
select.sort-sel {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 9px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  outline: none;
}
select.sort-sel:focus { border-color: var(--cyan-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .providers-showcase { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .game-detail-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .providers-showcase { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  nav { display: none; }
  .prov-hero-inner { flex-direction: column; gap: 20px; }
  .promo-strip { flex-direction: column; padding: 36px 28px; }
  .header-search { min-width: 160px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .seo-block { padding: 28px 24px; }
}

/* ── ENTRANCE ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .6s var(--ease) both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }
.fade-up-5 { animation-delay: .5s; }
