:root {
  --bg: #0C0D13;
  --bg-2: #121016;
  --bg-3: #1a1520;
  --line: rgba(255, 255, 255, 0.08);
  --text: #e8edf5;
  --muted: #919799;
  --accent: #FF2885;
  --green: #FF2885;
  --gold: #ffc94b;
  --danger: #ff5c5c;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(255, 40, 133, 0.16), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(255, 90, 163, 0.08), transparent 50%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #ff5aa3;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 13, 19, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo img {
  width: auto;
  height: 36px;
  border-radius: 0;
  object-fit: contain;
}

.logo span {
  display: none;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5aa3, #FF2885, #c41d68);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  background: rgb(255 255 255 / 26%);
  color: #ffffff;
}

.btn-ghost:hover {
  color: #ffffff;
  background: rgb(255 255 255 / 34%);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 13, 19, 0.96) 0%, rgba(12, 13, 19, 0.78) 42%, rgba(12, 13, 19, 0.25) 100%),
    linear-gradient(0deg, rgba(12, 13, 19, 0.9), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 40, 133, 0.35);
  background: rgba(255, 40, 133, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__note {
  color: var(--muted);
  font-size: 0.88rem;
}

.features {
  padding: 56px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.jackpot {
  padding: 8px 0 56px;
}

.jackpot__panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  background: radial-gradient(circle at 20% 20%, rgba(240, 193, 75, 0.14), transparent 45%), var(--bg-3);
  border: 1px solid rgba(240, 193, 75, 0.25);
  border-radius: 24px;
  padding: 28px;
  overflow: hidden;
}

.jackpot__label {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.jackpot__value {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 12px;
}

.jackpot__panel p {
  margin: 0;
  color: var(--muted);
}

.jackpot__panel img {
  width: 100%;
  max-height: fit-content;
  height: auto;
  border-radius: 18px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.section {
  padding: 56px 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 24px;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.game-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 40, 133, 0.45);
  color: #fff;
}

.game-card img {
  width: 100%;
  height: 140px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.game-card__body {
  padding: 10px 12px 12px;
}

.game-card__body h3 {
  margin: 0 0 2px;
  font-size: 0.95rem;
}

.game-card__body span {
  color: var(--muted);
  font-size: 0.8rem;
}

.secure {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.secure--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.secure__copy {
  padding: 36px;
}

.secure__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.secure__copy p {
  color: var(--muted);
  margin: 0 0 18px;
}

.secure__list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.secure__list li {
  margin-bottom: 8px;
}

.secure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.content {
  padding: 40px 0 72px;
}

.article {
  background: rgba(16, 20, 28, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
}

.article h2 {
  margin: 2em 0 0.7em;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #fff;
}

.article h2:first-of-type {
  margin-top: 1.2em;
}

.article h3 {
  margin: 1.4em 0 0.55em;
  font-size: 1.12rem;
}

.article p,
.article li {
  color: #c8d0df;
}

.article .lead {
  font-size: 1.05rem;
  color: var(--text);
}

.toc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 20px 0 8px;
}

.toc ol {
  margin: 8px 0 0;
  padding-left: 20px;
}

.toc a {
  color: var(--accent);
}

.note {
  border-left: 3px solid var(--accent);
  background: rgba(255, 40, 133, 0.08);
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  margin: 18px 0;
}

.eeat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.eeat__card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.eeat__card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--green);
}

.eeat__card p {
  margin: 0;
  font-size: 0.94rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.92rem;
}

th,
td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.faq details {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0 0 10px;
  padding: 0 14px;
}

.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  color: #fff;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--accent);
}

.faq .faq-a {
  padding: 0 0 14px;
  color: #c8d0df;
}

.sources {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  background: #08090e;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.disclaimer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7f8aa0;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-card img {
    height: 120px;
  }
  .jackpot__panel img {
    max-height: fit-content;
  }
  .jackpot__panel,
  .secure,
  .secure.secure--reverse,
  .eeat,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 64px;
  }
  .logo span {
    font-size: 0.95rem;
  }
  .logo img {
    width: auto;
    height: 28px;
    border-radius: 0;
  }
  .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
  .game-card img {
    height: 100px;
  }
  .jackpot__panel img {
    max-height: fit-content;
  }
  .secure,
  .secure.secure--reverse {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero__content {
    padding: 48px 0 40px;
  }
  .section__head {
    flex-direction: column;
    align-items: start;
  }
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
  }
  td {
    border: none;
    border-bottom: 1px solid var(--line);
  }
  td:last-child {
    border-bottom: none;
  }
  td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }
}
