:root {
  --bg: #0b1729;
  --bg2: #0d1e36;
  --bg3: #102040;
  --nav-bg: #080f1d;
  --pink: #e91e8c;
  --green: #00c851;
  --red: #cc1133;
  --gold: #ffd700;
  --blue: #00aaff;
  --text: #fff;
  --text-dim: #8aa8c8;
  --border: #1a3a6e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: Arial, Helvetica, sans-serif; min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: #060c18;
  border-bottom: 1px solid #1a2a4a;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 7px 20px;
}
.btn-register {
  background: linear-gradient(135deg, #00c851, #009940);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 24px; border-radius: 25px;
  box-shadow: 0 0 14px rgba(0,200,80,0.5);
  transition: all 0.2s; white-space: nowrap; display: inline-block;
}
.btn-register:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,200,80,0.65); }
.btn-login {
  background: linear-gradient(135deg, #cc1133, #99001f);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 22px; border-radius: 4px;
  transition: all 0.2s; white-space: nowrap; display: inline-block;
}
.btn-login:hover { background: linear-gradient(135deg, #dd1133, #aa0020); }
.or-text { color: var(--text-dim); font-size: 12px; }
.social-icons { display: flex; gap: 7px; }
.soc-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #0d1e36; border: 1px solid #1a3a6e;
  font-size: 13px; color: #7090b0; transition: all 0.2s; font-style: normal;
}
.soc-icon:hover { border-color: var(--blue); color: var(--blue); }

/* ===== SITE HEADER ===== */
.site-header {
  margin-top: 46px;
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.hdr-stars {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.06; pointer-events: none;
}
.hdr-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}

/* Logo */
.logo-area { display: flex; align-items: center; gap: 0; padding: 10px 0; }
.logo-emblem {
  width: 72px; height: 72px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.logo-emblem svg { width: 70px; height: 70px; }
.logo-text-wrap { line-height: 1; }
.logo-title {
  display: block; font-size: 2.1rem; font-weight: 900; letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff60b0, #e91e8c, #c00880);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 10px rgba(233,30,140,0.7));
  line-height: 1;
}
.logo-num {
  display: inline-block; font-size: 2.1rem; font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255,215,0,0.7);
  margin-left: 4px;
}
.logo-sub {
  display: block; font-size: 0.6rem; letter-spacing: 4px; color: var(--text-dim);
  text-transform: uppercase; margin-top: 2px;
}

/* Volcano logo (new design) */
.logo-volcano {
  width: 68px; height: 68px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.logo-volcano svg { width: 68px; height: 68px; }
.logo-text-block { line-height: 1; margin-left: 6px; }
.logo-line1 { display: flex; align-items: baseline; line-height: 1; }
.logo-vulkan {
  font-size: 2.0rem; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff60b0, #e91e8c, #c00880);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 10px rgba(233,30,140,0.7));
}
.logo-24 {
  font-size: 2.0rem; font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255,215,0,0.7);
  margin-left: 3px;
}
.logo-subtitle {
  display: block; font-size: 0.55rem; letter-spacing: 4px; color: var(--text-dim);
  text-transform: uppercase; margin-top: 3px;
}

/* Jackpot */
.jackpot-wrap {
  border: 2px solid #00aaff;
  box-shadow: 0 0 16px rgba(0,170,255,0.35), inset 0 0 20px rgba(0,170,255,0.04);
  padding: 8px 22px; border-radius: 4px;
  text-align: center; background: rgba(0,0,0,0.35);
  position: relative;
}
.jackpot-wrap::before { content: '★'; position: absolute; top:-12px; left:-12px; color:var(--gold); font-size:20px; text-shadow: 0 0 10px rgba(255,215,0,0.8); }
.jackpot-wrap::after  { content: '★'; position: absolute; top:-12px; right:-12px; color:var(--gold); font-size:20px; text-shadow: 0 0 10px rgba(255,215,0,0.8); }
.jackpot-lbl { font-size: 0.62rem; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; display: block; }
.jackpot-val {
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  text-shadow: 0 0 12px rgba(255,215,0,0.8);
  display: block; line-height: 1.1; letter-spacing: 1px;
}
.jackpot-rub { font-size: 1rem; }

/* ===== MAIN NAV ===== */
.main-nav { background: var(--nav-bg); border-top: 2px solid #1a3a6e; border-bottom: 2px solid #1a3a6e; }
.main-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; display: flex; }
.main-nav a {
  color: #ccd; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  padding: 12px 20px; display: block; border-right: 1px solid #1a3a6e; transition: all 0.2s;
}
.main-nav a:first-child { border-left: 1px solid #1a3a6e; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(255,215,0,0.04); }

/* ===== HERO AREA ===== */
.hero-area {
  max-width: 1280px; margin: 0 auto; padding: 14px 16px 0;
  display: grid; grid-template-columns: 1fr 290px; gap: 14px;
}

/* Hero banner */
.hero-banner {
  background: linear-gradient(135deg, #09172e 0%, #0c2050 60%, #08162c 100%);
  border: 1px solid #1a3a6e; border-radius: 6px;
  min-height: 280px; position: relative; overflow: hidden;
  display: flex;
}
.hero-banner-left {
  padding: 28px 24px; display: flex; flex-direction: column; justify-content: center;
  z-index: 2; width: 42%;
}
.hero-badge {
  color: var(--gold); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.hero-h1 { font-size: 1.7rem; font-weight: 900; line-height: 1.25; margin-bottom: 8px; }
.hero-h1 span { color: var(--gold); }
.hero-note { color: var(--text-dim); font-size: 13px; margin-bottom: 20px; }
.hero-note-gold {
  color: var(--gold); font-size: 1.1rem; font-weight: 700;
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
  line-height: 1.3; margin-bottom: 3px;
}
.hero-note-bold {
  font-size: 1.35rem; font-weight: 900;
  text-shadow: 0 0 14px rgba(255,215,0,0.8);
  margin-bottom: 18px;
}
/* Floating FS labels in hero */
.fs-float-left, .fs-float-right {
  position: absolute;
  font-size: 3.8rem; font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255,215,0,0.75);
  opacity: 0.22; pointer-events: none; z-index: 1;
  user-select: none;
}
.fs-float-left  { left: 36%;  top: 50%; transform: translateY(-50%); }
.fs-float-right { right: 2%;  bottom: 16%; }
.btn-spin {
  display: inline-block;
  background: linear-gradient(135deg, #cc1133, #990020);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 11px 32px; border-radius: 4px;
  box-shadow: 0 0 16px rgba(200,0,50,0.5);
  transition: all 0.2s; align-self: flex-start; border: none;
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,0,50,0.6); }
.hero-wheel-wrap {
  position: absolute; right: 0; top: 0; bottom: 0; width: 62%;
  display: flex; align-items: center; justify-content: center;
}
#wheelCanvas { width: 100%; height: 100%; }

/* Winners panel (right of hero) */
.winners-panel {
  background: var(--bg2); border: 1px solid #1a3a6e; border-radius: 6px; overflow: hidden;
}
.winners-tabs { display: flex; border-bottom: 1px solid #1a3a6e; }
.wtab {
  flex: 1; padding: 9px 6px; text-align: center;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-dim); cursor: pointer; border-right: 1px solid #1a3a6e; transition: all 0.2s;
}
.wtab:last-child { border-right: none; }
.wtab.active { color: var(--gold); }
.winner-row {
  display: grid; grid-template-columns: 42px 1fr auto;
  gap: 8px; align-items: center;
  padding: 7px 10px; border-bottom: 1px solid rgba(26,58,110,0.4);
}
.winner-row:last-child { border-bottom: none; }
.winner-thumb {
  width: 40px; height: 40px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; text-align: center; line-height: 1.1;
  overflow: hidden; flex-shrink: 0;
}
.winner-name { font-size: 11px; font-weight: 700; }
.winner-game { font-size: 9px; color: var(--text-dim); }
.winner-sum { font-size: 11px; font-weight: 700; color: var(--green); text-align: right; }

/* ===== CATEGORY TABS BAR ===== */
.cat-bar-wrap { background: var(--nav-bg); border-bottom: 1px solid #1a3a6e; margin-bottom: 0; }
.cat-bar {
  max-width: 1280px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; gap: 0;
}
.cat-tab {
  padding: 11px 22px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: #fff; cursor: pointer; border-right: 1px solid #1a3a6e;
  transition: all 0.2s; white-space: nowrap; background: transparent; border: none;
  border-right: 1px solid #1a3a6e;
  /* neon text effect for active */
}
.cat-tab:hover, .cat-tab.active {
  color: #ff3060;
  text-shadow: 0 0 8px rgba(255,30,80,0.6);
}
.cat-bar-search {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  padding: 8px 0;
}
.cat-bar-search input {
  background: #0d1e36; border: 1px solid #1a3a6e;
  color: #fff; padding: 7px 12px; border-radius: 4px;
  font-size: 13px; outline: none; width: 200px;
}
.cat-bar-search input::placeholder { color: var(--text-dim); }
.cat-bar-search .s-icon { color: var(--text-dim); font-size: 16px; }

/* ===== PROVIDER FILTER ===== */
.prov-bar-wrap { background: #090f1e; border-bottom: 1px solid #1a3a6e; }
.prov-bar {
  max-width: 1280px; margin: 0 auto; padding: 8px 16px;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.prov-btn {
  padding: 5px 14px; font-size: 12px; font-weight: 600;
  color: var(--text-dim); border-radius: 4px; cursor: pointer;
  border: 1px solid transparent; background: transparent; transition: all 0.2s;
}
.prov-btn.active {
  background: #0d1e36; border-color: var(--blue);
  color: #fff; border-radius: 25px;
  box-shadow: 0 0 8px rgba(0,170,255,0.2);
}
.prov-btn:hover:not(.active) { color: #fff; background: rgba(255,255,255,0.04); }
.sort-btn {
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-dim); cursor: pointer; background: none; border: none;
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
  max-width: 1280px; margin: 0 auto; padding: 14px 16px;
  display: grid; grid-template-columns: 1fr 290px; gap: 14px;
}

/* ===== GAME GRID ===== */
.game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
  align-content: start;
}
.game-card {
  background: var(--bg3); border: 1px solid #1a3a6e;
  border-radius: 5px; overflow: hidden;
  cursor: pointer; transition: all 0.22s; position: relative;
  align-self: start;
  display: flex; flex-direction: column;
}
.game-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 16px rgba(0,170,255,0.28);
  transform: translateY(-3px);
}
.game-thumb {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.game-thumb-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px;
}
.game-logo {
  font-size: 0.85rem; font-weight: 900; text-transform: uppercase;
  text-align: center; line-height: 1.2; padding: 0 6px;
}
.game-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity 0.2s;
}
.game-card:hover .game-overlay { opacity: 1; }
.btn-ov-demo {
  padding: 6px 14px; font-size: 11px; font-weight: 700;
  background: transparent; border: 2px solid #fff; color: #fff;
  border-radius: 4px; cursor: pointer; transition: all 0.15s;
}
.btn-ov-demo:hover { background: rgba(255,255,255,0.12); }
.btn-ov-play {
  padding: 7px 14px; font-size: 11px; font-weight: 700;
  background: var(--green); color: #fff; border: none;
  border-radius: 4px; cursor: pointer; transition: all 0.15s;
}
.btn-ov-play:hover { background: #00a840; }
.game-name {
  padding: 6px 8px; font-size: 11px; font-weight: 600; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.badge-new, .badge-hot, .hot-badge {
  position: absolute; top: 5px; left: 5px; z-index: 2;
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 3px; text-transform: uppercase;
}
.badge-new { background: var(--red); color: #fff; }
.badge-hot { background: #ff6600; color: #fff; }
.hot-badge { background: #ff6600; color: #fff; }

/* Game card emoji & sub */
.gi-emoji {
  font-size: 2.0rem; line-height: 1; margin-bottom: 4px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.gi-sub {
  font-size: 0.65rem; font-weight: 600; text-align: center;
  opacity: 0.85; margin-top: 2px;
}
.thumb-txt {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  text-align: center; line-height: 1.2; color: rgba(255,255,255,0.75);
  padding: 0 3px;
}
/* Real game thumbnail image */
.game-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.3s ease;
}
.game-card:hover .game-thumb-img { transform: scale(1.05); }

/* ===== RIGHT SIDEBAR ===== */
.sidebar {}

/* Tournament leaderboard */
.sb-panel {
  background: var(--bg2); border: 1px solid #1a3a6e;
  border-radius: 6px; overflow: hidden; margin-bottom: 14px;
}
.sb-panel-hdr {
  background: linear-gradient(135deg, #09172e, #0c2050);
  padding: 10px 14px; font-size: 0.95rem; font-weight: 700;
}
.sb-panel-hdr .prize { color: var(--gold); }
.sb-panel-hdr .timer-lbl { font-size: 10px; color: var(--text-dim); margin-top: 3px; }
.sb-panel-hdr .countdown { font-size: 1.2rem; font-weight: 700; }

/* Tournament panel new elements */
.sb-panel-name {
  font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.sb-prize-row {
  display: flex; justify-content: space-between; align-items: flex-end;
}
.sb-prize-lbl {
  font-size: 9px; color: var(--text-dim); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 2px;
}
.sb-prize-val {
  font-size: 1.25rem; font-weight: 900; color: var(--gold);
  text-shadow: 0 0 8px rgba(255,215,0,0.6); line-height: 1;
}
.sb-timer {
  font-size: 1.25rem; font-weight: 900; color: #00aaff;
  text-shadow: 0 0 8px rgba(0,170,255,0.6); line-height: 1;
  letter-spacing: 2px;
}

/* Leaderboard header row */
.lb-head {
  display: grid; grid-template-columns: 20px 1fr auto;
  gap: 8px; align-items: center;
  padding: 5px 12px; border-bottom: 1px solid rgba(26,58,110,0.7);
  background: rgba(0,0,0,0.2);
}
.lb-h-rank, .lb-h-name, .lb-h-score {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-dim);
}
.lb-h-score { text-align: right; }

.leaderboard {}
.lb-row {
  display: grid; grid-template-columns: 20px 1fr auto;
  gap: 8px; align-items: center;
  padding: 7px 12px; border-bottom: 1px solid rgba(26,58,110,0.4);
  font-size: 12px;
}
.lb-row:last-child { border-bottom: none; }
.lb-rank { color: var(--text-dim); font-weight: 700; font-size: 11px; }
.lb-name { font-weight: 600; }
.lb-score { color: var(--gold); font-weight: 700; text-align: right; white-space: nowrap; }
.btn-join-tourney {
  display: block; text-align: center; margin: 12px;
  background: linear-gradient(135deg, #cc1133, #99001f);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 10px; border-radius: 4px;
  box-shadow: 0 0 14px rgba(200,0,50,0.4);
  transition: all 0.2s;
}
.btn-join-tourney:hover { transform: translateY(-1px); }

/* News widget */
.news-widget {
  background: var(--bg2); border: 1px solid #1a3a6e;
  border-radius: 6px; overflow: hidden;
}
.news-hdr {
  background: #1a3a6e; padding: 8px 12px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-dim);
}
.news-body { padding: 14px; }
.news-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.news-img {
  width: 100%; height: 80px; border-radius: 4px;
  background: linear-gradient(135deg, #1a0a2e, #350868);
  display: flex; align-items: center; justify-content: center; font-size: 32px;
  margin-bottom: 12px; border: 1px solid #1a3a6e;
}
.news-dots { display: flex; gap: 5px; justify-content: center; margin-bottom: 12px; }
.news-dot { width: 8px; height: 8px; border-radius: 50%; background: #1a3a6e; }
.news-dot.active { background: var(--gold); }
.btn-all-news {
  display: block; text-align: center; background: transparent;
  border: 1px solid #1a3a6e; color: var(--text-dim);
  font-size: 12px; padding: 7px; border-radius: 4px; transition: all 0.2s;
}
.btn-all-news:hover { border-color: var(--blue); color: var(--blue); }

/* ===== PAYMENT ROW ===== */
.payment-row {
  max-width: 1280px; margin: 0 auto; padding: 0 16px 14px;
}
.payment-inner {
  background: var(--bg2); border: 1px solid #1a3a6e; border-radius: 6px;
  padding: 16px 25px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.pay-item {
  height: 28px; display: flex; align-items: center;
  border-radius: 4px; transition: all 0.2s; opacity: 0.85;
  overflow: hidden;
}
.pay-item svg { display: block; height: 28px; width: 60px; }
.pay-item:hover { opacity: 1; transform: translateY(-1px); }

/* ===== SEO TEXT ===== */
.seo-area {
  max-width: 1280px; margin: 0 auto; padding: 0 16px 14px;
}
.seo-inner {
  background: var(--bg2); border: 1px solid #1a3a6e; border-radius: 6px;
  padding: 22px 25px;
}
.seo-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.seo-body { font-size: 13px; line-height: 1.8; color: #7090a8; }
.seo-body p { margin-bottom: 10px; }
.seo-body p:last-child { margin-bottom: 0; }
.seo-body h2 { font-size: 1.05rem; font-weight: 700; color: #ffd700; margin: 18px 0 8px; line-height: 1.4; }
.seo-body h3 { font-size: 0.95rem; font-weight: 700; color: #c8d8e8; margin: 14px 0 6px; line-height: 1.4; }
.seo-body h2:first-child, .seo-body h3:first-child { margin-top: 0; }
.kw { color: inherit; background: transparent; font-weight: inherit; }

/* ===== FOOTER ===== */
footer { background: #060c18; border-top: 2px solid #1a3a6e; padding: 30px 0 15px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-bottom: 25px; }
.footer-col h4 {
  font-size: 11px; color: #fff; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px; padding-bottom: 7px; border-bottom: 1px solid #1a3a6e;
}
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 13px; color: var(--text-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; color: var(--text-dim); font-size: 13px; }
.footer-contact a { color: var(--text-dim); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1a3a6e; padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 11px; color: var(--text-dim); }
.footer-right { display: flex; align-items: center; gap: 12px; }
.badge-wp { opacity: 0.7; font-size: 12px; color: var(--text-dim); }
.badge-18 {
  width: 28px; height: 28px; border: 2px solid var(--text-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--text-dim);
}

/* ===== INNER PAGES ===== */
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 18px 16px; }

.page-hero {
  background: linear-gradient(135deg, #09172e, #0c2050, #08162c);
  border: 1px solid #1a3a6e; border-radius: 6px;
  padding: 32px 32px; margin-bottom: 16px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(233,30,140,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-block; background: rgba(204,17,51,0.18); border: 1px solid #cc1133;
  color: #ff8099; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 25px; margin-bottom: 14px;
}
.page-hero h1 { font-size: 1.85rem; font-weight: 900; line-height: 1.25; margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero > p { font-size: 14px; color: var(--text-dim); line-height: 1.65; max-width: 680px; margin-bottom: 20px; position: relative; z-index: 1; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-primary {
  background: linear-gradient(135deg, #cc1133, #99001f); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 28px; border-radius: 4px; box-shadow: 0 0 14px rgba(200,0,50,0.45); transition: all 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(200,0,50,0.55); }
.btn-secondary {
  background: transparent; border: 2px solid var(--blue); color: var(--blue);
  font-weight: 700; font-size: 14px; padding: 10px 24px; border-radius: 4px; transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(0,170,255,0.1); }

.content-block {
  background: var(--bg2); border: 1px solid #1a3a6e;
  border-radius: 6px; padding: 22px 25px; margin-bottom: 14px;
}
.content-block h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #1a3a6e; }
.content-block p { font-size: 13px; color: #8ab4d4; line-height: 1.75; margin-bottom: 10px; }
.content-block p:last-child { margin-bottom: 0; }
.info-box { background: rgba(0,170,255,0.05); border: 1px solid rgba(0,170,255,0.22); border-radius: 4px; padding: 14px; margin-top: 10px; }
.info-box p { color: #7aaac0 !important; }

.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.c3-card { background: var(--bg3); border: 1px solid #1a3a6e; border-radius: 6px; padding: 20px; transition: border-color 0.2s; }
.c3-card:hover { border-color: var(--blue); }
.c3-icon { font-size: 28px; margin-bottom: 10px; }
.c3-card h3 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.c3-card p { font-size: 12px; color: var(--text-dim); line-height: 1.55; }

.section-cta { text-align: center; margin: 16px 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.step-card { background: var(--bg2); border: 1px solid #1a3a6e; border-radius: 6px; padding: 18px 14px; text-align: center; }
.step-num { width: 34px; height: 34px; border-radius: 50%; background: #cc1133; color: #fff; font-weight: 900; font-size: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 11px; color: var(--text-dim); line-height: 1.55; }

.faq-item { background: var(--bg2); border: 1px solid #1a3a6e; border-radius: 6px; margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 18px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q::after { content: '+'; font-size: 18px; color: var(--text-dim); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 18px; max-height: 0; overflow: hidden; font-size: 13px; color: var(--text-dim); line-height: 1.7; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding: 12px 18px; }

/* win ticker */
.win-ticker { background: #060c18; border-top: 1px solid #1a3a6e; border-bottom: 1px solid #1a3a6e; overflow: hidden; padding: 8px 0; }
.win-ticker-inner { display: flex; gap: 40px; animation: ticker 32s linear infinite; white-space: nowrap; }
.win-item { font-size: 12px; color: var(--text-dim); flex-shrink: 0; }
.win-item strong { color: var(--gold); }
.win-item .wm { color: var(--green); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-area, .main-layout { grid-template-columns: 1fr; }
  .winners-panel { display: none; }
  .sidebar { display: none; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Top bar */
  .top-bar { gap: 6px; padding: 6px 10px; flex-wrap: wrap; }
  .or-text, .social-icons { display: none; }
  .btn-register { font-size: 12px; padding: 7px 14px; }
  .btn-login { font-size: 12px; padding: 7px 14px; }

  /* Header */
  .site-header { margin-top: 50px; }
  .hdr-inner { flex-direction: column; gap: 12px; padding: 14px 12px; }
  .logo-area { gap: 10px; }
  .logo-volcano svg { width: 50px; height: 50px; }
  .logo-line1 { font-size: 1.4rem; }
  .logo-vulkan, .logo-24 { font-size: 1.4rem; }
  .logo-subtitle { font-size: 0.65rem; }
  .jackpot-wrap { padding: 8px 14px; }
  .jackpot-lbl { font-size: 11px; }
  .jackpot-val { font-size: 1.1rem; }

  /* Main nav — horizontal scroll instead of hide */
  .main-nav-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .main-nav-inner::-webkit-scrollbar { display: none; }
  .main-nav a { padding: 12px 16px; font-size: 12px; white-space: nowrap; flex-shrink: 0; }

  /* Hero */
  .hero-banner { min-height: 220px; }
  .hero-banner-left { width: 100%; padding: 18px 16px; }
  .hero-h1 { font-size: 1.25rem; }
  .hero-note-gold { font-size: 0.95rem; }
  .hero-note-bold { font-size: 1.05rem; margin-bottom: 14px; }
  .btn-spin { font-size: 13px; padding: 10px 22px; }
  .hero-wheel-wrap { width: 50%; opacity: 0.35; }
  .fs-float-left, .fs-float-right { display: none; }

  /* Category & provider bars — horizontal scroll */
  .cat-bar, .prov-bar {
    overflow-x: auto; flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .cat-bar::-webkit-scrollbar, .prov-bar::-webkit-scrollbar { display: none; }
  .cat-tab, .prov-btn { white-space: nowrap; flex-shrink: 0; padding: 9px 14px; font-size: 11px; }
  .cat-bar-search { flex-shrink: 0; min-width: 140px; }
  .cat-bar-search input { font-size: 12px; }
  .sort-btn { white-space: nowrap; flex-shrink: 0; }

  /* Game grid */
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-name { font-size: 12px; }
  .hot-badge, .badge-new { font-size: 9px; padding: 2px 6px; }

  /* Payment row */
  .payment-inner { gap: 12px; padding: 12px; }
  .pay-item { height: 24px; }
  .pay-item svg { height: 24px; width: 50px; }

  /* SEO area */
  .seo-inner { padding: 16px 14px; }
  .seo-title { font-size: 1rem; }
  .seo-body p { font-size: 12px; }

  /* Page hero (casino/app) */
  .page-hero h1 { font-size: 1.4rem; }
  .page-hero > p { font-size: 13px; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }

  .top-bar { padding: 6px 8px; }
  .btn-register { font-size: 11px; padding: 6px 10px; }
  .btn-login { font-size: 11px; padding: 6px 10px; }

  .hero-banner { min-height: 180px; }
  .hero-h1 { font-size: 1.1rem; }
  .hero-note-bold { font-size: 0.95rem; }
  .hero-wheel-wrap { width: 45%; opacity: 0.25; }

  .game-grid { gap: 8px; }
  .game-name { font-size: 11px; padding: 6px 4px; }

  .payment-inner { gap: 8px; padding: 10px 8px; }
  .pay-item svg { width: 44px; height: 22px; }
  .pay-item { height: 22px; }

  .jackpot-val { font-size: 0.95rem; }
  .logo-line1, .logo-vulkan, .logo-24 { font-size: 1.2rem; }
}
