:root {
  --bg: #0c0a16;
  --surface: #151126;
  --surface-2: #1e1837;
  --text: #f8f5ff;
  --muted: #bdb6cb;
  --gold: #f6c453;
  --gold-bright: #ffe09a;
  --purple: #9367e8;
  --purple-bright: #b898ff;
  --line: rgba(255, 255, 255, .11);
  --danger: #ff7777;
  --shadow: 0 20px 55px rgba(0, 0, 0, .34);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 1000;
  padding: 8px 13px;
  background: var(--gold);
  color: #1c132d;
  font-weight: 800;
  border-radius: 7px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.section-lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 10, 22, .94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), #b36bff);
  color: #211432;
  font-size: .9rem;
  box-shadow: 0 4px 14px rgba(246, 196, 83, .28);
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 9px 10px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, .07);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 41px;
  height: 41px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 21px;
  height: 21px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  padding: 12px 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #110d20;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  display: block;
  padding: 12px 8px;
  color: var(--muted);
  font-weight: 750;
  border-bottom: 1px solid var(--line);
}

.mobile-nav li:last-child a {
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #e9ae37);
  color: #211432;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(246, 196, 83, .24);
}

.button-secondary {
  border-color: rgba(246, 196, 83, .56);
  background: transparent;
  color: var(--gold-bright);
}

.button-secondary:hover {
  background: rgba(246, 196, 83, .12);
}

.button-dark {
  background: #2b2343;
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 60px;
  background: radial-gradient(circle at 83% 27%, rgba(134, 85, 225, .34), transparent 27%), radial-gradient(circle at 18% 80%, rgba(246, 196, 83, .13), transparent 25%), linear-gradient(135deg, #110d20 0%, #0c0a16 73%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -105px;
  top: 25px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(246, 196, 83, .19);
  border-radius: 50%;
  box-shadow: inset 0 0 85px rgba(147, 103, 232, .12);
}

.hero-copy {
  max-width: 730px;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.22rem, 7.3vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.052em;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d8d0e5;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.responsible-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 650px;
  margin: 25px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  font-size: .82rem;
}

.responsible-note strong {
  color: var(--gold-bright);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.hero-chip {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  font-size: .8rem;
  font-weight: 700;
}

.section {
  padding: 66px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(147, 103, 232, .08), rgba(147, 103, 232, .025));
  border-block: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.offers-grid {
  display: grid;
  gap: 15px;
}

.casino-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 21px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(38, 31, 66, .98), rgba(19, 15, 35, .98));
  box-shadow: 0 9px 25px rgba(0, 0, 0, .16);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.casino-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 196, 83, .55);
  box-shadow: var(--shadow);
}

.casino-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -75px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(147, 103, 232, .13);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.casino-logo {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #201a36;
}

.casino-card h3 {
  margin: 0;
  font-size: 1.17rem;
  line-height: 1.2;
}

.rating {
  margin-top: 4px;
  color: var(--gold);
  font-size: .88rem;
  letter-spacing: .06em;
}

.rating span {
  margin-left: 5px;
  color: var(--muted);
  letter-spacing: 0;
  font-size: .76rem;
  font-weight: 700;
}

