/* Valter Casino AU — light canvas, dark type, left rail, lime CTAs */
:root {
  --va-bg: #feffff;
  --va-panel: #f2effa;
  --va-panel-2: #eae6f6;
  --va-text: #09080d;
  --va-muted: #4f4c5c;
  --va-lime: #bceb4e;
  --va-lime-ink: #0c0b10;
  --va-purple: #663bfa;
  --va-purple-mid: #6840f8;
  --va-purple-soft: #5a35d8;
  --va-line: rgba(102, 59, 250, 0.16);
  --va-radius: 14px;
  --va-radius-sm: 10px;
  --va-max: 1120px;
  --va-mast: 72px;
  --va-side: 88px;
  --va-font-display: "Syne", sans-serif;
  --va-font-body: "Manrope", sans-serif;
  --va-on-dark: #feffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--va-font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--va-text);
  background:
    radial-gradient(ellipse 70% 45% at 12% -8%, rgba(102, 59, 250, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 96% 4%, rgba(188, 235, 78, 0.14), transparent 50%),
    radial-gradient(ellipse 55% 35% at 50% 100%, rgba(104, 64, 248, 0.08), transparent 55%),
    var(--va-bg);
  background-attachment: scroll;
  overflow-x: hidden;
}

@media (min-width: 980px) {
  body {
    background-attachment: fixed;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--va-purple);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--va-purple-mid);
}

a:focus-visible,
button:focus-visible,
.va-action:focus-visible {
  outline: 2px solid var(--va-lime);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--va-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

p {
  margin: 0 0 1rem;
  color: var(--va-muted);
}

ul, ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--va-muted);
}

li {
  margin-bottom: 0.4rem;
}

strong {
  color: var(--va-text);
}

/* —— Left rail —— */
.va-side {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: var(--va-side);
  height: 100vh;
  padding: calc(var(--va-mast) + 1rem) 0.55rem 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--va-panel) 100%);
  border-right: 1px solid var(--va-line);
  box-shadow: 4px 0 24px rgba(9, 8, 13, 0.04);
}

