:root {
  --bg: #090d14;
  --bg-soft: #101827;
  --panel: #151f31;
  --panel-2: #1d2a3e;
  --text: #f7f1df;
  --muted: #b7c0cd;
  --gold: #f4c76b;
  --gold-dark: #b87a24;
  --green: #31d19b;
  --red: #df3150;
  --line: rgba(255, 255, 255, .13);
  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

p,
li {
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .65rem .9rem;
  background: var(--gold);
  color: #171006;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.section-pad {
  width: min(1140px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 88% 8%, rgba(244, 199, 107, .19), transparent 28rem),
    linear-gradient(145deg, #0a0f18 0%, #121d30 55%, #09100e 100%);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background-image:
    linear-gradient(135deg, transparent 24%, rgba(244, 199, 107, .08) 25%, transparent 26%),
    linear-gradient(45deg, transparent 24%, rgba(49, 209, 155, .07) 25%, transparent 26%);
  background-size: 34px 34px;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: .7rem max(16px, calc((100vw - 1140px) / 2));
  background: rgba(9, 13, 20, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 160px;
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.menu {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 66px;
  display: none;
  padding: .65rem;
  background: #101827;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu.is-open {
  display: grid;
  gap: .35rem;
}

.menu a {
  display: block;
  padding: .75rem .8rem;
  color: var(--text);
  border-radius: 6px;
  text-decoration: none;
}

.menu a:hover,
.menu a:focus {
  background: rgba(244, 199, 107, .12);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  padding-top: 1.9rem;
  padding-bottom: 2.2rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumbs li + li::before {
  content: "›";
  margin-right: .4rem;
  color: var(--gold);
}

.eyebrow {
  margin: 0 0 .45rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 .8rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-size: clamp(1.9rem, 9.5vw, 4.1rem);
}

h2 {
  font-size: clamp(1.65rem, 7vw, 2.55rem);
}

h3 {
  margin-top: 2rem;
  font-size: clamp(1.25rem, 5vw, 1.75rem);
}

h4 {
  margin-top: 1.45rem;
  color: var(--gold);
  font-size: 1.05rem;
}

.lead {
  color: #fff7df;
  font-size: 1rem;
}

.hero-content p {
  max-width: 70ch;
  margin-top: .65rem;
  margin-bottom: .65rem;
}

.meta-row {
  display: grid;
  gap: .45rem;
  max-width: 680px;
  margin: .9rem 0 0;
  padding: .68rem .78rem;
  color: var(--muted);
  background: rgba(16, 24, 39, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .9rem;
}

.meta-row span {
  display: grid;
  gap: .1rem;
  min-width: 0;
}

.meta-row strong {
  color: var(--gold);
  font-size: .78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.meta-row em {
  color: #dbe2ea;
  font-style: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .74rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  color: #1b1205;
  background: linear-gradient(180deg, var(--gold), #d99d38);
  box-shadow: 0 10px 26px rgba(244, 199, 107, .25);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(244, 199, 107, .45);
  background: rgba(244, 199, 107, .09);
}

.legal-note,
.toc-inner,
.contact,
.text-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 31, 49, .96), rgba(16, 24, 39, .96));
  box-shadow: var(--shadow);
}

.legal-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: .8rem;
  margin-top: 1rem;
  padding: 1rem;
}

.legal-note h3 {
  margin-top: 0;
  margin-bottom: .35rem;
  color: var(--gold);
  font-size: 1.05rem;
}

.legal-note p {
  margin: 0;
  font-size: .94rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: .75rem;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.offers-section {
  padding-top: 2.3rem;
  padding-bottom: 1.5rem;
}

.section-head {
  margin-bottom: 1.1rem;
}

.section-head p {
  max-width: 75ch;
  color: var(--muted);
}

.offers {
  display: grid;
  gap: .85rem;
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: .7rem;
  padding: .8rem;
  overflow: hidden;
  background: linear-gradient(135deg, #192538, #0f1724);
  border: 1px solid rgba(244, 199, 107, .22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #191006;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.top-badge {
  position: absolute;
  top: .65rem;
  right: .65rem;
  padding: .28rem .5rem;
  color: #170f05;
  background: var(--gold);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}

.offer-card img {
  grid-column: 2;
  width: min(150px, 100%);
  aspect-ratio: 2 / 1;
  object-fit: contain;
  padding: .35rem;
  background: #070b12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.casino-photo {
  margin: 1rem 0 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(244, 199, 107, .22);
  border-radius: var(--radius);
  background: #0b111c;
}

.casino-photo img {
  display: block;
  width: min(240px, 100%);
  aspect-ratio: 2 / 1;
  object-fit: contain;
  margin: 0 auto;
  padding: .6rem;
}

.offer-main {
  grid-column: 1 / -1;
}

.offer-main h3 {
  margin-top: 0;
}

.offer-main p {
  margin: 0 0 .55rem;
  color: var(--muted);
}

.offer-main .bonus {
  color: #fff5cf;
  font-weight: 800;
}

.offer-main .deposit {
  color: var(--muted);
  font-size: .92rem;
}

.offer-main .deposit strong {
  color: var(--green);
}

.offer-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
}

.rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 44px;
  color: var(--green);
  background: rgba(49, 209, 155, .11);
  border: 1px solid rgba(49, 209, 155, .35);
  border-radius: var(--radius);
  font-weight: 900;
}

.toc {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.toc-inner {
  padding: 1rem;
}

.toc ol {
  display: grid;
  gap: .55rem;
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.content {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.text-block {
  padding: 1.1rem;
}

.text-block p,
.text-block li,
.text-block td {
  color: #dbe2ea;
}

.text-block ul,
.text-block ol {
  padding-left: 1.2rem;
}

.text-block li + li {
  margin-top: .35rem;
}

.table-wrap {
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: rgba(0, 0, 0, .16);
  table-layout: fixed;
}

th,
td {
  padding: .8rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

th {
  color: #181008;
  background: var(--gold);
}

tr:last-child td {
  border-bottom: 0;
}

.faq details {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.contact {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.1rem;
}

address {
  display: grid;
  gap: .5rem;
  font-style: normal;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  background: #070a10;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--muted);
  font-size: .95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1rem;
}

.responsible {
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 12;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #160e04;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .brand img {
    width: 188px;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: 440px;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .meta-row {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: .9rem 1.4rem;
  }

  .offer-card {
    grid-template-columns: 54px 170px minmax(0, 1fr) 160px;
    align-items: center;
  }

  .offer-card img,
  .offer-main,
  .offer-cta {
    grid-column: auto;
  }

  .offer-cta {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .6fr);
    align-items: center;
  }

  .text-block,
  .toc-inner,
  .contact {
    padding: 1.35rem;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 62px;
  }

  .brand img {
    width: 138px;
  }

  .menu {
    top: 58px;
  }

  .offer-cta .btn {
    width: 100%;
  }

  .legal-note {
    padding: .85rem;
  }

  .chip {
    width: 36px;
    height: 36px;
    margin-bottom: .55rem;
    font-size: .86rem;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tr {
    padding: .7rem;
    border-bottom: 1px solid var(--line);
  }

  tr:last-child {
    border-bottom: 0;
  }

  td {
    padding: .28rem 0;
    border-bottom: 0;
  }

  td:first-child {
    color: var(--gold);
    font-weight: 900;
  }
}

@media (min-width: 1040px) {
  .content {
    grid-template-columns: minmax(0, 1fr);
  }

  .text-block,
  .toc-inner,
  .contact {
    padding: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