.bonus {
  margin: 21px 0 10px;
  color: var(--gold-bright);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.casino-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.disclaimer {
  margin-top: 13px !important;
  color: #8e859e !important;
  font-size: .7rem !important;
  line-height: 1.45;
}

.card-action {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.content-grid {
  display: grid;
  gap: 20px;
}

.content-card {
  padding: 25px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.content-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.content-card p {
  margin: 15px 0 0;
  color: var(--muted);
}

.content-card p+p {
  margin-top: 13px;
}

.content-card--feature {
  background: linear-gradient(140deg, rgba(147, 103, 232, .18), rgba(246, 196, 83, .06));
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 19px 0 0;
  list-style: none;
}

.payment-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #ded6ec;
  background: rgba(12, 10, 22, .35);
  font-size: .82rem;
  font-weight: 750;
}

.page-hero {
  padding: 55px 0 45px;
  background: radial-gradient(circle at 80% 0%, rgba(147, 103, 232, .23), transparent 35%), #110d20;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: .84rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.page-hero p {
  max-width: 720px;
  margin: 15px 0 0;
  color: var(--muted);
}

.legal-layout {
  max-width: 850px;
  padding: 56px 0 70px;
}

.legal-layout h2 {
  margin: 37px 0 10px;
  color: var(--gold-bright);
  font-size: 1.36rem;
  line-height: 1.22;
}

.legal-layout h2:first-child {
  margin-top: 0;
}

.legal-layout p {
  margin: 0 0 14px;
  color: #d0c9dc;
}

.legal-layout ul {
  padding-left: 21px;
  color: #d0c9dc;
}

.legal-layout li+li {
  margin-top: 7px;
}

.legal-updated {
  color: var(--muted) !important;
  font-size: .87rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090710;
}

.footer-main {
  display: grid;
  gap: 30px;
  padding: 44px 0 30px;
}

.footer-intro p {
  max-width: 420px;
  color: var(--muted);
  font-size: .88rem;
}

.footer-contact {
  color: var(--gold-bright);
  font-weight: 800;
}

.footer-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: .91rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li+li {
  margin-top: 7px;
}

.footer-links a {
  color: var(--muted);
  font-size: .86rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  width: 100%;
  max-width: 520px;
  margin: 22px auto 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #ddd4ea;
  background: rgba(255, 255, 255, .04);
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.15;
}

.badge-age {
  border-color: rgba(246, 196, 83, .6);
  color: var(--gold);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: #887f95;
  font-size: .75rem;
}

.footer-bottom p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 14px;
  bottom: 14px;
  left: 14px;
  max-width: 550px;
  padding: 18px;
  border: 1px solid rgba(246, 196, 83, .36);
  border-radius: 15px;
  background: #1b1630;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.cookie-actions .button {
  min-height: 38px;
  padding: 8px 13px;
  font-size: .83rem;
}

.modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 3, 10, .82);
  backdrop-filter: blur(8px);
}

.modal[hidden] {
  display: none;
}

.modal-dialog {
  width: min(100%, 440px);
  padding: 29px 24px;
  border: 1px solid rgba(246, 196, 83, .48);
  border-radius: 20px;
  background: linear-gradient(150deg, #241a43, #120e22);
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
}

.modal-dialog h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.modal-dialog p {
  margin: 12px 0 0;
  color: var(--muted);
}

.modal-actions {
  display: grid;
  gap: 10px;
  margin-top: 23px;
}

.modal-actions .button {
  width: 100%;
}

.scroll-top {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid rgba(246, 196, 83, .5);
  border-radius: 50%;
  color: #1b112e;
  background: var(--gold);
  box-shadow: 0 7px 22px rgba(0, 0, 0, .28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s, transform .2s;
}

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

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.footer-badges a,
.footer-badges span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: max-content;
}

.footer-badges img {
  display: block;
  height: 40px !important;
  width: auto !important;
  object-fit: contain;
  max-width: none !important;
}

@media (min-width: 650px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .cookie-banner {
    left: auto;
  }
}

@media (min-width: 850px) {
  .site-nav {
    display: block;
  }
  
  .nav-toggle,
      .mobile-nav {
    display: none !important;
  }
  
  .hero {
    padding: 105px 0 93px;
  }
  
  .offers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .content-grid .content-card--feature {
    grid-column: span 2;
  }
  
  .content-card {
    padding: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
      *::before,
      *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 0 0 24px;
}

.footer-logos a,
.footer-logos span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-logos img {
    display: block;
    height: 40px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
}

.card-top {
  align-items: center;
  gap: 16px;
}

.casino-logo {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  padding: 12px;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(246, 196, 83, .28);
  background: radial-gradient(circle at 30% 20%, rgba(255, 224, 154, .18), rgba(32, 26, 54, .95));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .32),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.casino-card:hover .casino-logo {
  transform: scale(1.08) rotate(-2deg);
  border-color: rgba(246, 196, 83, .65);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, .42),
    0 0 24px rgba(246, 196, 83, .18);
}