.va-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.va-side__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.35rem;
  border-radius: 12px;
  color: var(--va-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.va-side__list a:hover,
.va-side__list a.is-active {
  color: var(--va-text);
  background: rgba(102, 59, 250, 0.1);
}

.va-side__list a.is-active {
  box-shadow: inset 3px 0 0 var(--va-lime);
}

.va-side__icon {
  width: 22px;
  height: 22px;
  stroke: var(--va-lime);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.va-side__list a:hover .va-side__icon,
.va-side__list a.is-active .va-side__icon {
  stroke: var(--va-lime);
}

.va-side__support {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.va-side__support .va-action {
  width: 100%;
  padding: 0.55rem 0.4rem;
  font-size: 0.72rem;
  border-radius: 10px;
}

@media (min-width: 980px) {
  .va-side {
    display: flex;
    flex-direction: column;
  }

  .va-mast,
  main {
    margin-left: var(--va-side);
    width: calc(100% - var(--va-side));
  }

  .va-foot {
    margin-left: 0;
    width: 100%;
  }
}

/* —— Masthead —— */
.va-mast {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--va-mast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  background: rgba(254, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--va-line);
  box-shadow: 0 8px 24px rgba(9, 8, 13, 0.04);
}

.va-mast__brand {
  font-family: var(--va-font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--va-text);
  letter-spacing: -0.02em;
  white-space: normal;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.05rem;
}

.va-mast__brand em {
  font-style: normal;
  color: var(--va-lime);
  font-size: 0.92em;
}

.va-mast__nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.va-mast__nav::-webkit-scrollbar {
  display: none;
}

.va-mast__nav a {
  color: var(--va-muted);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.va-mast__nav a:hover,
.va-mast__nav a.is-current {
  color: var(--va-text);
  background: rgba(102, 59, 250, 0.08);
}

.va-mast__nav a.is-current {
  box-shadow: inset 0 -2px 0 var(--va-lime);
  border-radius: 0;
  background: transparent;
}

.va-mast__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.va-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--va-line);
  border-radius: 10px;
  background: var(--va-panel);
  cursor: pointer;
}

.va-burger span {
  display: block;
  height: 2px;
  background: var(--va-text);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .va-mast {
    padding: 0 1.5rem 0 1.25rem;
  }

  .va-mast__nav {
    display: flex;
  }

  .va-burger {
    display: none;
  }
}

/* —— Buttons —— */
.va-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: var(--va-font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.va-action--loud {
  background: var(--va-lime);
  color: var(--va-lime-ink);
  box-shadow: 0 0 0 0 rgba(188, 235, 78, 0.35);
}

.va-action--loud:hover {
  color: var(--va-lime-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(188, 235, 78, 0.28);
}

.va-action--ghost {
  background: transparent;
  color: var(--va-text);
  border-color: rgba(9, 8, 13, 0.18);
}

.va-action--ghost:hover {
  color: var(--va-text);
  border-color: var(--va-purple);
  background: rgba(102, 59, 250, 0.08);
}

.va-action--soft {
  background: rgba(102, 59, 250, 0.1);
  color: var(--va-purple);
  border-color: rgba(102, 59, 250, 0.22);
}

.va-action--soft:hover {
  color: var(--va-text);
  background: rgba(102, 59, 250, 0.16);
}

.va-mast__actions .va-action {
  padding: 0.55rem 1.05rem;
  font-size: 0.85rem;
}

.va-mast__actions .va-action--ghost {
  display: none;
}

@media (min-width: 640px) {
  .va-mast__actions .va-action--ghost {
    display: inline-flex;
  }
}

/* —— Drawer —— */
.va-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.va-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.va-drawer__veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.va-drawer.is-open .va-drawer__veil {
  opacity: 1;
}

.va-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--va-panel);
  border-left: 1px solid var(--va-line);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.va-drawer.is-open .va-drawer__panel {
  transform: translateX(0);
}

.va-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.va-drawer__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--va-line);
  border-radius: 10px;
  background: transparent;
  color: var(--va-text);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.va-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.va-drawer__links a {
  color: var(--va-text);
  font-weight: 600;
  font-size: 1.05rem;
}

.va-drawer__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* —— Shell / rhythm —— */
.va-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--va-max));
  margin-inline: auto;
}

.va-band {
  padding: 3.5rem 0;
}

.va-band--tight {
  padding: 2.5rem 0;
}

.va-band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.va-band__head h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: 0.35rem;
}

.va-band__lede {
  margin: 0;
  max-width: 36rem;
  color: var(--va-muted);
}

.va-underline {
  background: linear-gradient(90deg, var(--va-purple-soft), transparent);
  height: 2px;
  width: 4.5rem;
  margin: 0.75rem 0 0;
  border: 0;
}

/* —— Hero (one composition) —— */
.va-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.va-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.va-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: vaKen 22s ease-in-out infinite alternate;
}

.va-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 8, 13, 0.28) 0%, rgba(9, 8, 13, 0.5) 40%, rgba(9, 8, 13, 0.88) 100%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(102, 59, 250, 0.28), transparent 70%);
  z-index: 1;
}

.va-hero__copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--va-max));
  margin: 0 auto;
  padding: 2rem 0;
  animation: vaRise 1s ease both;
}

.va-hero__brand {
  font-family: var(--va-font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--va-on-dark);
}

.va-hero__brand span {
  display: block;
  color: var(--va-lime);
}

.va-hero__title {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600;
  max-width: 22ch;
  margin: 0 0 0.85rem;
  color: var(--va-on-dark);
}

.va-hero__support {
  max-width: 38ch;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(254, 255, 255, 0.86);
}

.va-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.va-hero .va-action--ghost {
  color: var(--va-on-dark);
  border-color: rgba(254, 255, 255, 0.45);
}

.va-hero .va-action--ghost:hover {
  color: var(--va-on-dark);
  background: rgba(254, 255, 255, 0.12);
  border-color: var(--va-lime);
}

@keyframes vaKen {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes vaRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .va-hero__media img,
  .va-hero__copy {
    animation: none !important;
  }
}

/* —— Intro / prose —— */
.va-prose {
  max-width: 68ch;
}

