:root {
  --ink: #07111f;
  --ink-deep: #040a13;
  --ink-soft: #122237;
  --panel: rgba(13, 29, 49, 0.72);
  --panel-strong: #10243d;
  --paper: #f3f1ec;
  --paper-deep: #e6e8e7;
  --text: #f7f4ec;
  --muted: #9ca8b5;
  --muted-dark: #66727b;
  --gold: #d9b56f;
  --gold-bright: #f0d49a;
  --gold-dark: #a07b3b;
  --teal: #58d4ca;
  --coral: #f08b76;
  --lilac: #a99fe6;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(7, 17, 31, 0.13);
  --shadow: 0 28px 80px rgba(5, 11, 19, 0.2);
  --radius: 8px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.page-orbit {
  position: fixed;
  z-index: -1;
  width: 32vw;
  height: 32vw;
  border: 1px solid rgba(88, 212, 202, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.page-orbit-one {
  top: 19%;
  left: -24vw;
  box-shadow: 0 0 100px rgba(88, 212, 202, 0.12);
}

.page-orbit-two {
  top: 63%;
  right: -22vw;
  border-color: rgba(217, 181, 111, 0.08);
  box-shadow: 0 0 100px rgba(217, 181, 111, 0.09);
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 12, 22, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  width: 30px;
  height: 31px;
  transform: skew(-14deg);
}

.brand-mark span {
  display: block;
  width: 7px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 13px rgba(240, 212, 154, 0.24);
}

.brand-mark span:nth-child(1) {
  height: 17px;
}

.brand-mark span:nth-child(2) {
  height: 28px;
}

.brand-mark span:nth-child(3) {
  height: 21px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: 0.16em;
}

.brand-copy strong span {
  color: var(--gold);
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(247, 244, 236, 0.55);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a,
.language-button,
.icon-text-button {
  color: rgba(247, 244, 236, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.language-button:hover,
.icon-text-button:hover {
  color: var(--gold-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-text-button,
.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: rgba(247, 244, 236, 0.72);
  background: transparent;
}

.icon-text-button svg,
.language-button svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.language-picker {
  position: relative;
}

.language-button .chevron {
  width: 12px;
  height: 12px;
  color: currentColor;
  transition: transform 0.2s ease;
}

.language-picker.open .chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  width: 180px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 17, 29, 0.95);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-picker.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  display: flex;
  justify-content: space-between;
  padding: 10px 11px;
  border-radius: 5px;
  color: rgba(247, 244, 236, 0.74);
  text-align: left;
  background: transparent;
  font-size: 12px;
}

.language-menu button span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.language-menu button:hover,
.language-menu button.active {
  color: var(--text);
  background: rgba(217, 181, 111, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: #101621;
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(217, 181, 111, 0.18);
}

.button-gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 15px 36px rgba(217, 181, 111, 0.28);
}

.button-outline {
  color: var(--gold-bright);
  border: 1px solid rgba(217, 181, 111, 0.55);
  background: transparent;
}

.button-outline:hover {
  background: rgba(217, 181, 111, 0.1);
}

.button-large {
  min-height: 54px;
  padding: 0 24px;
}

.button-xl {
  min-height: 62px;
  padding: 0 29px;
  font-size: 13px;
}

.nav-join {
  min-height: 39px;
  padding: 0 15px;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--ink-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/hero-casino.jpg");
  background-position: center right;
  background-size: cover;
  opacity: 0.93;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 19, 0.99) 0%, rgba(4, 10, 19, 0.86) 28%, rgba(4, 10, 19, 0.32) 61%, rgba(4, 10, 19, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 10, 19, 0.92) 0%, transparent 34%, rgba(4, 10, 19, 0.35) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
  align-items: center;
  gap: 80px;
  min-height: 780px;
  padding-top: 85px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 244, 236, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.dark-eyebrow {
  color: var(--muted-dark);
}

.gold-eyebrow {
  color: var(--gold-bright);
}

.eyebrow-line {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(88, 212, 202, 0.11), 0 0 20px rgba(88, 212, 202, 0.5);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 22px 0 21px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 6.2vw, 88px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.99;
}

.hero-copy > p {
  max-width: 520px;
  margin: 0;
  color: rgba(247, 244, 236, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.text-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.text-button:hover svg {
  transform: translateY(3px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 45px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 244, 236, 0.52);
  font-size: 11px;
}

.hero-meta strong {
  color: rgba(247, 244, 236, 0.86);
  font-size: 12px;
}

.hero-meta em {
  font-style: normal;
}

.status-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-green {
  background: var(--teal);
}

.status-gold {
  background: var(--gold);
}

.hero-panel {
  align-self: end;
  margin-bottom: 72px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(20, 48, 74, 0.78), rgba(8, 18, 31, 0.72));
  box-shadow: 0 28px 80px rgba(3, 7, 13, 0.4);
  backdrop-filter: blur(14px);
}

.panel-topline,
.panel-footer,
.activity-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(247, 244, 236, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.panel-clock {
  color: rgba(247, 244, 236, 0.44);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.activity-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 25px;
}

.activity-total strong {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  letter-spacing: -0.06em;
}

.activity-total span {
  color: rgba(247, 244, 236, 0.5);
  font-size: 11px;
}

.activity-chart {
  display: flex;
  align-items: flex-end;
  height: 86px;
  gap: 6px;
  margin: 23px 0 24px;
  padding: 0 4px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.activity-chart span {
  flex: 1;
  height: var(--h);
  min-width: 4px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(88, 212, 202, 0.12));
  opacity: 0.75;
}

.activity-list {
  display: grid;
  gap: 16px;
}

.activity-list > div {
  justify-content: flex-start;
  gap: 10px;
}

.activity-list > div > span:nth-child(2) {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.activity-list strong,
.activity-list small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-list strong {
  color: rgba(247, 244, 236, 0.86);
  font-size: 11px;
}

.activity-list small {
  color: rgba(247, 244, 236, 0.43);
  font-size: 10px;
}

.activity-list time {
  color: rgba(247, 244, 236, 0.38);
  font-size: 10px;
}

.activity-avatar {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.avatar-teal {
  background: var(--teal);
}

.avatar-coral {
  background: var(--coral);
}

.avatar-lilac {
  background: var(--lilac);
}

.panel-footer {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 244, 236, 0.5);
  font-size: 10px;
}

.secure-badge svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.tiny-stars {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(247, 244, 236, 0.46);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(247, 244, 236, 0.5);
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(217, 181, 111, 0.18);
  border-bottom: 1px solid rgba(217, 181, 111, 0.18);
  background: #0b1726;
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: max-content;
  gap: 32px;
  padding: 17px 0;
  color: rgba(247, 244, 236, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.21em;
}

.marquee-track i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  position: relative;
  padding: 124px 0;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2,
.offer-copy h2,
.cta-shell h2 {
  margin: 15px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(37px, 4.3vw, 60px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-heading h2 em {
  color: var(--gold-dark);
  font-style: normal;
}

.section-heading > p {
  max-width: 395px;
  margin: 0 0 3px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.75;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  min-height: 483px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--ink-soft);
  box-shadow: 0 16px 30px rgba(7, 17, 31, 0.11);
}

.game-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 10, 19, 0.97) 0%, rgba(4, 10, 19, 0.08) 70%);
}

.game-art {
  position: absolute;
  inset: 0 0 auto;
  height: 300px;
  overflow: hidden;
}

.game-card-content {
  position: absolute;
  z-index: 2;
  right: 21px;
  bottom: 23px;
  left: 21px;
}

.game-index {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.game-card h3 {
  margin: 9px 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.game-card p {
  min-height: 48px;
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.small-arrow-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  color: var(--text);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.small-arrow-button svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.small-arrow-button:hover svg {
  transform: translateX(4px);
}

.game-card-roulette {
  background: linear-gradient(145deg, #0d5a60, #071c2c 73%);
}

.game-card-slots {
  background: linear-gradient(145deg, #9d6947, #25182b 73%);
}

.game-card-sports {
  background: linear-gradient(145deg, #38449a, #121a35 73%);
}

.game-card-poker {
  background: linear-gradient(145deg, #68426b, #1b1b38 73%);
}

.art-orbit {
  position: absolute;
  top: 27px;
  right: -9px;
  width: 245px;
  height: 245px;
  border: 1px solid rgba(240, 212, 154, 0.65);
  border-radius: 50%;
  transform: rotate(-21deg);
  box-shadow: inset 0 0 0 18px rgba(240, 212, 154, 0.06), 0 0 45px rgba(240, 212, 154, 0.15);
}

.art-orbit::after {
  position: absolute;
  inset: 17px;
  border: 1px dashed rgba(88, 212, 202, 0.65);
  border-radius: 50%;
  content: "";
}

.art-wheel {
  position: absolute;
  top: 105px;
  right: 80px;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: rgba(247, 244, 236, 0.92);
  background: #071c2c;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  transform: rotate(-20deg);
}

.art-wheel::before,
.art-wheel::after {
  position: absolute;
  width: 13px;
  height: 40px;
  border: 1px solid rgba(247, 244, 236, 0.3);
  content: "";
}

.art-wheel::before {
  transform: rotate(45deg);
}

.art-wheel::after {
  transform: rotate(-45deg);
}

.art-chip {
  position: absolute;
  z-index: 2;
  width: 39px;
  height: 39px;
  border: 5px dashed rgba(7, 17, 31, 0.45);
  border-radius: 50%;
  box-shadow: 0 9px 12px rgba(0, 0, 0, 0.28);
}

.chip-a {
  right: 34px;
  bottom: 15px;
  background: var(--coral);
  transform: rotate(18deg);
}

.chip-b {
  right: 73px;
  bottom: 30px;
  background: var(--gold);
  transform: rotate(-15deg);
}

.chip-c {
  right: 48px;
  bottom: 59px;
  background: var(--teal);
  transform: rotate(30deg);
}

.slot-window {
  position: absolute;
  top: 68px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 98px;
  border: 7px solid rgba(240, 212, 154, 0.8);
  background: rgba(9, 22, 39, 0.78);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
  transform: rotate(-9deg);
}

.slot-window b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 70px;
  color: var(--gold-bright);
  border-right: 1px solid rgba(240, 212, 154, 0.27);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
}

.slot-window b:last-child {
  border: 0;
}

.slot-star {
  position: absolute;
  color: var(--gold-bright);
  font-size: 29px;
  text-shadow: 0 0 24px rgba(240, 212, 154, 0.9);
}

.star-a {
  top: 37px;
  right: 30px;
}

.star-b {
  top: 177px;
  right: 72px;
  color: var(--coral);
}

.star-c {
  bottom: 15px;
  left: 44px;
  color: var(--teal);
}

.sports-ball {
  position: absolute;
  top: 66px;
  right: 39px;
  width: 134px;
  height: 134px;
  border: 1px solid rgba(247, 244, 236, 0.63);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #f3b3a5 0 6%, transparent 7%), radial-gradient(circle at 64% 68%, #f3b3a5 0 8%, transparent 9%), linear-gradient(135deg, var(--coral), #9b385c);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.sports-ball::before,
.sports-ball::after {
  position: absolute;
  inset: 25px 8px;
  border: 1px solid rgba(247, 244, 236, 0.58);
  border-radius: 50%;
  content: "";
}

.sports-ball::before {
  transform: rotate(57deg);
}

.sports-ball::after {
  transform: rotate(-57deg);
}

.sports-ring {
  position: absolute;
  border: 1px solid rgba(88, 212, 202, 0.75);
  border-radius: 50%;
}

.ring-a {
  top: 31px;
  left: 30px;
  width: 90px;
  height: 90px;
}

.ring-b {
  top: 76px;
  left: 80px;
  width: 180px;
  height: 180px;
  border-color: rgba(240, 212, 154, 0.45);
}

.sports-score {
  position: absolute;
  bottom: 42px;
  left: 31px;
  color: var(--teal);
  font-family: "Manrope", sans-serif;
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.poker-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 102px;
  height: 147px;
  border-radius: 7px;
  color: var(--ink);
  background: #f5f1e9;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.24);
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.poker-card span {
  position: absolute;
  bottom: 17px;
  font-size: 29px;
}

.poker-card-one {
  top: 68px;
  left: 53px;
  transform: rotate(-19deg);
}

.poker-card-one span {
  color: #1a6072;
}

.poker-card-two {
  top: 56px;
  right: 52px;
  transform: rotate(13deg);
}

.poker-card-two span {
  color: #a94749;
}

.poker-chip {
  position: absolute;
  right: 56px;
  bottom: 33px;
  display: grid;
  place-items: center;
  width: 77px;
  height: 77px;
  border: 7px dashed rgba(7, 17, 31, 0.43);
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 9px;
  font-weight: 900;
  transform: rotate(-13deg);
}

.live-section {
  overflow: hidden;
  background: #0a1727;
}

.live-section::before {
  position: absolute;
  right: -16%;
  bottom: -46%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(88, 212, 202, 0.08);
  border-radius: 50%;
  content: "";
}

.live-heading {
  align-items: center;
}

.live-heading h2 {
  color: var(--text);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.round-control {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 244, 236, 0.2);
  border-radius: 50%;
  color: rgba(247, 244, 236, 0.75);
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.round-control:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.round-control svg {
  width: 16px;
  height: 16px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  margin: 0 4px;
}

.carousel-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border-radius: 50%;
  background: rgba(247, 244, 236, 0.28);
}

.carousel-dots button.active {
  width: 18px;
  border-radius: 5px;
  background: var(--gold);
}

.live-carousel {
  overflow: hidden;
}

.live-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.host-card {
  flex: 0 0 calc((100% - 42px) / 4);
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: var(--radius);
  background: #10243b;
}

.host-art {
  position: relative;
  height: 265px;
  overflow: hidden;
}

.host-art::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 35%);
  content: "";
}

.host-card-one .host-art {
  background: linear-gradient(145deg, #167d77, #132e44);
}

.host-card-two .host-art {
  background: linear-gradient(145deg, #855437, #272647);
}

.host-card-three .host-art {
  background: linear-gradient(145deg, #62568d, #1e2a4a);
}

.host-card-four .host-art {
  background: linear-gradient(145deg, #236a87, #142838);
}

.host-orbit {
  position: absolute;
  top: 33px;
  right: -35px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(240, 212, 154, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(240, 212, 154, 0.04);
  transform: rotate(26deg);
}

.host-orbit::after {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 196px;
  height: 196px;
  border: 1px dashed rgba(247, 244, 236, 0.4);
  border-radius: 50%;
  content: "";
}

.host-initial {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(247, 244, 236, 0.42);
  border-radius: 50%;
  color: var(--text);
  background: rgba(7, 17, 31, 0.4);
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  transform: translate(-50%, -50%);
}

.host-card-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 17px;
}

.host-card-footer > div {
  display: grid;
  gap: 4px;
}

.host-card-footer strong {
  color: var(--text);
  font-size: 14px;
}

.host-card-footer small {
  color: rgba(247, 244, 236, 0.48);
  font-size: 11px;
}

.viewer-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 10px;
}

.viewer-count .pulse-dot {
  width: 5px;
  height: 5px;
}

.offer-section {
  overflow: hidden;
  background: #112339;
}

.offer-section::before,
.offer-section::after {
  position: absolute;
  border: 1px solid rgba(217, 181, 111, 0.15);
  border-radius: 50%;
  content: "";
}

.offer-section::before {
  top: -260px;
  left: -180px;
  width: 600px;
  height: 600px;
}

.offer-section::after {
  right: -300px;
  bottom: -280px;
  width: 700px;
  height: 700px;
}

.offer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.65fr;
  align-items: center;
  gap: 60px;
}

.offer-copy {
  max-width: 480px;
}

.offer-copy h2 {
  color: var(--text);
}

.offer-copy p {
  max-width: 420px;
  margin: 21px 0 28px;
  color: rgba(247, 244, 236, 0.61);
  font-size: 15px;
  line-height: 1.75;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.offer-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 244, 236, 0.76);
  font-size: 11px;
}

.offer-points i {
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.offer-dial {
  position: relative;
  display: grid;
  width: min(100%, 315px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
}

.dial-glow {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: rgba(217, 181, 111, 0.16);
  filter: blur(30px);
}

.dial-ring {
  position: absolute;
  border: 1px solid rgba(217, 181, 111, 0.38);
  border-radius: 50%;
}

.dial-ring-outer {
  inset: 5%;
  border-style: dashed;
  transform: rotate(17deg);
}

.dial-ring-inner {
  inset: 17%;
  border-color: rgba(88, 212, 202, 0.42);
  box-shadow: inset 0 0 0 18px rgba(88, 212, 202, 0.04);
}

.dial-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 244, 236, 0.22);
  border-radius: 50%;
  background: #1a3047;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
}

.dial-core span,
.dial-core small {
  color: rgba(247, 244, 236, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.dial-core strong {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.dial-core strong span {
  color: var(--gold-bright);
  font-size: 20px;
  letter-spacing: 0;
}

.dial-tick {
  position: absolute;
  width: 3px;
  height: 14px;
  border-radius: 3px;
  background: var(--gold);
}

.tick-one {
  top: 4%;
  left: 50%;
}

.tick-two {
  top: 50%;
  right: 3%;
  transform: rotate(90deg);
}

.tick-three {
  bottom: 4%;
  left: 50%;
}

.tick-four {
  top: 50%;
  left: 3%;
  transform: rotate(90deg);
}

.offer-timer {
  align-self: end;
  padding-bottom: 23px;
}

.offer-timer > span {
  color: rgba(247, 244, 236, 0.48);
  font-size: 11px;
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
}

.timer-boxes > b {
  color: rgba(247, 244, 236, 0.37);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.timer-boxes span {
  display: grid;
  gap: 2px;
  min-width: 53px;
}

.timer-boxes strong {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.timer-boxes small {
  color: rgba(247, 244, 236, 0.43);
  font-size: 9px;
  text-transform: uppercase;
}

.trust-section {
  padding-bottom: 105px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 70px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trust-number {
  display: grid;
  gap: 9px;
  padding: 28px 18px 29px 0;
  border-right: 1px solid var(--line-dark);
}

.trust-number + .trust-number {
  padding-left: 25px;
}

.trust-number:last-child {
  border-right: 0;
}

.trust-number strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 37px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.trust-number span {
  color: var(--muted-dark);
  font-size: 11px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 65px;
}

.quote-card {
  position: relative;
  display: flex;
  min-height: 232px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.23);
}

.quote-card-featured {
  color: var(--text);
  border-color: #28415d;
  background: #10243b;
}

.quote-mark {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 0.6;
}

.quote-card p {
  max-width: 270px;
  margin: 4px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.quote-card:not(.quote-card-featured) p {
  color: var(--ink-soft);
}

.quote-card-featured p {
  color: var(--text);
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-avatar {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.quote-card footer span:last-child {
  display: grid;
  gap: 1px;
}

.quote-card footer strong {
  font-size: 11px;
}

.quote-card footer small {
  color: var(--muted-dark);
  font-size: 10px;
}

.quote-card-featured footer small {
  color: rgba(247, 244, 236, 0.48);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  display: grid;
  flex: 0 0 39px;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(160, 123, 59, 0.35);
  border-radius: 50%;
  color: var(--gold-dark);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-item > span:last-child {
  display: grid;
  gap: 5px;
}

.feature-item strong {
  font-size: 12px;
}

.feature-item small {
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.55;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0 137px;
  background: #0c1b2d;
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  border: 1px solid rgba(88, 212, 202, 0.1);
  border-radius: 50%;
  content: "";
}

.cta-section::before {
  top: -310px;
  left: -100px;
  width: 650px;
  height: 650px;
}

.cta-section::after {
  right: -250px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  border-color: rgba(217, 181, 111, 0.12);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(88, 212, 202, 0.08);
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.cta-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cta-shell h2 {
  color: var(--text);
}

.cta-shell p {
  margin: 19px 0 30px;
  color: rgba(247, 244, 236, 0.58);
  font-size: 15px;
}

.cta-badges {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  color: rgba(247, 244, 236, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-badges i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.site-footer {
  background: #06101d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 70px;
  padding: 66px 0 56px;
}

.footer-brand p {
  max-width: 230px;
  margin: 23px 0 0;
  color: rgba(247, 244, 236, 0.42);
  font-size: 12px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong,
.footer-download strong {
  color: rgba(247, 244, 236, 0.77);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-download p {
  color: rgba(247, 244, 236, 0.4);
  font-size: 11px;
  transition: color 0.2s ease;
}

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

.footer-download p {
  max-width: 180px;
  margin: 13px 0 16px;
  line-height: 1.6;
}

.footer-download .button {
  min-height: 39px;
  padding: 0 14px;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 244, 236, 0.31);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 8, 15, 0.76);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(10px);
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: min(100%, 480px);
  padding: 38px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal-backdrop.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--muted-dark);
  background: transparent;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ink);
  background: rgba(7, 17, 31, 0.06);
}

.modal-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 23px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
}

.modal-icon svg {
  width: 20px;
  height: 20px;
}

.modal-card h2 {
  max-width: 330px;
  margin: 14px 0 11px;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.modal-card > p {
  margin: 0 0 24px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.6;
}

.download-options {
  display: grid;
  gap: 9px;
}

.download-option {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.37);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.download-option:hover {
  border-color: rgba(160, 123, 59, 0.55);
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(3px);
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.download-option > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.download-option strong {
  font-size: 12px;
}

.download-option small {
  color: var(--muted-dark);
  font-size: 10px;
}

.download-option svg {
  width: 17px;
  height: 17px;
  color: var(--gold-dark);
}

.modal-note {
  display: block;
  margin-top: 22px;
  color: var(--muted-dark);
  font-size: 10px;
}

.exit-modal {
  overflow: hidden;
}

.exit-orbit {
  position: absolute;
  top: -62px;
  right: -46px;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  border: 1px solid rgba(160, 123, 59, 0.33);
  border-radius: 50%;
}

.exit-orbit::after {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(88, 212, 202, 0.42);
  border-radius: 50%;
  content: "";
}

.exit-orbit span {
  color: var(--gold-dark);
  font-size: 27px;
}

.exit-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.exit-list > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-dark);
  font-size: 12px;
}

.exit-list i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.exit-timer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: 10px;
}

.exit-timer strong {
  color: var(--gold-dark);
  font-family: "Manrope", sans-serif;
}

.toast {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 17px;
  border: 1px solid rgba(88, 212, 202, 0.35);
  border-radius: 5px;
  color: var(--text);
  background: rgba(8, 22, 36, 0.95);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.loading-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--text);
  background: rgba(4, 10, 19, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.loading-overlay.show {
  opacity: 1;
  visibility: visible;
}

.loader-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(217, 181, 111, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loading-overlay p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.loading-overlay span {
  color: rgba(247, 244, 236, 0.48);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay,
.reveal-delay-one {
  transition-delay: 0.12s;
}

.reveal-delay-two {
  transition-delay: 0.2s;
}

.reveal-delay-three {
  transition-delay: 0.28s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 16px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-shell {
    gap: 20px;
  }

  .hero-layout {
    gap: 45px;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-card {
    min-height: 440px;
  }

  .host-card {
    flex-basis: calc((100% - 28px) / 3);
  }

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

  .offer-timer {
    grid-column: 1 / -1;
    padding: 0;
  }

  .footer-main {
    gap: 35px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 34px, 680px);
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
    gap: 4px;
    width: 37px;
    height: 37px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid rgba(247, 244, 236, 0.18);
    border-radius: 4px;
    background: transparent;
  }

  .mobile-menu-button span {
    display: block;
    height: 1px;
    background: var(--gold);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-button.open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu {
    display: grid;
    gap: 4px;
    max-height: 0;
    padding: 0 17px;
    overflow: hidden;
    background: rgba(5, 12, 22, 0.95);
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .mobile-menu.open {
    max-height: 320px;
    padding: 10px 17px 17px;
  }

  .mobile-menu a,
  .mobile-menu button {
    padding: 11px 0;
    color: rgba(247, 244, 236, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    background: transparent;
    font-size: 13px;
  }

  .mobile-menu button {
    color: var(--gold-bright);
    border: 0;
    font-weight: 800;
  }

  .mobile-menu-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-tools > button {
    padding: 7px 0;
    border: 0;
  }

  .mobile-language-links {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mobile-language-links button {
    min-width: 28px;
    padding: 6px 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 3px;
    color: rgba(247, 244, 236, 0.57);
    font-size: 9px;
    font-weight: 800;
  }

  .mobile-language-links button.active {
    color: var(--ink);
    background: var(--gold);
  }

  .hero-section,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 170px;
    padding-bottom: 115px;
  }

  .hero-image {
    background-position: 65% center;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(4, 10, 19, 0.63) 0%, rgba(4, 10, 19, 0.78) 36%, rgba(4, 10, 19, 0.97) 82%),
      linear-gradient(90deg, rgba(4, 10, 19, 0.42), transparent);
  }

  .hero-copy h1 {
    font-size: clamp(47px, 10vw, 75px);
  }

  .hero-panel {
    width: min(100%, 470px);
    margin: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 37px;
  }

  .section-heading > p {
    max-width: 530px;
  }

  .host-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .offer-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .offer-timer {
    grid-column: auto;
  }

  .offer-dial {
    width: min(100%, 280px);
    justify-self: start;
  }

  .trust-grid,
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-number:nth-child(2) {
    border-right: 0;
  }

  .trust-number:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .trust-number:nth-child(3) {
    padding-left: 0;
  }

  .trust-number:nth-child(4) {
    padding-left: 25px;
    border-right: 0;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    min-height: 205px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-download {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 420px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 6px;
  }

  .hero-layout {
    padding-top: 132px;
    padding-bottom: 87px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(43px, 13vw, 61px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-top: 28px;
  }

  .hero-meta {
    gap: 12px;
    margin-top: 33px;
  }

  .hero-meta span {
    font-size: 10px;
  }

  .hero-panel {
    padding: 17px;
  }

  .activity-total strong {
    font-size: 29px;
  }

  .marquee-track {
    gap: 22px;
    padding: 14px 0;
    font-size: 9px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .offer-copy h2,
  .cta-shell h2 {
    font-size: 40px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 414px;
  }

  .game-art {
    height: 255px;
  }

  .section-heading {
    gap: 16px;
  }

  .live-heading {
    align-items: flex-start;
  }

  .carousel-controls {
    align-self: flex-end;
  }

  .host-card {
    flex-basis: 100%;
  }

  .host-art {
    height: 235px;
  }

  .offer-points {
    display: grid;
  }

  .offer-dial {
    width: min(100%, 250px);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-number {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .trust-number strong {
    font-size: 29px;
  }

  .trust-number span {
    font-size: 10px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-section {
    padding: 90px 0 100px;
  }

  .cta-shell p {
    font-size: 14px;
  }

  .cta-badges {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 9px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 52px 0 45px;
  }

  .footer-download {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .modal-card {
    padding: 30px 22px;
  }

  .modal-card h2 {
    font-size: 30px;
  }
}

/* Original-aligned page rhythm with the Aurora visual system. */
.hero-section {
  min-height: 0;
}

.hero-vignette {
  background:
    linear-gradient(180deg, rgba(4, 10, 19, 0.5) 0%, rgba(4, 10, 19, 0.62) 40%, rgba(4, 10, 19, 0.98) 100%),
    linear-gradient(90deg, rgba(4, 10, 19, 0.72), rgba(4, 10, 19, 0.22) 55%, rgba(4, 10, 19, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 0;
  padding: 151px 0 72px;
  text-align: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 21px auto 19px;
  font-size: clamp(43px, 6vw, 78px);
  line-height: 1.04;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
}

.hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(100%, 640px);
  margin-top: 44px;
}

.hero-stats > i {
  width: 1px;
  height: 40px;
  background: rgba(217, 181, 111, 0.28);
}

.hero-stat {
  display: grid;
  gap: 4px;
  min-width: 130px;
}

.hero-stat strong {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.hero-stat span {
  color: rgba(247, 244, 236, 0.58);
  font-size: 11px;
}

.hero-reward-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 34px;
  padding: 13px 20px 13px 15px;
  border: 1px solid rgba(217, 181, 111, 0.36);
  border-radius: 5px;
  background: rgba(8, 21, 35, 0.56);
  box-shadow: 0 15px 30px rgba(3, 7, 13, 0.18);
  backdrop-filter: blur(10px);
}

.hero-reward-icon {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 15px;
}

.hero-reward-text {
  color: rgba(247, 244, 236, 0.76);
  font-size: 12px;
  text-align: left;
}

.hero-reward-text strong {
  color: var(--gold-bright);
}

.hero-reward-btn {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 3px;
  color: var(--ink);
  background: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.hero-live-casino {
  width: min(100%, 930px);
  margin-top: 43px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(8, 19, 32, 0.58);
  box-shadow: 0 25px 65px rgba(3, 7, 13, 0.3);
  backdrop-filter: blur(13px);
}

.hero-live-casino .carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.live-badge,
.online-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 244, 236, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.online-count {
  color: rgba(247, 244, 236, 0.48);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.online-count strong {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
}

.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(88, 212, 202, 0.12);
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.carousel-slide {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-live-casino .host-card {
  position: relative;
  min-height: 166px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: #10243b;
}

.hero-live-casino .host-art {
  position: relative;
  height: 166px;
  overflow: hidden;
}

.host-card-one .host-art,
.host-card-ten .host-art {
  background: linear-gradient(145deg, #167d77, #132e44);
}

.host-card-two .host-art,
.host-card-six .host-art {
  background: linear-gradient(145deg, #855437, #272647);
}

.host-card-three .host-art,
.host-card-seven .host-art {
  background: linear-gradient(145deg, #62568d, #1e2a4a);
}

.host-card-four .host-art,
.host-card-eight .host-art {
  background: linear-gradient(145deg, #236a87, #142838);
}

.host-card-five .host-art,
.host-card-nine .host-art {
  background: linear-gradient(145deg, #8b5a61, #222642);
}

.host-card-eleven .host-art {
  background: linear-gradient(145deg, #4b7777, #13283c);
}

.host-card-twelve .host-art {
  background: linear-gradient(145deg, #795c3b, #1d263e);
}

.hero-live-casino .host-orbit {
  position: absolute;
  top: 17px;
  right: -33px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(240, 212, 154, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(240, 212, 154, 0.04);
  transform: rotate(26deg);
}

.hero-live-casino .host-orbit::after {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 142px;
  height: 142px;
  border: 1px dashed rgba(247, 244, 236, 0.4);
  border-radius: 50%;
  content: "";
}

.hero-live-casino .host-initial {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 73px;
  height: 73px;
  border: 1px solid rgba(247, 244, 236, 0.42);
  border-radius: 50%;
  color: var(--text);
  background: rgba(7, 17, 31, 0.4);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  transform: translate(-50%, -50%);
}

.hero-live-casino .host-overlay {
  position: absolute;
  right: 11px;
  bottom: 10px;
  left: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(4, 10, 19, 0.72);
  backdrop-filter: blur(8px);
}

.hero-live-casino .host-overlay strong {
  overflow: hidden;
  color: var(--text);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-live-casino .host-overlay span {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 10px;
}

.hero-live-casino .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.hero-live-casino .carousel-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border-radius: 50%;
  background: rgba(247, 244, 236, 0.28);
}

.hero-live-casino .carousel-dots button.active {
  width: 20px;
  border-radius: 5px;
  background: var(--gold);
}

.games-section {
  padding-top: 116px;
  padding-bottom: 116px;
}

.section-heading.centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  text-align: center;
}

.section-heading.centered h2 {
  margin-top: 14px;
}

.section-heading.centered p {
  max-width: 570px;
  margin-top: 14px;
}

.game-card {
  min-height: 465px;
}

.game-card-overlay {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 3;
}

.game-tag {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(240, 212, 154, 0.42);
  border-radius: 3px;
  color: var(--gold-bright);
  background: rgba(4, 10, 19, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.game-tag-live {
  color: var(--teal);
  border-color: rgba(88, 212, 202, 0.42);
}

.game-tag-new {
  color: var(--coral);
  border-color: rgba(240, 139, 118, 0.45);
}

.bonus-section {
  overflow: hidden;
  background: #0c1b2d;
}

.bonus-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 425px;
  overflow: hidden;
  border: 1px solid rgba(217, 181, 111, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 55, 78, 0.92), rgba(10, 25, 43, 0.96));
  box-shadow: var(--shadow);
}

.bonus-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(217, 181, 111, 0.1), transparent 56%);
  content: "";
}

.bonus-content {
  position: relative;
  z-index: 1;
  padding: 45px 0 45px 53px;
}

.bonus-badge {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(217, 181, 111, 0.4);
  border-radius: 3px;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.bonus-content h2 {
  margin: 18px 0 12px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 4.4vw, 57px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.bonus-content > p {
  max-width: 470px;
  margin: 0;
  color: rgba(247, 244, 236, 0.63);
  font-size: 14px;
  line-height: 1.7;
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 19px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.countdown-timer > span {
  color: rgba(247, 244, 236, 0.48);
  font-size: 10px;
  white-space: nowrap;
}

.countdown-display {
  display: flex;
  align-items: center;
  gap: 7px;
}

.countdown-display > b {
  color: rgba(247, 244, 236, 0.38);
  font-size: 18px;
  font-weight: 500;
}

.countdown-item {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 32px;
}

.countdown-item strong {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.countdown-item small {
  color: rgba(247, 244, 236, 0.4);
  font-size: 8px;
  text-transform: uppercase;
}

.bonus-features {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 24px 0 27px;
}

.bonus-features > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 244, 236, 0.72);
  font-size: 11px;
}

.bonus-features i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--teal);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.bonus-art {
  position: relative;
  width: min(100%, 350px);
  aspect-ratio: 1;
  justify-self: center;
}

.trust-section {
  padding-top: 111px;
}

.trust-header {
  margin-bottom: 47px;
}

.trust-header h2 {
  margin: 13px 0 11px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4.4vw, 57px);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.trust-header p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.trust-stars {
  color: var(--gold-dark);
  font-size: 15px;
  letter-spacing: 0.16em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 52px;
  border: 0;
}

.trust-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 29px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  text-align: center;
  background: rgba(255, 255, 255, 0.28);
}

.trust-card strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.trust-card > span {
  color: var(--muted-dark);
  font-size: 11px;
}

.trust-icon,
.feature-card .feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(160, 123, 59, 0.37);
  border-radius: 50%;
  color: var(--gold-dark);
}

.trust-icon svg,
.feature-card .feature-icon svg {
  width: 20px;
  height: 20px;
}

.quote-grid {
  margin-bottom: 0;
}

.features-section {
  color: var(--text);
  background: #0a1727;
}

.features-section .section-heading {
  margin-bottom: 48px;
}

.features-section .section-heading h2 {
  color: var(--text);
}

.features-section .section-heading > p {
  color: rgba(247, 244, 236, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-card {
  min-height: 247px;
  padding: 25px 22px;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 7px;
  background: rgba(18, 36, 59, 0.68);
}

.feature-card .feature-icon {
  margin-bottom: 27px;
  color: var(--gold);
  border-color: rgba(217, 181, 111, 0.35);
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: rgba(247, 244, 236, 0.53);
  font-size: 12px;
  line-height: 1.6;
}

.payment-section {
  padding: 33px 0 37px;
  color: var(--text);
  background: #06101d;
}

.payment-section p {
  margin: 0 0 17px;
  color: rgba(247, 244, 236, 0.42);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.payment-grid span {
  display: grid;
  min-height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  color: rgba(247, 244, 236, 0.65);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.payment-grid span:nth-child(1) {
  color: #d7e6f4;
}

.payment-grid span:nth-child(2) {
  color: #f0c6c2;
}

.payment-grid span:nth-child(3) {
  color: #eca95c;
}

.payment-grid span:nth-child(4) {
  color: #a9d77e;
}

.payment-grid span:nth-child(5) {
  color: #b9a7ff;
}

.payment-grid span:nth-child(6) {
  color: var(--gold-bright);
}

.bonus-card.highlight {
  animation: bonusHighlight 1.5s ease;
}

@keyframes bonusHighlight {
  0%, 100% {
    box-shadow: 0 20px 54px rgba(5, 8, 18, 0.22);
  }

  45% {
    box-shadow: 0 0 0 5px rgba(201, 164, 86, 0.26), 0 24px 68px rgba(201, 164, 86, 0.2);
  }
}

.footer-main {
  grid-template-columns: 1.05fr 1.8fr 0.75fr;
}

.footer-links {
  grid-template-columns: repeat(3, 1fr);
}

.footer-bottom {
  justify-content: space-between;
}

@media (max-width: 1050px) {
  .hero-content {
    padding-right: 17px;
    padding-left: 17px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1.7fr;
  }

  .footer-download {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero-content {
    padding-top: 138px;
    padding-bottom: 60px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 10vw, 68px);
  }

  .hero-live-casino {
    margin-top: 34px;
  }

  .carousel-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-slide .host-card:last-child {
    display: none;
  }

  .bonus-card {
    grid-template-columns: 1fr;
  }

  .bonus-content {
    padding: 38px 34px 20px;
  }

  .bonus-art {
    width: min(100%, 260px);
    margin: 0 auto 30px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding-top: 119px;
    padding-bottom: 50px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: 45px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 300px);
    gap: 10px;
  }

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

  .hero-stats {
    gap: 10px;
    margin-top: 35px;
  }

  .hero-stats > i {
    height: 33px;
  }

  .hero-stat {
    min-width: 0;
    flex: 1;
  }

  .hero-stat strong {
    font-size: 25px;
  }

  .hero-stat span {
    font-size: 9px;
  }

  .hero-reward-banner {
    display: grid;
    grid-template-columns: 29px 1fr;
    width: 100%;
    text-align: left;
  }

  .hero-reward-text {
    font-size: 11px;
  }

  .hero-reward-btn {
    grid-column: 2;
    justify-self: start;
  }

  .hero-live-casino {
    width: 100%;
    padding: 13px;
  }

  .hero-live-casino .carousel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
  }

  .carousel-slide .host-card:last-child {
    display: block;
  }

  .hero-live-casino .host-card,
  .hero-live-casino .host-art {
    min-height: 154px;
    height: 154px;
  }

  .games-section,
  .trust-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .game-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 420px;
  }

  .bonus-content {
    padding: 30px 23px 15px;
  }

  .bonus-content h2 {
    font-size: 39px;
  }

  .countdown-timer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .bonus-features {
    display: grid;
  }

  .trust-header h2 {
    font-size: 39px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
}
