:root {
  --bg: #121212;
  --bg-elevated: #1a1a1c;
  --bg-card: #1e1e22;
  --border: rgba(255,255,255,0.08);
  --orange: #ff5722;
  --orange-hover: #ff7043;
  --orange-glow: rgba(255,87,34,0.4);
  --green: #22c55e;
  --green-dark: #15803d;
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted-dim: #71717a;
  --red-tag: #7f1d1d;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}
a.ref, a.ref:visited { color: inherit; text-decoration: none; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }

body.has-redirect-bar {
  padding-top: 52px;
}
body.has-redirect-bar .header {
  top: 52px;
}

.redirect-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: linear-gradient(90deg, #2a0a0a 0%, #1a0a0a 45%, #0f0f0f 100%);
  border-bottom: 1px solid rgba(220, 38, 38, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  font-size: 0.8125rem;
  transition: transform 0.35s ease, opacity 0.3s ease;
}
.redirect-bar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.redirect-bar__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.redirect-bar__close:hover {
  background: rgba(220, 38, 38, 0.35);
  color: #fff;
}
.redirect-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.redirect-bar__logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  color: #fff;
}
.redirect-bar__name {
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.redirect-bar__name span:first-child { color: #fecaca; }
.redirect-bar__name span:last-child { color: #fff; }
.redirect-bar__text {
  flex: 1;
  min-width: 180px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}
.redirect-bar__text strong { color: #fff; font-weight: 700; }
.redirect-bar__pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
}
.redirect-bar__pill-num {
  color: #ff6b6b;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}
.redirect-bar__cta {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  box-shadow: 0 2px 16px rgba(220, 38, 38, 0.45);
  transition: transform 0.15s, box-shadow 0.15s;
}
.redirect-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.55);
}
@media (max-width: 640px) {
  .redirect-bar__text { order: 10; width: 100%; flex-basis: 100%; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__mark svg { width: 22px; height: 22px; fill: #fff; }
.logo__words { line-height: 1.05; }
.logo__words span:first-child {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.logo__words span:last-child {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #f87171;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}
.nav-main a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  opacity: 0.9;
}
.nav-main a:hover { color: var(--orange); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn--green {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 0 20px rgba(34,197,94,0.25);
}
.btn--green:hover { background: #166534; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
}
.btn--ghost:hover { color: var(--orange); }
.btn--orange {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 24px var(--orange-glow);
}
.btn--orange:hover { background: var(--orange-hover); }
.btn--orange-lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  width: 100%;
  max-width: 340px;
}
.btn--block { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 15% 100%, rgba(255,87,34,0.18), transparent 55%),
    linear-gradient(180deg, #121212 0%, #161616 100%);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0.35;
  pointer-events: none;
}
.hero__bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18,18,18,0.92) 0%, rgba(18,18,18,0.75) 45%, rgba(18,18,18,0.55) 100%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
}
.hero-tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--red-tag);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 100%;
  line-height: 1.35;
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero h1 .accent {
  display: block;
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  color: var(--orange);
  margin-top: 0.2rem;
}
.hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36ch;
  margin-bottom: 1.35rem;
}
.hero__lead strong { color: var(--orange); font-weight: 800; }
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  max-width: 420px;
}
@media (min-width: 520px) {
  .hero-features { grid-template-columns: repeat(4, 1fr); max-width: none; }
}
.hero-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  text-align: center;
}
.hero-feature__val {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--orange);
}
.hero-feature__lbl { font-size: 0.65rem; color: var(--muted); margin-top: 0.2rem; }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.hero__note {
  font-size: 0.75rem;
  color: var(--muted-dim);
}

.hero-aside { display: flex; flex-direction: column; gap: 1.25rem; }
.jackpot {
  background: var(--bg-card);
  border: 1px solid rgba(255,87,34,0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 0 40px rgba(255,87,34,0.12);
  text-align: center;
}
.jackpot__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.jackpot__sum {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--orange);
}
.jackpot__sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }

.preview-cards {
  background: rgba(30,30,34,0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.preview-card {
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--border);
}
.preview-card__img-wrap { position: relative; aspect-ratio: 3/4; }
.preview-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #2a2a2e;
}
.preview-card__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.preview-card__badge--hot { background: var(--orange); color: #fff; }
.preview-card__badge--new { background: var(--green-dark); color: #fff; }
.preview-card__badge--top { background: #eab308; color: #1a1a1a; }
.preview-card__meta { padding: 0.45rem 0.5rem 0.55rem; }
.preview-card__title { font-size: 0.72rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.preview-card__rtp { font-size: 0.62rem; color: var(--muted-dim); }

.section { padding: 3rem 0; }
.section--alt { background: var(--bg-elevated); border-top: 1px solid var(--border); }
.section__head { margin-bottom: 1.5rem; }
.section__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section__sub { color: var(--muted); font-size: 0.95rem; max-width: 56ch; }
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}
.tabs label,
.tabs span.tab-active {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
}
.tabs span.tab-active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  cursor: default;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
}
.game-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.game-card__img-wrap { position: relative; aspect-ratio: 4/5; }
.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #2a2a2e;
}
.game-card__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
}
.game-card__badge--new { background: var(--green-dark); }
.game-card__body { padding: 0.55rem 0.65rem 0.65rem; }
.game-card__title { font-size: 0.78rem; font-weight: 700; line-height: 1.25; }
.game-card__prov { font-size: 0.65rem; color: var(--muted-dim); margin-top: 0.15rem; }

.cta-mid {
  text-align: center;
  padding: 2.5rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,87,34,0.12), transparent);
  border: 1px solid rgba(255,87,34,0.2);
  margin: 2rem 0;
}
.cta-mid p { color: var(--muted); max-width: 42ch; margin: 0 auto 1.25rem; font-size: 0.95rem; }

.providers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .providers { grid-template-columns: repeat(4, 1fr); }
}
.prov-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
}
.prov-card__logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.prov-card__name { font-size: 0.72rem; font-weight: 600; }
.prov-card__count { font-size: 0.65rem; color: var(--muted); margin-top: 0.2rem; }

.faq-section { padding: 3rem 0 4rem; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.65rem;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-weight: 800;
  color: var(--orange);
  font-size: 1.25rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__body {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.article {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border);
}
.article__inner { max-width: 720px; margin: 0 auto; }
.article h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.85rem;
  color: var(--orange);
}
.article h2:first-child { margin-top: 0; }
.article p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: justify;
}

.pay-bar {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  background: #0c0c0c;
}
.pay-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-dim);
  letter-spacing: 0.02em;
}

.footer {
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted-dim);
  border-top: 1px solid var(--border);
}