.va-prose a,
.va-faq__a a,
.va-facts a {
  color: var(--va-purple);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(102, 59, 250, 0.35);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.va-prose a:hover,
.va-faq__a a:hover,
.va-facts a:hover {
  color: #4f28d6;
  text-decoration-color: var(--va-lime);
}

.va-prose h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin-top: 2rem;
}

.va-prose + .va-prose {
  margin-top: 0.5rem;
}

.va-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .va-split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.va-panel {
  background: linear-gradient(160deg, var(--va-panel), var(--va-panel-2));
  border: 0;
  border-radius: var(--va-radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 10px 28px rgba(9, 8, 13, 0.06), 0 0 40px rgba(102, 59, 250, 0.06);
}

.va-facts {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.va-facts th,
.va-facts td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--va-line);
  vertical-align: top;
}

.va-facts th {
  color: var(--va-purple-soft);
  font-weight: 600;
  width: 38%;
}

.va-facts td {
  color: var(--va-text);
}

.va-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* —— Features —— */
.va-features {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .va-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.va-feature {
  padding: 1.25rem 0 0;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--va-purple), var(--va-lime)) 1;
}

.va-feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.va-feature p {
  margin: 0;
  font-size: 0.95rem;
}

/* —— Games rail —— */
.va-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .va-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .va-rail {
    grid-template-columns: repeat(5, 1fr);
  }
}

.va-tile {
  display: block;
  position: relative;
  border-radius: var(--va-radius-sm);
  overflow: hidden;
  background: var(--va-panel);
  border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.va-tile__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.va-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease, transform 0.35s ease;
}

.va-tile__actions {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.va-tile__actions .va-action {
  min-width: 7.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
}

.va-tile__actions .va-action--ghost {
  color: #feffff;
  border-color: rgba(254, 255, 255, 0.55);
  background: rgba(9, 8, 13, 0.25);
}

.va-tile__actions .va-action--ghost:hover {
  color: #feffff;
  border-color: var(--va-lime);
  background: rgba(9, 8, 13, 0.4);
}

@media (hover: hover) and (pointer: fine) {
  .va-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(9, 8, 13, 0.1);
    color: var(--va-text);
  }

  .va-tile:hover .va-tile__media img {
    filter: blur(3px) brightness(0.55);
    transform: scale(1.06);
  }

  .va-tile:hover .va-tile__actions {
    opacity: 1;
    pointer-events: auto;
  }
}

.va-tile.is-active .va-tile__media img,
.va-tile:focus-within .va-tile__media img {
  filter: blur(3px) brightness(0.55);
  transform: scale(1.06);
}

.va-tile.is-active .va-tile__actions,
.va-tile:focus-within .va-tile__actions {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: none) {
  .va-tile__actions {
    opacity: 1;
    pointer-events: auto;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 30%, rgba(9, 8, 13, 0.78) 100%);
  }

  .va-tile__actions .va-action {
    min-width: 0;
    width: 100%;
    max-width: 9.5rem;
  }
}

.va-tile > span {
  display: block;
  padding: 0.55rem 0.65rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--va-text);
}

.va-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.va-filters select,
.va-filters input {
  appearance: none;
  background: var(--va-panel);
  border: 1px solid var(--va-line);
  border-radius: 10px;
  color: var(--va-text);
  padding: 0.55rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  min-width: 0;
  flex: 1 1 10rem;
  max-width: 100%;
}

.va-filters input {
  flex: 1 1 12rem;
}

/* —— Live tables on banner —— */
.va-liveband {
  position: relative;
  border-radius: var(--va-radius);
  overflow: hidden;
  min-height: 520px;
  margin: 2rem 0 1rem;
  display: grid;
  align-items: end;
}

.va-liveband__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.va-liveband__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.va-liveband__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 8, 13, 0.25) 0%, rgba(9, 8, 13, 0.45) 35%, rgba(9, 8, 13, 0.82) 100%),
    radial-gradient(ellipse 55% 50% at 15% 80%, rgba(102, 59, 250, 0.28), transparent 70%);
}

.va-liveband__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.25rem 1.75rem;
}

@media (min-width: 760px) {
  .va-liveband {
    min-height: 560px;
  }

  .va-liveband__media img {
    min-height: 560px;
  }

  .va-liveband__content {
    padding: 2.5rem 1.75rem 2rem;
  }
}

.va-liveband .va-band__head {
  margin-bottom: 1.25rem;
}

.va-liveband .va-band__head h2 {
  color: var(--va-on-dark);
}

.va-liveband .va-band__lede {
  color: rgba(254, 255, 255, 0.82);
}

.va-liveband__link {
  color: var(--va-lime);
  font-weight: 700;
}

.va-liveband__link:hover {
  color: #feffff;
}

.va-liveband .va-table {
  background: rgba(254, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(9, 8, 13, 0.18);
}

.va-liveband .va-table h3,
.va-liveband .va-table__players strong {
  color: var(--va-text);
}

.va-liveband .va-table__host,
.va-liveband .va-table__players {
  color: var(--va-muted);
}

/* —— Live tables —— */
.va-live {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .va-live {
    grid-template-columns: repeat(3, 1fr);
  }
}

.va-table {
  background: var(--va-panel);
  border: 0;
  border-radius: var(--va-radius);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.va-table__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.va-table__glyph {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: linear-gradient(145deg, rgba(102, 59, 250, 0.45), rgba(188, 235, 78, 0.15));
  color: var(--va-text);
}

.va-table h3 {
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}

.va-table__host {
  font-size: 0.85rem;
  color: var(--va-muted);
}

.va-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.va-table__players {
  font-size: 0.88rem;
  color: var(--va-muted);
}

.va-table__players strong {
  color: var(--va-purple);
}

/* —— Tournaments —— */
.va-events {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .va-events {
    grid-template-columns: repeat(3, 1fr);
  }
}

.va-event {
  background: var(--va-panel);
  border: 0;
  border-radius: var(--va-radius);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.va-event:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(9, 8, 13, 0.08);
}

.va-event__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
}

.va-event h3 {
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
}

.va-event__prize {
  color: var(--va-purple);
  font-weight: 700;
  font-size: 0.92rem;
}

.va-event__clock {
  font-size: 0.78rem;
  color: var(--va-muted);
  text-align: right;
  white-space: nowrap;
}

.va-event__clock strong {
  display: block;
  color: var(--va-purple-soft);
  font-size: 0.88rem;
}

.va-event p {
  margin: 0;
  font-size: 0.92rem;
  flex: 1;
}

.va-event__acts {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* —— Leaderboard —— */
.va-board {
  width: 100%;
  border-collapse: collapse;
  background: var(--va-panel);
  border-radius: var(--va-radius);
  overflow: hidden;
  border: 0;
}

.va-board th,
.va-board td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--va-line);
}

.va-board th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--va-muted);
  background: rgba(102, 59, 250, 0.12);
}

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

.va-rank {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  background: rgba(190, 172, 255, 0.15);
  color: var(--va-purple-soft);
}

.va-rank--1 {
  background: var(--va-lime);
  color: var(--va-lime-ink);
}

.va-rank--2 {
  background: rgba(188, 235, 78, 0.35);
  color: var(--va-text);
}

.va-player {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.va-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--va-purple), #3a2868);
  color: var(--va-text);
}

.va-pts,
.va-reward {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.va-reward {
  color: var(--va-purple);
}

/* —— Offers —— */
.va-offers {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .va-offers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.va-offer {
  background: var(--va-panel);
  border: 0;
  border-radius: var(--va-radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.va-offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(9, 8, 13, 0.1), 0 0 24px rgba(102, 59, 250, 0.1);
}

.va-offer h3 {
  font-size: 1.2rem;
  margin: 0;
}

.va-offer__detail {
  color: var(--va-muted);
  font-size: 0.95rem;
  flex: 1;
  margin: 0;
}

.va-offer__tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--va-lime-ink);
  background: var(--va-lime);
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
}

.va-offer .va-action {
  margin-top: 0.35rem;
  align-self: stretch;
}

/* —— Payments —— */
.va-pay {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(120deg, rgba(102, 59, 250, 0.1), var(--va-panel) 45%, rgba(188, 235, 78, 0.12));
  border: 0;
  border-radius: var(--va-radius);
  padding: 1.5rem;
}

@media (min-width: 800px) {
  .va-pay {
    grid-template-columns: 1fr auto 1fr;
  }
}

.va-pay h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.va-pay p {
  margin: 0;
  font-size: 0.9rem;
}

.va-pay__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.va-pay__logos img {
  height: 36px;
  width: auto;
  background: rgba(254, 255, 255, 0.06);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
}

/* —— Providers logos (static grid) —— */
.va-studios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .va-studios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .va-studios {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.va-studios__item {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: var(--va-panel);
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.va-studios__item img {
  max-height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0.2);
}

/* —— Testimonials —— */
.va-quotes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .va-quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.va-quote {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--va-line);
}

.va-quote__who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.va-quote__who strong {
  display: block;
  font-size: 0.98rem;
}

.va-quote__who span {
  font-size: 0.82rem;
  color: var(--va-purple-soft);
}

.va-quote p {
  margin: 0;
  font-size: 0.95rem;
}

/* —— VIP on banner —— */
.va-vipband {
  position: relative;
  border-radius: var(--va-radius);
  overflow: hidden;
  margin: 2rem 0;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.va-vipband__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.va-vipband__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.va-vipband__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 8, 13, 0.2) 0%, rgba(9, 8, 13, 0.4) 40%, rgba(9, 8, 13, 0.88) 100%),
    radial-gradient(ellipse 55% 50% at 15% 85%, rgba(102, 59, 250, 0.28), transparent 70%);
  pointer-events: none;
}

.va-vipband__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.25rem 1.75rem;
}

@media (min-width: 800px) {
  .va-vipband {
    min-height: 560px;
  }

  .va-vipband__media img {
    min-height: 560px;
  }

  .va-vipband__content {
    padding: 2.5rem 1.75rem 2rem;
  }
}

.va-vip {
  display: grid;
  gap: 1.5rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

@media (min-width: 800px) {
  .va-vip {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.va-vipband h2 {
  color: var(--va-on-dark);
  margin: 0 0 0.65rem;
}

.va-vipband .va-band__lede {
  color: rgba(254, 255, 255, 0.82);
  margin-bottom: 0.85rem;
}

.va-vipband .va-vip ul {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  color: rgba(254, 255, 255, 0.88);
}

.va-vipband .va-vip li {
  margin-bottom: 0.35rem;
}

.va-vip__perks {
  display: grid;
  gap: 0.85rem;
}

.va-vip__perk {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(254, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--va-lime);
  box-shadow: 0 12px 28px rgba(9, 8, 13, 0.18);
}

.va-vip__perk strong {
  font-family: var(--va-font-display);
  font-size: 1.05rem;
  color: var(--va-purple);
}

.va-vip__perk span {
  font-size: 0.88rem;
  color: var(--va-muted);
}

/* —— Visual break (later banners) —— */
.va-vista {
  position: relative;
  border-radius: var(--va-radius);
  overflow: hidden;
  min-height: 200px;
  margin: 0.5rem 0 2rem;
}

.va-vista img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.va-vista--top img {
  object-position: top center;
}

.va-vista__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(transparent, rgba(9, 8, 13, 0.82));
}

.va-vista__cap p {
  margin: 0;
  color: var(--va-on-dark);
  font-family: var(--va-font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

/* —— FAQ —— */
.va-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: none;
}

.va-faq__row {
  border: 0;
  border-radius: var(--va-radius-sm);
  background: var(--va-panel);
  overflow: hidden;
}

.va-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: transparent;
  border: 0;
  color: var(--va-text);
  font-family: var(--va-font-display);
  font-size: 1rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.va-faq__mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(102, 59, 250, 0.12);
  color: var(--va-purple);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease;
}

.va-faq__mark::before {
  content: "+";
}

.va-faq__row.is-open .va-faq__mark {
  background: var(--va-lime);
  color: var(--va-lime-ink);
}

.va-faq__row.is-open .va-faq__mark::before {
  content: "\2212";
}

.va-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.va-faq__row.is-open .va-faq__a {
  grid-template-rows: 1fr;
}

.va-faq__a > div {
  overflow: hidden;
}

.va-faq__a p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.95rem;
}

/* —— Final CTA —— */
.va-finale {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--va-radius);
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(102, 59, 250, 0.22), transparent 55%),
    var(--va-panel);
  border: 0;
}

.va-finale h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.65rem;
}

.va-finale p {
  max-width: 40rem;
  margin: 0 auto 1.35rem;
}

.va-finale__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* —— Footer —— */
.va-foot {
  margin-top: 2.5rem;
  margin-left: 0;
  width: 100%;
  max-width: none;
  padding: 0 0 1.75rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(102, 59, 250, 0.06) 18%, var(--va-panel) 42%),
    var(--va-panel);
  border-top: 0;
}

.va-foot__align {
  width: 100%;
}

@media (min-width: 980px) {
  .va-foot__align {
    margin-left: var(--va-side);
    width: calc(100% - var(--va-side));
  }
}

.va-foot__stage {
  display: grid;
  gap: 1.75rem;
  padding: 2.5rem 0 2rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--va-lime), var(--va-purple), transparent) 1;
  align-items: start;
}

@media (min-width: 900px) {
  .va-foot__stage {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.va-foot__brand {
  font-family: var(--va-font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: var(--va-text);
}

.va-foot__brand span {
  display: block;
  color: var(--va-lime);
}

.va-foot__tag {
  margin: 0 0 1.25rem;
  max-width: 38ch;
  font-size: 0.98rem;
  color: var(--va-muted);
}

.va-foot__chips {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.va-foot__chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.va-foot__chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--va-line);
  background: #fff;
  color: var(--va-text);
  font-size: 0.8rem;
  font-weight: 650;
}

.va-foot__chips a:hover {
  border-color: var(--va-purple);
  color: var(--va-purple);
  background: rgba(102, 59, 250, 0.06);
}

.va-foot__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.va-foot__badges img {
  height: 34px;
  width: auto;
  opacity: 0.95;
  filter: brightness(0.15);
}

.va-feedback {
  background: #fff;
  border: 0;
  border-radius: var(--va-radius);
  padding: 0.95rem 1.05rem 1.05rem;
  box-shadow: 0 14px 36px rgba(9, 8, 13, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
  max-height: none;
}

.va-feedback__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--va-text);
}

.va-feedback__lede {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--va-muted);
}

.va-feedback__field {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.va-feedback__field span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--va-muted);
}

.va-feedback__field input,
.va-feedback__field textarea {
  width: 100%;
  border: 1px solid var(--va-line);
  border-radius: 10px;
  background: var(--va-panel);
  color: var(--va-text);
  font-family: var(--va-font-body);
  font-size: 1rem;
  padding: 0.55rem 0.7rem;
  resize: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.va-feedback__field--msg textarea {
  min-height: 3.25rem;
  height: 3.25rem;
}

.va-feedback__field input:focus,
.va-feedback__field textarea:focus {
  outline: none;
  border-color: var(--va-purple);
  box-shadow: 0 0 0 3px rgba(102, 59, 250, 0.12);
}

.va-feedback__submit {
  align-self: flex-start;
  margin-top: 0.1rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.va-feedback__note {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--va-purple);
}

.va-feedback__note[hidden] {
  display: none;
}

.va-feedback.is-sent .va-feedback__field,
.va-feedback.is-sent .va-feedback__submit,
.va-feedback.is-sent .va-feedback__lede {
  display: none;
}

.va-foot__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--va-line);
  font-size: 0.82rem;
  color: var(--va-muted);
}

.va-foot__bar p {
  margin: 0;
  font-size: inherit;
}

/* —— Cookie bar —— */
.va-cookie {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
  width: auto;
  transform: none;
}

@media (min-width: 980px) {
  .va-cookie {
    left: var(--va-side);
    padding: 0 1rem;
  }
}

.va-cookie__panel {
  pointer-events: auto;
  width: min(100%, var(--va-max));
  background: var(--va-panel);
  border: 0;
  border-radius: var(--va-radius);
  padding: 1rem 1.15rem;
  box-shadow: 0 16px 40px rgba(9, 8, 13, 0.12);
}

.va-cookie.is-hidden {
  display: none;
}

.va-cookie p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
}

.va-cookie__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.va-cookie .va-action {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* —— Jackpot ticker (optional, not in hero) —— */
.va-jack {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-variant-numeric: tabular-nums;
}

.va-jack strong {
  color: var(--va-purple);
  font-size: 1.15rem;
}

/* —— Bonuses page specifics —— */
.va-pagehero {
  padding: 3rem 0 1.5rem;
}

.va-pagehero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 18ch;
}

.va-pagehero h1 em {
  font-style: normal;
  color: var(--va-purple);
}

.va-pagehero p {
  max-width: 48ch;
}

.va-claim-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 760px) {
  .va-claim-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Mobile / small-screen polish —— */
@media (max-width: 899px) {
  .va-mast {
    padding: 0 0.85rem;
    gap: 0.65rem;
  }

  .va-mast__brand {
    font-size: 0.95rem;
  }

  .va-mast__actions .va-action--loud {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .va-shell {
    width: min(100% - 1.5rem, var(--va-max));
  }

  .va-band {
    padding: 2.5rem 0;
  }

  .va-band--tight {
    padding: 1.75rem 0;
  }

  .va-hero {
    min-height: min(78vh, 640px);
  }

  .va-hero__copy {
    padding: 1.5rem 0;
  }

  .va-hero__support {
    font-size: 0.98rem;
  }

  .va-hero__ctas .va-action {
    flex: 1 1 auto;
    min-height: 44px;
  }

  .va-liveband,
  .va-vipband {
    min-height: 0;
    margin: 1.5rem 0;
    border-radius: 12px;
  }

  .va-liveband__media img,
  .va-vipband__media img {
    min-height: 0;
    height: 100%;
  }

  .va-liveband__content,
  .va-vipband__content {
    padding: 1.35rem 1rem 1.25rem;
  }

  .va-vipband .va-action,
  .va-liveband .va-band__head .va-action {
    min-height: 44px;
  }

  .va-finale {
    padding: 2rem 1rem;
  }

  .va-finale__row .va-action {
    flex: 1 1 8rem;
    min-height: 44px;
  }

  .va-pagehero {
    padding: 2rem 0 1rem;
  }

  .va-pagehero .va-hero__ctas .va-action {
    flex: 1 1 9rem;
  }

  .va-vista img {
    height: 180px;
  }

  .va-vista__cap {
    padding: 1rem;
  }

  .va-vista__cap p {
    font-size: 1rem;
  }

  .va-faq__q {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .va-cookie {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    padding: 0 0.75rem;
  }

  .va-cookie__panel {
    padding: 0.9rem 1rem;
  }

  .va-cookie__acts .va-action {
    flex: 1 1 auto;
    min-height: 44px;
  }

  .va-foot__stage {
    padding: 2rem 0 1.5rem;
  }

  .va-foot__chips-row {
    gap: 0.45rem;
  }

  .va-drawer__panel {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .va-mast__actions .va-action--loud {
    padding: 0.48rem 0.7rem;
  }

  .va-rail {
    gap: 0.65rem;
  }

  .va-tile__actions {
    gap: 0.35rem;
    padding: 0.55rem;
  }

  .va-tile__actions .va-action {
    padding: 0.45rem 0.65rem;
    font-size: 0.75rem;
  }

  .va-table__row {
    flex-wrap: wrap;
  }

  .va-table__row .va-action {
    width: 100%;
  }

  .va-event__top {
    flex-direction: column;
  }

  .va-facts th,
  .va-facts td {
    padding: 0.65rem 0.35rem;
    font-size: 0.88rem;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .va-hero {
    min-height: auto;
    padding: 2.25rem 0;
  }
}

/* Standalone VIP panel (bonuses page) */
.va-shell > .va-vip {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(188, 235, 78, 0.1), transparent 50%),
    var(--va-panel);
  border-radius: var(--va-radius);
  padding: 1.35rem;
}

.va-shell > .va-vip .va-vip__perk {
  background: #fff;
  box-shadow: none;
}

.va-shell > .va-vip h2 {
  color: var(--va-text);
}

.va-shell > .va-vip .va-band__lede {
  color: var(--va-muted);
}
