@charset "UTF-8";
/* BizzoCasino Australia — australiacasinobizzo.com */
/* == BREAKPOINT MIXINS == */
/* ------------- TOKENS — "Reef & Outback" palette (australiacasinobizzo.com)
   deep ocean teal + Australian gold + red-centre ochre; sandstone panels        */
:root {
  /* backgrounds */
  --reef-base: #0e2f3a;
  --reef-deep: #082430;
  --reef-core: #0e2f3a;
  --reef-panel: #16414e;
  --reef-panel-alt: #123846;
  /* sandstone (light surfaces: tables, cards) */
  --sand: #f7efe0;
  --sand-dim: #e7dbc5;
  --sand-line: rgba(11, 37, 48, 0.16);
  /* text */
  --text-bright: #fffaf0;
  --text-body: #dceaea;
  --text-soft: #93b3b7;
  --text-invert: #0b2530;
  /* accents */
  --hue-gold: #ffc72c;
  --hue-amber: #e8951c;
  --hue-sun: #ffe08a;
  --hue-green: #2fbf74;
  --hue-ochre: #c8541b;
  --hue-live: #ff6a4d;
  /* gradients */
  --wash-cta: linear-gradient(135deg, #ffd24a 0%, #e2761a 100%);
  --wash-cta-over: linear-gradient(135deg, #e2761a 0%, #ffd24a 100%);
  --wash-panel: linear-gradient(160deg, #16414e 0%, #0c2a35 100%);
  --wash-gold: linear-gradient(135deg, #ffd24a 0%, #c8541b 100%);
  --wash-bar: linear-gradient(90deg, #ffdf7a 0%, #c8541b 100%);
  --wash-head: linear-gradient(120deg, #c8541b 0%, #8f3410 100%);
  --wash-leaf: linear-gradient(135deg, #3fbf6a 0%, #00794a 100%);
  /* lines & borders */
  --rule: rgba(214, 236, 236, 0.14);
  --rule-lit: rgba(255, 199, 44, 0.42);
  /* geometry */
  --bend: 3px;
  --bend-lg: 12px;
  --bend-xl: 22px;
  /* motion */
  --ease-main: 0.24s ease;
}

/* == RESET == */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
select {
  font: inherit;
}

/* == FONTS: self-hosted Poppins + Darumadrop One == */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Poppins-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Poppins-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Poppins-700-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Poppins-800-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Darumadrop One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DarumadropOne-400-latin.woff2") format("woff2");
}
/* --------------GLOBAL-------------- */
html {
  scroll-behavior: smooth;
  /* 64px header + 20px gap = top edge of the sidebar */
  scroll-padding-top: 84px;
}

body {
  background: radial-gradient(52% 38% at 12% 4%, rgba(45, 200, 160, 0.1) 0%, transparent 100%), radial-gradient(44% 32% at 90% 18%, rgba(255, 199, 44, 0.06) 0%, transparent 100%), linear-gradient(180deg, #103340 0%, var(--reef-base, #0e2f3a) 46%, #071f29 100%), var(--reef-core, #0e2f3a);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-bright);
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
  hyphens: none;
  overflow-wrap: break-word;
}

p {
  margin-top: 20px;
  width: 100%;
}
p:first-child {
  margin-top: 0;
}

.title + p {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

/* ----------------Content---------------- */
.panel,
.cover {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.panel {
  display: flex;
  padding: 20px;
  margin-top: 20px;
  border-radius: var(--bend, 4px);
  background: var(--wash-panel, linear-gradient(180deg, #16414e 0%, #0c2a35 100%));
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.12));
}
@media (max-width: 850px) {
  .panel {
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .panel {
    padding: 10px;
  }
}

.panel-bg > .layer + * {
  margin-top: 0;
}
.panel-bg p {
  color: var(--text-bright, #fffaf0);
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1580px) {
  .cover {
    padding-left: calc(50% - 790px);
    padding-right: calc(50% - 790px);
  }
}

.panel > *,
.cover > * {
  display: block;
  position: relative;
}

.shell__buttons {
  display: none;
}
@media (max-width: 650px) {
  .shell__buttons {
    background: rgba(8, 36, 48, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .shell__buttons {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ----------------Main------------- */
.shell {
  position: relative;
  margin: 0 auto;
  display: flex;
}
.shell__wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  /* 64px — fixed header height */
  padding: 64px 10px 48px;
}
.shell__content {
  position: relative;
  flex: 1 1 calc(100% - 20px - 248px);
  min-width: 0;
  overflow: hidden;
  padding-bottom: 0;
}
@media (max-width: 1050px) {
  .shell__content {
    flex: 1 1 100%;
  }
}
@media (max-width: 650px) {
  .shell__buttons .controls {
    width: calc(50% - 4px);
    padding-left: 12px;
    padding-right: 12px;
    margin: 0;
    min-width: 0;
  }
}

@media (max-width: 850px) {
  .shell,
  .topbar,
  .sitefoot {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ---------------------H2 H3--------------------- */
h2,
h3,
h4,
.panel > h1,
.missing__copy > h1 {
  display: block;
  color: var(--hue-gold, #ffc72c);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 100%;
  word-break: break-word;
}

p {
  color: var(--text-body, #dceaea);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

/* == HEADING ORNAMENTS ==
   h2 — gradient hairline under the title, glowing in the middle
   h3 — small tilted gold chip in front of the text */
h2,
.panel > h1,
.missing__copy > h1 {
  align-self: stretch;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 0 0 12px;
  width: 100%;
  margin: 0 0 20px;
}
h2::after,
.panel > h1::after,
.missing__copy > h1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--hue-gold, #ffc72c) 50%, transparent 100%);
}
@media (max-width: 850px) {
  h2,
  .panel > h1,
  .missing__copy > h1 {
    font-size: 25px;
  }
}
@media (max-width: 650px) {
  h2,
  .panel > h1,
  .missing__copy > h1 {
    font-size: 23px;
  }
}
@media (max-width: 450px) {
  h2,
  .panel > h1,
  .missing__copy > h1 {
    font-size: 21px;
  }
}

/* the element after a heading with margin-bottom must NOT add its own margin-top —
   otherwise the gap doubles */
.panel h2 + p,
.panel h2 + .pair,
.panel h2 + .marks,
.panel h2 + .path,
.panel h2 + .steps-field,
.panel h2 + .split,
.panel h2 + .board,
.panel h2 + div:has(> table),
.panel > h2 + .mock,
.panel h2 + .qa__list,
.panel h2 + .voices__carousel,
.panel h2 + .balance__panel,
.panel h2 + .frame,
.panel h2 + img,
.panel h3 + .pair,
.panel h3 + .marks,
.panel h3 + .path,
.panel h3 + .steps-field,
.panel h3 + .split,
.panel h3 + .board,
.panel h3 + div:has(> table),
.panel > h3 + .mock,
.panel h3 + .frame,
.panel h3 + img {
  margin-top: 0;
}

h2 + p,
.panel > h1 + p,
.missing__copy > h1 + p {
  margin-top: 0;
}

h3 {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.01em;
  padding: 0 0 0 28px;
  margin-top: 20px;
  margin-bottom: 14px;
}
h3:first-child {
  margin-top: 0;
}
h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: var(--wash-gold, linear-gradient(135deg, #ffd24a 0%, #c8541b 100%));
}
@media (max-width: 850px) {
  h3 {
    font-size: 18px;
  }
  h3::before {
    width: 12px;
    height: 12px;
    top: 7px;
  }
}
@media (max-width: 450px) {
  h3 {
    font-size: 17px;
    padding-left: 22px;
  }
}

h3 + p {
  margin-top: 0;
}

h4 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--hue-gold, #ffc72c);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 8px;
  text-transform: none;
}
@media (max-width: 450px) {
  h4 {
    font-size: 16px;
  }
}

h4 + p {
  margin-top: 0;
}

h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}

/* ---------------------SPECIAL--------------------- */
.image img,
.layer img {
  display: block;
  position: relative;
  margin: auto;
}

.layer {
  display: block !important;
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.layer img,
.layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.js-foldout {
  display: none;
  overflow: hidden;
}
.js-foldout.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgb(255, 250, 240);
  line-height: 1;
}

use {
  fill: rgb(255, 250, 240);
  fill-rule: evenodd;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* == Shared content patterns == */
/* scroll-padding already gives 84px (sidebar level) — sections need no extra offset */
section[id] {
  scroll-margin-top: 0;
}

/* anchor on an h2 inside a card: +20px compensates the section padding
   so the card top lands exactly on the sidebar line */
.panel h2[id] {
  scroll-margin-top: 20px;
}

/* illustration inside a content section:
   `:where()` adds no specificity, so blocks can easily override this rule */
.panel img:not(:where(.icon, .brandmark, .geo-mark, .pay)) {
  width: 100%;
  height: clamp(360px, 32vw, 480px);
  object-fit: cover;
  object-position: top;
  border-radius: var(--bend-xl, 14px);
  display: block;
}
@media (max-width: 850px) {
  .panel img:not(:where(.icon, .brandmark, .geo-mark, .pay)) {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .panel img:not(:where(.icon, .brandmark, .geo-mark, .pay)) {
    height: 220px;
  }
}

/* media layers (section/banner backgrounds) fill the container and are exempt from the clamp */
.panel .layer img,
.panel .layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

/* == MARKS — bullet list as a two-column card grid with a gold edge == */
.marks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  position: relative;
}
.marks:first-child, h3 + .marks, h2 + .marks, p + .marks {
  margin-top: 14px;
}
.marks > li {
  flex: 1 1 calc(50% - 6px);
  min-width: 260px;
  position: relative;
  /* block flow, not flex — otherwise a leading <b> becomes its own column */
  padding: 14px 16px 14px 48px;
  border-radius: var(--bend-lg, 12px);
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.14));
  /* warm light bleeding in from the marker instead of a hard left stripe */
  background: linear-gradient(100deg, rgba(255, 199, 44, 0.12) 0%, rgba(8, 36, 48, 0.55) 45%);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  /* bold lead label of an item — gold for emphasis */
}
.marks > li b,
.marks > li strong {
  color: var(--hue-gold, #ffc72c);
}
.marks > li {
  /* gold tile … */
}
.marks > li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--wash-gold, linear-gradient(135deg, #ffd24a 0%, #c8541b 100%));
}
.marks > li {
  /* … with a dark tick drawn on top of it */
}
.marks > li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  width: 5px;
  height: 9px;
  border: solid rgba(8, 36, 48, 0.85);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 850px) {
  .marks > li {
    flex: 1 1 100%;
    min-width: 0;
  }
}
@media (max-width: 450px) {
  .marks > li {
    padding: 12px 12px 12px 42px;
    font-size: 14px;
  }
  .marks > li::before {
    left: 11px;
    top: 13px;
  }
  .marks > li::after {
    left: 19px;
    top: 18px;
  }
}
.marks {
  /* one item per row — for long explanatory bullets */
}
.marks--stack > li {
  flex: 1 1 100%;
  min-width: 0;
}

/* == FRAME — illustration with a caption bar (used instead of bare <img>) == */
.frame {
  display: block;
  width: 100%;
  margin: 20px 0 0;
  border-radius: var(--bend-xl, 22px);
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.14));
  overflow: hidden;
}
.frame img {
  border-radius: 0 !important;
}
.frame {
  /* panoramic assets (3:1) keep their own proportions instead of being cropped */
}
.frame--wide img {
  height: auto !important;
  aspect-ratio: 3/1;
}
.frame figcaption {
  padding: 10px 16px;
  background: var(--wash-head, linear-gradient(120deg, #c8541b 0%, #8f3410 100%));
  color: var(--text-bright, #fffaf0);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .frame figcaption {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* == SPLIT — illustration next to a table (media left, data right) == */
.split {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  margin-top: 20px;
  /* media column */
}
.split > div:first-child {
  flex: 0 1 38%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-xl, 22px);
  min-height: 280px;
}
.split > div:first-child img:not(:where(.icon, .brandmark)) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
}
.split {
  /* the table takes the rest of the row and scrolls inside its own column */
}
.split > .board {
  flex: 1 1 0;
  min-width: 0;
  margin-top: 0;
}
.split {
  /* a key/value table has only two narrow columns, so it fits without scrolling */
}
.split > .board--kv > table {
  min-width: 0;
}
@media (max-width: 850px) {
  .split {
    flex-direction: column;
  }
  .split > div:first-child {
    flex: none;
    min-height: 240px;
  }
  .split {
    /* stacked: `flex-basis` now drives the HEIGHT, so the table must size to its
       own content instead of collapsing to zero */
  }
  .split > .board {
    flex: none;
  }
}
@media (max-width: 767px) {
  .split > div:first-child {
    min-height: 200px;
  }
}

/* two-column text + media split — media column is the narrower one */
.pair {
  display: flex;
  gap: 18px;
  width: 100%;
  margin-top: 20px;
  align-items: stretch;
}
.pair > div {
  flex: 1 1 0;
  min-width: 0;
}
.pair > div:last-child {
  flex: 0 1 42%;
}
.pair {
  /* media on the left, text on the right — markup order stays text-first */
}
.pair--flip {
  flex-direction: row-reverse;
}
@media (max-width: 850px) {
  .pair--flip {
    flex-direction: column;
  }
}
@media (max-width: 850px) {
  .pair {
    flex-direction: column;
  }
  .pair > div:last-child {
    flex: 1 1 auto;
  }
}

/* phase-1 image placeholder: keeps the exact proportions of the future file
   (aspect-ratio modifiers) */
.mock {
  display: block;
  position: relative;
  width: 100%;
  border-radius: var(--bend-xl, 14px);
  border: 1px dashed rgba(255, 199, 44, 0.35);
  background: repeating-linear-gradient(135deg, rgba(255, 199, 44, 0.06) 0 12px, transparent 12px 24px), rgba(8, 36, 48, 0.6);
  overflow: hidden;
}
.mock::after {
  content: attr(data-slot);
  display: block;
  padding: 10px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-soft, #93b3b7);
  word-break: break-all;
}
.mock--16x9 {
  aspect-ratio: 16/9;
}
.mock--21x9 {
  aspect-ratio: 21/9;
}
.mock--4x3 {
  aspect-ratio: 4/3;
}
.mock--3x1 {
  aspect-ratio: 3/1;
}
.mock--3x4 {
  aspect-ratio: 3/4;
}
.mock--1x1 {
  aspect-ratio: 1/1;
}
.mock--fill {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
}

/* spacing for media in the section flow (placeholder or real photo);
   no margin inside .pair columns — otherwise the photo drops below the text */
.panel > .mock,
.panel > img:not(:where(.icon, .brandmark, .geo-mark, .pay)) {
  margin-top: 20px;
}

/* split text column — content vertically centered */
.pair > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* split photo column — media fills the full height of the text column */
.pair > div:last-child {
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-xl, 14px);
  min-height: 260px;
}
.pair > div:last-child .mock,
.pair > div:last-child img:not(:where(.icon, .brandmark)) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  margin: 0;
}
@media (max-width: 850px) {
  .pair > div:last-child {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .pair > div:last-child {
    min-height: 220px;
  }
}

/* structural blocks */
/* == HEADER == */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, #10333f 0%, #071f29 100%);
  border-bottom: 1px solid rgba(255, 199, 44, 0.35);
}
.topbar__wrap {
  display: flex;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 10px;
  min-height: 64px;
  gap: 20px;
}
.topbar__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 238px;
}
.topbar__logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 1050px) {
  .topbar__logo {
    width: auto;
  }
}
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.topbar__nav a {
  padding: 8px 12px;
  border-radius: var(--bend-lg, 10px);
  color: var(--text-bright, #fffaf0);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--ease-main), background var(--ease-main);
}
.topbar__nav a.is-active {
  color: var(--hue-gold, #ffc72c);
}
@media (hover: hover) {
  .topbar__nav a:hover {
    color: var(--hue-gold, #ffc72c);
    background: rgba(214, 236, 236, 0.06);
  }
}
.topbar__nav {
  /* diamond separator between menu items */
}
.topbar__nav a + a {
  position: relative;
  margin-left: 14px;
}
.topbar__nav a + a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255, 199, 44, 0.5);
  border-radius: 1px;
}
@media (max-width: 900px) {
  .topbar__nav {
    display: none;
  }
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
}
.topbar__clock {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body, #dceaea);
  font-variant-numeric: tabular-nums;
}
.topbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright, #fffaf0);
}
.topbar__lang .geo-mark {
  font-size: 22px;
  line-height: 1;
}
.topbar__lang img {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  object-fit: cover;
  display: block;
}
.topbar__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .topbar__buttons {
    display: none;
  }
}
.topbar {
  /* burger: yellow border, SVG bars morph into a cross */
}
.topbar__burger {
  display: none;
  border: 2px solid var(--hue-gold, #ffc72c);
  padding: 10px;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}
.topbar__burger svg {
  display: block;
  margin: auto;
  width: 16px;
  height: 16px;
  fill: none;
}
.topbar__burger svg rect {
  transform-origin: 50% 50%;
  transition: all 0.5s;
  fill: var(--hue-gold, #ffc72c);
}
.topbar__burger.is-open svg rect:nth-child(1) {
  x: -2px;
  y: 6px;
  width: 20px;
  transform: rotate(225deg);
}
.topbar__burger.is-open svg rect:nth-child(2) {
  transform: scale(0, 2);
}
.topbar__burger.is-open svg rect:nth-child(3) {
  x: -2px;
  y: 6px;
  width: 20px;
  transform: rotate(135deg);
}
@media (max-width: 900px) {
  .topbar__burger {
    display: block;
  }
}

/* scroll progress bar under the header */
.read-bar {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 48;
  height: 3px;
  background: rgba(255, 199, 44, 0.12);
  pointer-events: none;
}
.read-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ffc72c 0%, #c8541b 100%);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 8px rgba(255, 199, 44, 0.55);
  transition: width 0.12s linear;
}

/* mobile menu — dropdown panel under the header */
.drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 49;
  background: #123846;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0 25px;
  transition: max-height 0.5s ease, visibility 0.5s ease, padding 0.5s ease;
}
.drawer.is-open {
  max-height: calc(100vh - 64px);
  max-height: calc(100dvh - 64px);
  overflow: auto;
  visibility: visible;
  padding: 25px;
}
.drawer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drawer__links a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--text-bright, #fffaf0);
  transition: color var(--ease-main);
}
.drawer__links a.is-active {
  font-weight: 700;
  color: var(--hue-gold, #ffc72c);
}
.drawer__links a:hover {
  color: var(--hue-gold, #ffc72c);
}
.drawer__links a {
  /* diamond separator below each item */
}
.drawer__links a:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 37px;
}
.drawer__links a:not(:last-child)::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='12' viewBox='0 0 30 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.4' y='6' width='8' height='1' fill='url(%23paint0_linear_3530_3408)'/%3E%3Crect opacity='0.4' x='22' y='6' width='8' height='1' fill='url(%23paint1_linear_3530_3408)'/%3E%3Crect x='15' y='0.707107' width='6.99997' height='7.00001' transform='rotate(45 15 0.707107)' stroke='%23FFC72C'/%3E%3Crect x='15' y='4.24264' width='1.99998' height='2.00002' transform='rotate(45 15 4.24264)' fill='%23FFC72C'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3530_3408' x1='0' y1='6.5' x2='8' y2='6.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FFFAF0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_3530_3408' x1='30' y1='6.5' x2='22' y2='6.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FFFAF0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 12px;
  width: 30px;
}
.drawer__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

body.no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

/* == BUTTONS == */
/* pulsing CTA glow */
@keyframes aub-glow-green {
  0%, 100% {
    box-shadow: 0 0 10px rgba(226, 118, 26, 0.45), 0 6px 18px -6px rgba(226, 118, 26, 0.55);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 214, 120, 0.8), 0 6px 22px -6px rgba(226, 118, 26, 0.7);
  }
}
@keyframes aub-glow-gold {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 199, 44, 0.4), 0 8px 20px -8px rgba(255, 199, 44, 0.55);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 224, 138, 0.75), 0 8px 24px -8px rgba(255, 199, 44, 0.7);
  }
}
/* header, login — secondary button: transparent with a yellow border */
.topbar__login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 41px;
  padding: 0 18px;
  border-radius: var(--bend-lg, 10px);
  border: 1px solid rgba(255, 199, 44, 0.6);
  background: transparent;
  color: var(--text-bright, #fffaf0);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--ease-main), border-color var(--ease-main), color var(--ease-main);
}
@media (hover: hover) {
  .topbar__login:hover {
    background: rgba(255, 199, 44, 0.12);
    border-color: var(--hue-gold, #ffc72c);
    color: var(--hue-gold, #ffc72c);
  }
}
.topbar__login:focus-visible {
  outline: 2px solid var(--hue-gold, #ffc72c);
  outline-offset: 2px;
}

/* header, sign-up — primary button: green gradient */
.topbar__signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 24px;
  border-radius: var(--bend-lg, 10px);
  background: var(--wash-cta, linear-gradient(180deg, #ffd24a 0%, #e2761a 100%));
  color: var(--text-invert, #082430);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px -6px rgba(226, 118, 26, 0.55);
  animation: aub-glow-green 2.8s ease-in-out infinite;
  transition: filter var(--ease-main), transform var(--ease-main);
}
@media (hover: hover) {
  .topbar__signup:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -8px rgba(226, 118, 26, 0.7);
  }
}
.topbar__signup:focus-visible {
  outline: 2px solid var(--hue-gold, #ffc72c);
  outline-offset: 2px;
}

/* content, main CTA — green gradient with a sheen highlight */
.cta-lead__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  margin-top: 20px;
  border-radius: var(--bend-lg, 10px);
  background: var(--wash-cta, linear-gradient(180deg, #ffd24a 0%, #e2761a 100%));
  color: var(--text-invert, #082430);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0 10px 26px -10px rgba(226, 118, 26, 0.65);
  animation: aub-glow-green 2.8s ease-in-out infinite;
  transition: filter var(--ease-main), transform var(--ease-main);
}
.cta-lead__button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: aub-cta-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}
@media (hover: hover) {
  .cta-lead__button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(226, 118, 26, 0.8);
  }
}
.cta-lead__button:focus-visible {
  outline: 2px solid var(--hue-gold, #ffc72c);
  outline-offset: 2px;
}

@keyframes aub-cta-sheen {
  0%, 62% {
    left: -60%;
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  86%, 100% {
    left: 130%;
    opacity: 0;
  }
}
/* content, download — yellow store button */
.cta-store__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 268px;
  max-width: 100%;
  height: 56px;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: var(--bend-lg, 10px);
  background: linear-gradient(180deg, #ffdf7a 0%, #e0a516 100%);
  color: var(--text-invert, #082430);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(255, 199, 44, 0.55);
  animation: aub-glow-gold 3.4s ease-in-out infinite;
  transition: filter var(--ease-main), transform var(--ease-main);
}
.cta-store__button svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  fill: var(--text-invert, #082430);
}
.cta-store__button {
  /* both label lines stay centred inside the flex item */
}
.cta-store__button span {
  text-align: center;
}
@media (hover: hover) {
  .cta-store__button:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
  }
}
.cta-store__button:focus-visible {
  outline: 2px solid var(--text-bright, #fffaf0);
  outline-offset: 2px;
}

/* buttons in content flow — aligned left */
.panel > .cta-lead__button,
.panel > .cta-store__button {
  align-self: flex-start;
}

/* download button placed directly in a section: standard 268×56 size, not 100%
   (overrides the generic .panel > * { display: block }) */
.panel > .cta-store__button {
  display: inline-flex;
  width: 268px;
}

/* row of download buttons: spacing via margins only, no gap */
.store-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.store-line .cta-store__button {
  margin: 20px 14px 0 0;
}

/* == SIDEBAR == */
.railbar {
  flex: 0 0 248px;
  width: 248px;
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 12px;
  border-radius: var(--bend-xl, 14px);
  background: linear-gradient(180deg, #143c49 0%, #0c2a35 100%);
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.12));
}
.railbar::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1050px) {
  .railbar {
    display: none;
  }
}

/* two feature buttons: Fortune Wheel + Missions (styling and animation from casinobizzo.ie) */
.railbar__promos {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.railbar__feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 52px;
  padding: 0 12px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #061e28;
  background: linear-gradient(180deg, #f0b429 0%, #ecae2a 48%, #e8a324 100%);
  border: 1px solid rgba(255, 224, 138, 0.5);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 7px 18px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  /* sheen highlight sweeping across the button on hover */
}
.railbar__feature::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: -55%;
  bottom: -55%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: skewX(-20deg);
  transition: left 0.42s ease;
}
@media (hover: hover) {
  .railbar__feature:hover {
    filter: brightness(1.1) saturate(1.08);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 199, 44, 0.42);
  }
  .railbar__feature:hover::after {
    left: 125%;
  }
  .railbar__feature:hover .spinwheel__wheel {
    animation-duration: 1.25s;
    filter: brightness(1.08) drop-shadow(0 2px 4px rgba(6, 44, 56, 0.5));
  }
  .railbar__feature:hover .loot {
    transform: translateY(-2px) scale(1.04);
  }
}
.railbar__feature:active {
  transform: translateY(1px) scale(0.99);
}

/* wheel: the disc spins continuously under a static frame */
.spinwheel {
  position: relative;
  width: 58px;
  height: 52px;
  display: block;
  align-self: stretch;
  flex: 0 0 auto;
}
.spinwheel img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
}
.spinwheel__wheel {
  width: 44px;
  height: 44px;
  animation: aub-wheel-spin 3.2s linear infinite;
  filter: drop-shadow(0 2px 3px rgba(6, 44, 56, 0.42));
}
.spinwheel__frame {
  z-index: 2;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -49%);
  filter: drop-shadow(0 2px 3px rgba(8, 44, 56, 0.5));
}

@keyframes aub-wheel-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Missions chest */
.loot {
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  margin: 0 0 0 5px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.railbar__menu {
  display: flex;
  flex-direction: column;
  /* divider: a hairline that glows in the middle and fades out at both ends */
  background-image: linear-gradient(90deg, transparent 0%, rgba(255, 199, 44, 0.45) 50%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top center;
  padding-top: 9px;
}
.railbar__menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--bend-lg, 10px);
  color: var(--text-body, #dceaea);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--ease-main), color var(--ease-main);
}
.railbar__menu li a svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--hue-gold, #ffc72c);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) {
  .railbar__menu li a:hover {
    background: rgba(214, 236, 236, 0.08);
    color: var(--text-bright, #fffaf0);
  }
}
.railbar__menu .tag {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100%;
  background: var(--hue-ochre, #c8541b);
  color: var(--text-bright, #fffaf0);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Application card: text + phone in the corner */
.railbar__app {
  display: block;
  background-color: #123846;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  box-shadow: 1px 3px 0 0 #0a2c38;
  position: relative;
  padding: 21px 75px 18px 12px;
  transition: color var(--ease-main);
}

.railbar-app__text {
  font-size: 9px;
  color: var(--text-soft, #93b3b7);
  line-height: 12px;
  transition: color var(--ease-main);
}
.railbar-app__text span {
  font-weight: 900;
  font-size: 16px;
  color: var(--text-bright, #fff);
  line-height: 100%;
  display: block;
  margin-bottom: 5px;
  transition: color var(--ease-main);
}

@media (hover: hover) {
  .railbar__app:hover .railbar-app__text,
  .railbar__app:hover .railbar-app__text span {
    color: var(--hue-gold, #ffc72c);
  }
}
.railbar-app__img {
  max-width: 75px;
  position: absolute;
  bottom: 0;
  right: 7px;
}
.railbar-app__img img {
  display: block;
}

/* == Navigation (TOC) == */
.jumpnav {
  /* divider: a hairline that glows in the middle and fades out at both ends */
  background-image: linear-gradient(90deg, transparent 0%, rgba(255, 199, 44, 0.45) 50%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top center;
  padding-top: 11px;
}
.jumpnav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 8px;
  border-radius: var(--bend-lg, 10px);
  color: var(--hue-gold, #ffc72c);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--ease-main);
}
.jumpnav__toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--hue-gold, #ffc72c);
  border-bottom: 2px solid var(--hue-gold, #ffc72c);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}
.jumpnav__toggle.is-open::after {
  transform: rotate(-135deg);
}
@media (hover: hover) {
  .jumpnav__toggle:hover {
    background: rgba(214, 236, 236, 0.06);
  }
}
.jumpnav__list {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  scrollbar-width: none;
  transition: max-height 0.45s ease, visibility 0.45s ease, margin-top 0.45s ease;
}
.jumpnav__list::-webkit-scrollbar {
  display: none;
}
.jumpnav__list.is-open {
  max-height: 56vh;
  overflow-y: auto;
  visibility: visible;
  margin-top: 6px;
}
.jumpnav__list a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-body, #dceaea);
  transition: background var(--ease-main), color var(--ease-main);
}
@media (hover: hover) {
  .jumpnav__list a:hover {
    background: rgba(214, 236, 236, 0.07);
    color: var(--hue-gold, #ffc72c);
  }
}

/* mobile TOC below the hero */
.jumpnav--inline {
  display: none;
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.12));
  border-radius: var(--bend-lg, 10px);
  background: linear-gradient(180deg, #143c49 0%, #0c2a35 100%);
  padding: 8px 10px;
  margin-top: 20px;
}
@media (max-width: 1050px) {
  .jumpnav--inline {
    display: block;
  }
}

/* == FOOTER == */
.sitefoot {
  padding: 40px 20px 26px;
  background: linear-gradient(180deg, #0d2e3a 0%, #082630 100%);
  border-top: 1px solid var(--rule, rgba(214, 236, 236, 0.12));
}
.sitefoot__wrap {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.sitefoot {
  /* country chips */
}
.sitefoot__geo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.sitefoot__geo a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 7px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.12));
  font-size: 12.5px;
  color: var(--text-body, #dceaea);
  transition: border-color var(--ease-main), background var(--ease-main), color var(--ease-main);
}
.sitefoot__geo a span.geo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
}
@media (hover: hover) {
  .sitefoot__geo a:hover {
    border-color: rgba(255, 199, 44, 0.5);
    background: rgba(255, 199, 44, 0.08);
    color: var(--hue-gold, #ffc72c);
  }
}
.sitefoot__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 199, 44, 0.45) 50%, transparent 100%);
}
.sitefoot__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.sitefoot__links a {
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-body, #dceaea);
  transition: color var(--ease-main);
}
@media (hover: hover) {
  .sitefoot__links a:hover {
    color: var(--hue-gold, #ffc72c);
  }
}
.sitefoot__links a + a {
  border-left: 1px solid rgba(255, 199, 44, 0.4);
}
.sitefoot {
  /* payment logos */
}
.sitefoot__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.sitefoot__pay li {
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 122px;
}
.sitefoot__pay li img {
  display: block;
  max-height: 45px;
  width: auto;
}
.sitefoot__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  /* same fading hairline as .sitefoot__divider */
  background-image: linear-gradient(90deg, transparent 0%, rgba(255, 199, 44, 0.45) 50%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top center;
  padding-top: 21px;
}
@media (max-width: 650px) {
  .sitefoot__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.sitefoot__copy {
  width: 100%;
  margin: 0 0 14px;
  font-size: 12.5px;
  color: var(--text-soft, #93b3b7);
}
.sitefoot__disclaimer {
  max-width: 860px;
  font-size: 12.5px;
  color: var(--text-soft, #93b3b7);
}
.sitefoot__disclaimer b {
  display: block;
  color: var(--text-body, #dceaea);
  margin-top: 8px;
}
.sitefoot__age {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wash-gold, linear-gradient(180deg, #ffd24a 0%, #e2761a 100%));
  color: var(--text-invert, #082430);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(255, 184, 0, 0.45);
  animation: aub-age-glow 4s ease-in-out infinite;
}

@keyframes aub-age-glow {
  0%, 100% {
    box-shadow: 0 0 14px rgba(255, 184, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 26px rgba(255, 184, 0, 0.6);
  }
}
/* == SCROLL TO TOP == */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wash-cta, linear-gradient(180deg, #ffd24a 0%, #e2761a 100%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow var(--ease-main);
  box-shadow: 0 8px 20px -8px rgba(226, 118, 26, 0.7);
}
.to-top svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text-invert, #082430);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) {
  .to-top:hover {
    box-shadow: 0 12px 26px -8px rgba(226, 118, 26, 0.9);
  }
}
@media (max-width: 650px) {
  .to-top {
    bottom: 78px;
  }
}

/* == #prelink (uses shared .panel / .marks / .path / .board patterns) == */
/* == COOKIE BANNER == */
.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: var(--bend-xl, 14px);
  border: 1px solid rgba(255, 199, 44, 0.4);
  background: rgba(8, 36, 48, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}
.consent.is-visible {
  display: flex;
}
.consent {
  /* while the bar is up it must not sit on top of the last content block */
}
.consent.is-visible ~ .sitefoot, body:has(.consent.is-visible) .sitefoot {
  padding-bottom: 120px;
}
.consent p {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-body, #dceaea);
}
.consent p a {
  color: var(--hue-gold, #ffc72c);
  text-decoration: underline;
}
.consent__actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.consent__accept {
  padding: 9px 18px;
  border-radius: var(--bend-lg, 10px);
  background: var(--wash-cta, linear-gradient(180deg, #ffd24a 0%, #e2761a 100%));
  color: var(--text-invert, #082430);
  font-weight: 700;
  font-size: 13px;
  transition: filter var(--ease-main);
}
@media (hover: hover) {
  .consent__accept:hover {
    filter: brightness(1.08);
  }
}
.consent__decline {
  padding: 9px 14px;
  border-radius: var(--bend-lg, 10px);
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.25));
  color: var(--text-soft, #93b3b7);
  font-weight: 600;
  font-size: 13px;
  transition: color var(--ease-main), border-color var(--ease-main);
}
@media (hover: hover) {
  .consent__decline:hover {
    color: var(--text-bright, #fffaf0);
    border-color: var(--text-bright, #fffaf0);
  }
}
@media (max-width: 650px) {
  .consent {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .consent__actions {
    justify-content: center;
  }
}

/* == WELCOME SPLASH (created by JS on top of the visible page) == */
.aub-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 30, 40, 0.72) 0%, rgba(8, 36, 48, 0.85) 100%), var(--reef-base, #0e2f3a);
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.aub-splash.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.aub-splash__letters {
  position: relative;
  display: flex;
  gap: 0.06em;
  font-family: "Darumadrop One", "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(44px, 9vw, 110px);
  color: var(--hue-gold, #ffc72c);
  text-shadow: 0 4px 0 rgba(138, 74, 10, 0.8), 0 10px 30px rgba(0, 0, 0, 0.6);
}
.aub-splash span {
  display: inline-block;
  animation: aub-letter-fly var(--fly-dur, 1.4s) cubic-bezier(0.22, 0.85, 0.3, 1) both;
  animation-delay: var(--fly-delay, 0s);
}
.aub-splash {
  /* locale row: flag + country, fades in after the letters */
}
.aub-splash__geo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-bright, #fffaf0);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: aub-geo-reveal 0.4s ease-out 1.3s forwards;
}
.aub-splash__geo .geo-mark {
  font-size: 1.35em;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

@keyframes aub-geo-reveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* == page-transition mini loader == */
.aub-swap {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(46% 42% at 50% 50%, rgba(22, 65, 78, 0.9) 0%, rgba(8, 36, 48, 0.97) 100%), var(--reef-base, #0e2f3a);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.aub-swap.is-on {
  opacity: 1;
  pointer-events: auto;
}
.aub-swap.is-off {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.aub-swap__wheel {
  position: relative;
  width: 92px;
  height: 96px;
  filter: drop-shadow(0 8px 26px rgba(255, 199, 44, 0.35));
}
.aub-swap__wheel img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
}
.aub-swap__wheel .aub-swap__disc {
  width: 72px;
  height: 72px;
  animation: aub-wheel-spin 1.1s linear infinite;
}
.aub-swap__wheel .aub-swap__frame {
  width: 88px;
  height: 92px;
  transform: translate(-50%, -49%);
}

@keyframes aub-letter-fly {
  0% {
    transform: translate(var(--fly-x, 0), var(--fly-y, 0)) rotate(var(--fly-r, 0deg)) scale(1.6);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
/* content blocks */
/* == HERO (#lead-in) == */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px 0 0;
  padding: 0;
  border-radius: var(--bend-xl, 14px);
  background: #071f29;
  /* scrim over the background image */
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(91deg, rgba(6, 30, 40, 0.85) 0%, rgba(6, 30, 40, 0.45) 45%, transparent 72%);
  pointer-events: none;
}
.hero .layer {
  z-index: 0;
  /* the character stands on the right of the frame — stays in view as the viewport narrows */
}
.hero .layer img,
.hero .layer video,
.hero .layer .mock {
  object-position: 90% top;
}
.hero__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 840px;
  width: 100%;
  margin-right: auto;
  padding: 34px 30px;
  border-radius: 10px;
}
@media (max-width: 850px) {
  .hero__wrap {
    background: rgba(8, 36, 48, 0.7);
    backdrop-filter: blur(2px);
    /* stretch respects margins — equal offsets on the left and right */
    width: auto;
    align-self: stretch;
    margin: 20px;
    padding: 24px 20px;
  }
}
@media (max-width: 650px) {
  .hero__wrap {
    align-items: center;
    text-align: center;
    margin: 15px;
  }
}
.hero__rating {
  font-size: 14px;
  color: var(--text-soft, #93b3b7);
}
.hero__rating b {
  color: var(--hue-gold, #ffc72c);
  font-size: 22px;
  font-weight: 800;
  margin-left: 6px;
}
.hero__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: auto;
  font-size: 13px;
  color: var(--text-soft, #93b3b7);
}
.hero__breadcrumbs a {
  color: var(--hue-gold, #ffc72c);
  transition: color var(--ease-main);
}
@media (hover: hover) {
  .hero__breadcrumbs a:hover {
    color: var(--text-bright, #fffaf0);
  }
}
.hero__breadcrumbs li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--text-soft, #93b3b7);
}
.hero h1 {
  margin-top: 14px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-bright, #fffaf0);
}
@media (max-width: 850px) {
  .hero h1 {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .hero h1 {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .hero h1 {
    font-size: 24px;
  }
}
.hero__text {
  margin-top: 12px;
  max-width: 620px;
  font-size: 14px;
  color: var(--text-body, #dceaea);
}
@media (max-width: 767px) {
  .hero {
    min-height: 420px;
  }
}

/* == #crumbs (uses shared .panel / .marks / .path / .board patterns) == */
/* == BONUS BANNER: framed card over a background image == */
.strip {
  justify-content: center;
  align-items: flex-start;
  min-height: 425px;
  padding: 20px 20px 20px 6.2%;
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.12));
}
.strip__bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.strip__bg img,
.strip__bg .mock {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  margin: 0;
}
@media (max-width: 850px) {
  .strip__bg img,
  .strip__bg .mock {
    object-position: 95%;
  }
}
.strip__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid rgba(255, 199, 44, 0.6);
  border-radius: 12px;
  padding: 32px 20px;
  max-width: 653px;
  width: 100%;
}
.strip__title {
  display: block;
  color: var(--hue-gold, #ffc72c);
  font-weight: 700;
  font-size: 31px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 850px) {
  .strip__title {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .strip__title {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .strip__title {
    font-size: 22px;
  }
}
.strip__text {
  position: relative;
  width: auto;
  margin-top: 20px;
  padding: 8px 131px;
  color: var(--text-bright, #fffaf0);
  font-weight: 900;
  font-size: 20px;
  line-height: 115%;
  text-transform: uppercase;
}
.strip__text::before, .strip__text::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 39px;
  width: 116px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.strip__text::before {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='9' height='9' transform='matrix(1 0 0 -1 0 24)' fill='%23FFC72C'/%3E%3Crect x='2.12132' width='23.9973' height='23.9973' transform='matrix(0.707107 0.707107 0.707107 -0.707107 78.0313 18)' stroke='%23FFC72C' stroke-width='3'/%3E%3Crect x='0.707107' width='13.9977' height='13.9977' transform='matrix(0.707107 0.707107 0.707107 -0.707107 70.5471 19)' stroke='%23FFFAF0'/%3E%3Crect width='81' height='1' transform='matrix(1 0 0 -1 9 20)' fill='%23FFFAF0'/%3E%3C/svg%3E%0A");
  left: 0;
}
.strip__text::after {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='116' y='24' width='9' height='9' transform='rotate(180 116 24)' fill='%23FFC72C'/%3E%3Crect x='36.4686' y='19.5' width='23.9973' height='23.9973' transform='rotate(135 36.4686 19.5)' stroke='%23FFC72C' stroke-width='3'/%3E%3Crect x='44.9529' y='19.5' width='13.9977' height='13.9977' transform='rotate(135 44.9529 19.5)' stroke='%23FFFAF0'/%3E%3Crect x='107' y='20' width='81' height='1' transform='rotate(180 107 20)' fill='%23FFFAF0'/%3E%3C/svg%3E%0A");
  right: 0;
}
@media (max-width: 650px) {
  .strip__text {
    font-size: 18px;
    padding: 8px 0;
  }
  .strip__text::before, .strip__text::after {
    display: none;
  }
}
.strip__button {
  min-width: 153px;
  margin-top: 20px;
}
@media (max-width: 850px) {
  .strip {
    min-height: 300px;
    padding: 20px;
    align-items: center;
  }
  .strip__wrap {
    background-color: rgba(16, 52, 64, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 199, 44, 0.6);
    border-radius: 6px;
    padding: 15px;
  }
}

/* == BOARD: deep-teal table panel, ochre header pill, hairline rows == */
.panel div:has(> table),
.panel .board {
  width: 100%;
  margin-top: 20px;
  padding: 12px 12px 0;
  border-radius: var(--bend-xl, 22px);
  border: 1px solid var(--rule-lit, rgba(255, 199, 44, 0.42));
  background: rgba(8, 36, 48, 0.55);
  font-size: 15px;
  color: var(--text-body, #dceaea);
  overflow-x: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #c8541b rgba(214, 236, 236, 0.14);
}
.panel div:has(> table)::-webkit-scrollbar,
.panel .board::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.panel div:has(> table)::-webkit-scrollbar-track,
.panel .board::-webkit-scrollbar-track {
  background: rgba(214, 236, 236, 0.1);
  border-radius: 6px;
}
.panel div:has(> table)::-webkit-scrollbar-thumb,
.panel .board::-webkit-scrollbar-thumb {
  background: var(--wash-head, linear-gradient(120deg, #c8541b 0%, #8f3410 100%));
  border-radius: 6px;
}
.panel div:has(> table) > table,
.panel .board > table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
.panel div:has(> table) > table thead tr,
.panel .board > table thead tr {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--wash-head, linear-gradient(120deg, #c8541b 0%, #8f3410 100%));
}
.panel div:has(> table) > table tbody tr,
.panel .board > table tbody tr {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 0 14px;
  border-bottom: 1px solid var(--rule, rgba(214, 236, 236, 0.14));
}
.panel div:has(> table) > table tbody tr:last-child,
.panel .board > table tbody tr:last-child {
  border-bottom: 0;
}
.panel div:has(> table) > table,
.panel .board > table {
  /* zebra: keeps long rows readable without heavy separators */
}
.panel div:has(> table) > table tbody tr:nth-child(even),
.panel .board > table tbody tr:nth-child(even) {
  background: rgba(255, 199, 44, 0.05);
}
.panel div:has(> table) > table th,
.panel div:has(> table) > table td,
.panel .board > table th,
.panel .board > table td {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 16px 16px 0;
  text-align: left;
}
.panel div:has(> table) > table th:last-child,
.panel div:has(> table) > table td:last-child,
.panel .board > table th:last-child,
.panel .board > table td:last-child {
  padding-right: 0;
}
.panel div:has(> table) > table thead th,
.panel .board > table thead th {
  color: var(--text-bright, #fffaf0);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.panel div:has(> table) > table tbody td,
.panel .board > table tbody td {
  color: var(--text-body, #dceaea);
  font-weight: 400;
  line-height: 1.55;
}
.panel div:has(> table) > table,
.panel .board > table {
  /* first column carries the row label — heavier, gold */
}
.panel div:has(> table) > table tbody td:first-child,
.panel .board > table tbody td:first-child {
  color: var(--hue-gold, #ffc72c);
  font-weight: 700;
}
.panel div:has(> table) > table td a,
.panel .board > table td a {
  color: var(--hue-gold, #ffc72c);
  text-decoration: underline;
}
.panel {
  /* a table paired with a photo starts flush with it — no leading gap */
}
.panel .split > .board {
  margin-top: 0;
}
.panel {
  /* key/value tables: same table look, only the first column is a fixed label rail */
}
.panel .board--kv > table {
  min-width: 520px;
  /* the header cell keeps the same rail width, so both columns line up */
}
.panel .board--kv > table thead th:first-child,
.panel .board--kv > table th[scope=row] {
  flex: 0 0 220px;
  width: 220px;
}
.panel .board--kv > table th[scope=row] {
  color: var(--hue-gold, #ffc72c);
  font-weight: 700;
  line-height: 1.55;
  padding: 16px 16px 16px 0;
  text-align: left;
}
.panel .board--kv > table td {
  color: var(--text-body, #dceaea);
  font-weight: 400;
}
.panel .board--kv > table {
  /* inside a .split the column is half as wide, so the rail shrinks with it */
}
.split .panel .board--kv > table thead th:first-child,
.split .panel .board--kv > table th[scope=row] {
  flex: 0 0 170px;
  width: 170px;
}
.panel .board--kv > table {
  /* on a phone the label sits above its value — no sideways scrolling */
}
@media (max-width: 650px) {
  .panel .board--kv > table {
    min-width: 0;
  }
  .panel .board--kv > table thead tr {
    display: none;
  }
  .panel .board--kv > table tbody tr {
    flex-direction: column;
    align-items: stretch;
    padding: 4px 14px;
  }
  .panel .board--kv > table th[scope=row] {
    flex: none;
    width: auto;
    padding: 12px 0 2px;
  }
  .panel .board--kv > table td {
    padding: 0 0 12px;
  }
}

/* == PATH: numbered steps as a centred card grid, optionally laid over a photo == */
.path {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-top: 14px;
  position: relative;
  counter-reset: bca-step;
}
.path > li {
  counter-increment: bca-step;
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  border-radius: var(--bend-lg, 12px);
  border: 1px solid var(--rule-lit, rgba(255, 199, 44, 0.42));
  background: linear-gradient(135deg, rgba(200, 84, 27, 0.94) 0%, rgba(143, 52, 16, 0.94) 100%);
  backdrop-filter: blur(4px);
  /* numbered badge */
}
.path > li::before {
  content: counter(bca-step);
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  background: var(--sand, #f7efe0);
  color: var(--text-invert, #0b2530);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}
.path > li {
  /* the class-less wrapper keeps a leading <b> inside the text column */
}
.path > li > div {
  flex: 1 1 0;
  min-width: 0;
  color: var(--text-bright, #fffaf0);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}
.path > li b,
.path > li strong {
  color: var(--hue-sun, #ffe08a);
}
@media (max-width: 850px) {
  .path > li {
    flex: 1 1 100%;
    max-width: none;
  }
}
.path {
  /* exactly four steps read better as 2 x 2 than as 3 + 1 */
}
.path > li:first-child:nth-last-child(4),
.path > li:first-child:nth-last-child(4) ~ li {
  flex: 1 1 calc(50% - 5px);
  max-width: calc(50% - 5px);
}
@media (max-width: 850px) {
  .path > li:first-child:nth-last-child(4),
  .path > li:first-child:nth-last-child(4) ~ li {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* photo bed: the cards sit on the lower part of an illustration */
.steps-field {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding: 240px 12px 12px;
  border-radius: var(--bend-xl, 22px);
  border: 1px solid var(--rule, rgba(214, 236, 236, 0.14));
  overflow: hidden;
}
.steps-field > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 !important;
}
.steps-field {
  /* scrim so the cards keep their contrast over a bright photo */
}
.steps-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 36, 48, 0) 30%, rgba(8, 36, 48, 0.75) 100%);
}
.steps-field > .path {
  position: relative;
  z-index: 1;
  margin-top: 0;
}
@media (max-width: 850px) {
  .steps-field {
    padding: 160px 10px 10px;
  }
}
@media (max-width: 650px) {
  .steps-field {
    padding: 12px;
  }
  .steps-field > img {
    position: relative;
    inset: auto;
    height: 200px !important;
    margin-bottom: 12px;
    border-radius: var(--bend-lg, 12px) !important;
  }
  .steps-field::after {
    display: none;
  }
}

/* == #snapshot (uses shared .panel / .marks / .path / .board patterns) == */
/* == #info (uses shared .panel / .marks / .path / .board patterns) == */
/* == #legal (uses shared .panel / .marks / .path / .board patterns) == */
/* == #technical (uses shared .panel / .marks / .path / .board patterns) == */
/* == #highlights (uses shared .panel / .marks / .path / .board patterns) == */
/* == PROS / CONS (#balance) — one panel, two flush header bars == */
/* the header strip keeps drifting: the gradient is twice as wide as the bar
   and starts/ends on the same colour, so the loop has no visible seam */
@keyframes bca-bar-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.balance__panel {
  display: flex;
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--bend-xl, 22px);
  border: 1px solid var(--rule-lit, rgba(255, 199, 44, 0.42));
  background: rgba(8, 36, 48, 0.55);
}
.balance__panel > div {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.balance__panel h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  margin: 0;
  padding: 12px 16px;
  color: var(--text-bright, #fffaf0);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
  background-size: 200% 100%;
  animation: bca-bar-flow 7s linear infinite;
  /* the icon is a mask filled with the same travelling gradient as the bar,
     so the light sweeps through the glyph together with its background */
}
.balance__panel h3::before {
  position: static;
  transform: none;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: linear-gradient(110deg, #fffaf0 0%, #ffe9b0 22%, #ffffff 50%, #ffe9b0 78%, #fffaf0 100%);
  background-size: 200% 100%;
  animation: bca-bar-flow 7s linear infinite;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.balance__panel {
  /* the two bars read as one strip: the green one overlaps the ochre one and its
     right edge is torn into chunks, so no straight divider shows between them */
}
.balance__panel > div:first-child h3 {
  border-radius: 14px 0 0 14px;
  background-image: linear-gradient(110deg, #2fbf74 0%, #0a6b45 25%, #38d585 50%, #0a6b45 75%, #2fbf74 100%);
  /* the bar reaches 22px into the next column, so the ochre one shows through the tears */
  width: calc(100% + 22px);
  margin-right: -22px;
  /* the box grew 22px to the right — the same padding brings the label back to centre */
  padding-right: 38px;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 5px) 0, calc(100% - 20px) 8%, calc(100% - 6px) 16%, calc(100% - 17px) 25%, calc(100% - 2px) 33%, calc(100% - 15px) 42%, calc(100% - 4px) 50%, calc(100% - 19px) 59%, calc(100% - 3px) 67%, calc(100% - 14px) 76%, calc(100% - 7px) 84%, calc(100% - 20px) 92%, calc(100% - 9px) 100%, 0 100%);
}
.balance__panel > div:first-child h3::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M1%2021h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17%201%207.59%207.59C7.22%207.95%207%208.45%207%209v10c0%201.1.9%202%202%202h9c.83%200%201.54-.5%201.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M1%2021h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17%201%207.59%207.59C7.22%207.95%207%208.45%207%209v10c0%201.1.9%202%202%202h9c.83%200%201.54-.5%201.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z'/%3E%3C/svg%3E");
}
.balance__panel > div:last-child h3::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M15%203H6c-.83%200-1.54.5-1.84%201.22l-3.02%207.05c-.09.23-.14.47-.14.73v2c0%201.1.9%202%202%202h6.31l-.95%204.57-.3.32c0%20.41.17.79.44%201.06L9.83%2023l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4%200v12h4V3h-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M15%203H6c-.83%200-1.54.5-1.84%201.22l-3.02%207.05c-.09.23-.14.47-.14.73v2c0%201.1.9%202%202%202h6.31l-.95%204.57-.3.32c0%20.41.17.79.44%201.06L9.83%2023l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4%200v12h4V3h-4z'/%3E%3C/svg%3E");
}
.balance__panel > div:last-child h3 {
  border-radius: 0 14px 14px 0;
  background-image: linear-gradient(110deg, #e2761a 0%, #96340f 25%, #ff9a3d 50%, #96340f 75%, #e2761a 100%);
  padding-left: 38px;
}
.balance__panel ul {
  padding: 0 14px;
}
.balance__panel li {
  padding: 16px 8px;
  color: var(--text-body, #dceaea);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  border-bottom: 1px solid var(--rule, rgba(214, 236, 236, 0.14));
}
.balance__panel li:last-child {
  border-bottom: 0;
}
@media (max-width: 850px) {
  .balance__panel {
    flex-direction: column;
    gap: 12px;
    /* stacked: no seam to hide, so both bars go back to plain rounded blocks */
  }
  .balance__panel > div:first-child h3,
  .balance__panel > div:last-child h3 {
    border-radius: 14px;
    width: 100%;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
    clip-path: none;
  }
}
@media (max-width: 450px) {
  .balance__panel {
    padding: 8px;
  }
  .balance__panel h3 {
    font-size: 16px;
    min-height: 48px;
  }
  .balance__panel li {
    padding: 12px 4px;
  }
}

/* == #signup — registration flow; the verification photo sits flush with the card == */
.signup .pair > div:last-child {
  min-height: 320px;
}
.signup .pair > div:last-child .mock,
.signup .pair > div:last-child img:not(:where(.icon, .brandmark)) {
  object-position: center;
}
@media (max-width: 850px) {
  .signup .pair > div:last-child {
    min-height: 260px;
  }
}

/* == #fixes (uses shared .panel / .marks / .path / .board patterns) == */
/* == #mobileapp == */
.mobileapp .pair > div:last-child .mock,
.mobileapp .pair > div:last-child img:not(:where(.icon, .brandmark)) {
  object-position: center;
}

/* app page: full-bleed background photo, text card on the left (like #loyalty) */
.view-app .mobileapp {
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-lg, 10px);
  padding: 60px;
}
.view-app .mobileapp > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(22, 65, 78, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.view-app .mobileapp > div:not(.layer) > h2 {
  align-self: stretch;
}
@media (max-width: 850px) {
  .view-app .mobileapp {
    padding: 40px 20px;
  }
  .view-app .mobileapp > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .view-app .mobileapp {
    padding: 20px 12px;
  }
  .view-app .mobileapp > div:not(.layer) {
    padding: 15px;
  }
}

/* == APP PROMO BLOCK == */
.panel.app-strip {
  height: 350px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 199, 44, 0.3);
}
@media (max-width: 850px) {
  .panel.app-strip {
    height: auto;
    min-height: 280px;
    padding: 40px 20px;
  }
}
@media (max-width: 450px) {
  .panel.app-strip {
    padding: 30px 10px;
  }
}

.app-strip__bg {
  z-index: 0;
}
.app-strip__bg img,
.app-strip__bg .mock {
  object-position: center;
}
.app-strip__bg {
  /* darkening only in the center — edges stay clear for the characters */
}
.app-strip__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 72% at 50% 50%, rgba(8, 36, 48, 0.72) 0%, rgba(8, 36, 48, 0.38) 62%, rgba(8, 36, 48, 0) 100%);
}
.app-strip__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 15vw, 320px);
  width: 100%;
}
@media (max-width: 850px) {
  .app-strip__actions {
    flex-direction: column;
    gap: 18px;
  }
}
.app-strip__button {
  white-space: normal;
  line-height: 1.2;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 268px;
  min-width: 0;
  max-width: 100%;
  height: 56px;
  min-height: 0;
  padding: 12px 24px;
  margin: 0;
}
.app-strip__button svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

/* == #offers (uses shared .panel / .marks / .path / .board patterns) == */
/* == #loyalty (home page) — full-bleed background photo, text in a framed card on top;
   on the bonus page the block keeps its standard look == */
.view-home .loyalty {
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-lg, 10px);
  padding: 60px;
}
.view-home .loyalty > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(22, 65, 78, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.view-home .loyalty > div:not(.layer) > h2 {
  align-self: stretch;
}
.view-home .loyalty > div:not(.layer) > .cta-lead__button {
  margin-top: 20px;
}
@media (max-width: 850px) {
  .view-home .loyalty {
    padding: 40px 20px;
  }
  .view-home .loyalty > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .view-home .loyalty {
    padding: 20px 12px;
  }
  .view-home .loyalty > div:not(.layer) {
    padding: 15px;
  }
}

/* == #races (uses shared .panel / .marks / .path / .board patterns) == */
/* == #pokies (uses shared .panel / .marks / .path / .board patterns) == */
/* == #tabletop (uses shared .panel / .marks / .path / .board patterns) == */
/* the rules column is twice as wide as its neighbors so rows don't stretch */
.tabletop .board > table tr > *:nth-child(2) {
  flex: 2;
}

/* == #livedealer — full-bleed background photo, text in a framed card on top (like #loyalty) == */
.livedealer {
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-lg, 10px);
  padding: 60px;
}
.livedealer > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(22, 65, 78, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.livedealer > div:not(.layer) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .livedealer {
    padding: 40px 20px;
  }
  .livedealer > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .livedealer {
    padding: 20px 12px;
  }
  .livedealer > div:not(.layer) {
    padding: 15px;
  }
}

/* == #legalinfo — full-bleed background photo, text card on the left == */
.legalinfo {
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-lg, 10px);
  padding: 60px;
}
.legalinfo > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(22, 65, 78, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.legalinfo > div:not(.layer) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .legalinfo {
    padding: 40px 20px;
  }
  .legalinfo > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .legalinfo {
    padding: 20px 12px;
  }
  .legalinfo > div:not(.layer) {
    padding: 15px;
  }
}

/* == #restrict (uses shared .panel / .marks / .path / .board patterns) == */
/* == #banking (uses shared .panel / .marks / .path / .board patterns) == */
/* == #helpdesk (uses shared .panel / .marks / .path / .board patterns) == */
/* == FAQ ACCORDION == */
.qa__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.qa__item {
  border: 1px solid var(--hue-gold, #ffc72c);
  border-radius: var(--bend-xl, 14px);
  overflow: hidden;
  background: var(--reef-panel, #16414e);
  transition: border-color var(--ease-main);
}
.qa__item:has(.qa-item__title.active) {
  border-color: transparent;
}

.qa-item__title {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 46px 14px 16px;
  background: var(--reef-core, #0e2f3a);
  color: var(--text-bright, #fffaf0);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  text-transform: none;
  transition: filter var(--ease-main);
}
.qa-item__title::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  border-right: 2px solid var(--text-bright, #fffaf0);
  border-bottom: 2px solid var(--text-bright, #fffaf0);
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-top 0.3s ease;
}
.qa-item__title.active::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}
@media (hover: hover) {
  .qa-item__title:hover {
    filter: brightness(1.05);
  }
}
@media (max-width: 850px) {
  .qa-item__title {
    font-size: 14px;
  }
}

.qa-item__desc {
  border-top: 1px solid var(--hue-gold, #ffc72c);
  padding: 0 16px;
}
.qa-item__desc p {
  padding: 14px 0;
  margin: 0;
}

/* == REVIEWS CAROUSEL == */
.voices__carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 14px;
}

.voices__track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* reviewer avatar circle: holds initials while there is no photo;
   once a photo exists, just drop an <img> inside */
.voices__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #16414e 0%, #0c2a35 100%);
  border: 2px solid rgba(255, 199, 44, 0.6);
  box-shadow: 0 0 14px rgba(255, 199, 44, 0.25);
  color: var(--hue-gold, #ffc72c);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.voices__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.voices__card {
  flex: none;
  width: 416px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--bend-xl, 14px);
  border: 1px solid rgba(255, 199, 44, 0.35);
  background: linear-gradient(180deg, rgba(22, 65, 78, 0.9) 0%, rgba(14, 50, 62, 0.9) 100%);
  box-shadow: 0 8px 24px -12px rgba(255, 199, 44, 0.25);
}
@media (max-width: 767px) {
  .voices__card {
    width: 320px;
  }
}
@media (max-width: 450px) {
  .voices__card {
    width: 260px;
  }
}
.voices__card .rate {
  display: flex;
  gap: 4px;
  width: auto;
}
.voices__card .rate svg {
  width: 18px;
  height: 18px;
  fill: var(--hue-gold, #ffc72c);
}
.voices__card .rate svg.is-off {
  fill: rgba(214, 236, 236, 0.25);
}
.voices__card h3 {
  margin: 0;
  padding: 0;
  background: none;
  color: var(--hue-gold, #ffc72c);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.voices__card h3::before {
  display: none;
}
.voices__card p {
  margin: 0;
  font-size: 13.5px;
  text-align: center;
  color: var(--text-body, #dceaea);
}

.voices__nav {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.voices__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-bright, #fffaf0);
  transition: transform var(--ease-main), box-shadow var(--ease-main);
}
.voices__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text-invert, #082430);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) {
  .voices__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -8px rgba(255, 250, 240, 0.6);
  }
}

/* == #scorecard — editorial score table == */
.scorecard table tbody td:nth-child(2) {
  white-space: nowrap;
  font-weight: 800;
  color: var(--hue-gold, #ffc72c);
}

/* narrow first two columns — all remaining width goes to the verdict text */
.scorecard .board tr > *:nth-child(1) {
  flex: 0 0 160px;
}

.scorecard .board tr > *:nth-child(2) {
  flex: 0 0 110px;
}

.scorecard .board tr > *:nth-child(3) {
  flex: 1 1 auto;
}

/* == EXPERT VERDICT (#expert): small photo on the left, byline + text + button on the right == */
.wrapup__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  /* top spacing comes from the h2's margin-bottom */
  margin-top: 0;
}

.wrapup__photo {
  flex: 0 0 150px;
}
.wrapup__photo img,
.wrapup__photo .mock {
  width: 150px;
  height: 150px !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--bend-lg, 10px);
  margin: 0;
}

.wrapup__body {
  flex: 1 1 0;
  min-width: 0;
}
.wrapup__body h3 {
  margin-top: 0;
}
.wrapup__body p + p {
  margin-top: 20px;
}
.wrapup__body .cta-lead__button {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .wrapup__row {
    flex-direction: column;
    align-items: center;
  }
  .wrapup__photo {
    flex: 0 0 auto;
  }
  .wrapup__body {
    width: 100%;
    text-align: center;
  }
  .wrapup__body h3 {
    padding: 0;
  }
  .wrapup__body h3::before {
    display: none;
  }
  .wrapup__body .cta-lead__button {
    margin-left: auto;
    margin-right: auto;
  }
}
/* == #lead — full-bleed background photo, text in a framed card on top (like #loyalty) == */
.lead {
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-lg, 10px);
  padding: 60px;
}
.lead > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(22, 65, 78, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.lead > div:not(.layer) > h2 {
  align-self: stretch;
}
@media (max-width: 850px) {
  .lead {
    padding: 40px 20px;
  }
  .lead > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .lead {
    padding: 20px 12px;
  }
  .lead > div:not(.layer) {
    padding: 15px;
  }
}

/* == #firstbonus (uses shared .panel / .marks / .path / .board patterns) == */
/* == #weeklyreload (uses shared .panel / .marks / .path / .board patterns) == */
/* == #freespins (free spins) == */
.freespins .pair > div:last-child .mock,
.freespins .pair > div:last-child img:not(:where(.icon, .brandmark)) {
  object-position: center;
}

/* == #rebate (uses shared .panel / .marks / .path / .board patterns) == */
/* == #limited (uses shared .panel / .marks / .path / .board patterns) == */
/* == #saferplay (app page) — full-bleed background photo, text card on the right (like #loyalty);
   on the bonus page the block keeps its standard look == */
.view-app .saferplay {
  position: relative;
  overflow: hidden;
  border-radius: var(--bend-lg, 10px);
  padding: 60px;
}
.view-app .saferplay > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(22, 65, 78, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.view-app .saferplay > div:not(.layer) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .view-app .saferplay {
    padding: 40px 20px;
  }
  .view-app .saferplay > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .view-app .saferplay {
    padding: 20px 12px;
  }
  .view-app .saferplay > div:not(.layer) {
    padding: 15px;
  }
}

/* == #claim (uses shared .panel / .marks / .path / .board patterns) == */
/* == #setup — platform steps beside the screenshot column == */
.setup .pair > div:last-child {
  min-height: 300px;
}
.setup .pair > div:last-child .mock,
.setup .pair > div:last-child img:not(:where(.icon, .brandmark)) {
  object-position: center;
}
@media (max-width: 850px) {
  .setup .pair > div:last-child {
    min-height: 240px;
  }
}

/* the store button under each platform block keeps its fixed size */
.setup > .cta-store__button {
  align-self: flex-start;
}

/* == #perks (uses shared .panel / .marks / .path / .board patterns) == */
/* == #specs (uses shared .panel / .marks / .path / .board patterns) == */
/* == #devices (uses shared .panel / .marks / .path / .board patterns) == */
/* == #mobilesite (mobile web version — text-only section, no photo) == */
/* == 404 PAGE == */
.panel.missing {
  min-height: 560px;
  padding: clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 80px);
  text-align: center;
}
.panel.missing::before {
  content: "";
  position: absolute;
  inset: auto 4% 0 auto;
  width: min(42vw, 520px);
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 200, 160, 0.2), transparent 68%);
  pointer-events: none;
}

.missing__copy {
  flex: 1 1 620px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.missing__copy p {
  max-width: 620px;
}
.missing__character {
  position: relative;
  flex: 0 1 390px;
  align-self: stretch;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.missing__speech {
  position: absolute;
  /* anchored to the container bottom: the owl is 470px tall and stands on the floor,
     so the bubble always sits by its head */
  top: auto;
  bottom: 445px;
  left: 0;
  z-index: 2;
  width: max-content;
  max-width: 240px;
  margin: 0;
  padding: 13px 20px;
  border: 2px solid var(--hue-gold, #ffc72c);
  border-radius: 22px;
  background: var(--text-bright, #fffaf0);
  color: var(--text-invert, #082430);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(-3deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.missing__speech strong {
  color: #0d7a4e;
}
.missing__speech::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -15px;
  width: 25px;
  height: 25px;
  background: var(--text-bright, #fffaf0);
  border-right: 2px solid var(--hue-gold, #ffc72c);
  border-bottom: 2px solid var(--hue-gold, #ffc72c);
  transform: skew(18deg) rotate(38deg);
}
.panel .missing__owl, .missing__owl {
  width: min(100%, 360px);
  height: 470px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42));
}

@media (max-width: 767px) {
  .panel.missing {
    min-height: 0;
    flex-direction: column;
    gap: 12px;
  }
  .missing {
    /* the __copy children become direct flex items of the section,
       so the button can be placed BELOW the character */
  }
  .missing__copy {
    display: contents;
  }
  .missing__copy h2 {
    order: 1;
  }
  .missing__copy p {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .missing__character {
    order: 3;
    width: 100%;
    min-height: 350px;
    align-self: auto;
  }
  .missing__copy .cta-lead__button {
    order: 4;
  }
  .missing__speech {
    /* mobile owl is 350px tall — the anchor is lowered accordingly */
    top: auto;
    bottom: 330px;
    left: 50%;
    transform: translateX(-85%) rotate(-3deg);
    font-size: 16px;
  }
  .panel .missing__owl, .missing__owl {
    width: min(100%, 280px);
    height: 350px;
  }
}
@media (max-width: 450px) {
  .missing__speech {
    left: 8px;
    transform: rotate(-3deg);
  }
}
/* == TICKET TICKET == */
/* dock: arrow tab at the viewport edge + ticket that slides out */
.ticket-dock {
  /* ticket width incl. gaps — how far the dock hides past the edge */
  --shift: 118px;
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 45;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  translate: var(--shift) 0;
  transition: translate 0.45s cubic-bezier(0.3, 1.25, 0.4, 1);
}
.ticket-dock.is-open {
  translate: 0 0;
}

.ticket-dock__toggle {
  flex: 0 0 auto;
  width: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: var(--wash-gold, linear-gradient(180deg, #ffd24a 0%, #e2761a 100%));
  color: #082430;
  cursor: pointer;
  box-shadow: -4px 0 14px rgba(255, 199, 44, 0.35);
}
.ticket-dock__toggle svg {
  fill: none;
  transition: transform 0.3s ease;
  animation: aub-arrow-nudge 1.5s ease-in-out infinite;
}
@media (hover: hover) {
  .ticket-dock__toggle:hover {
    filter: brightness(1.08);
  }
}

.ticket-dock.is-open .ticket-dock__toggle svg {
  transform: rotate(180deg);
  animation: none;
}

@keyframes aub-arrow-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}
.ticket-launcher {
  position: relative;
  flex: 0 0 auto;
  width: 100px;
  aspect-ratio: 16/9;
  margin: 0 10px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.48));
  cursor: pointer;
  isolation: isolate;
  animation: aub-ticket-float 3.2s ease-in-out infinite;
}
.ticket-launcher img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ticket-launcher span {
  position: absolute;
  inset: 30% 20% 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  color: #ffe08a;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}
@media (hover: hover) {
  .ticket-launcher:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 12px 24px rgba(255, 199, 44, 0.42));
    transform: rotate(1deg) scale(1.06);
  }
}

@keyframes aub-ticket-float {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}
.ticket {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 28, 38, 0.78);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ticket.is-on {
  opacity: 1;
}

.ticket__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(94vw, 760px);
  padding: 62px 88px 48px;
  background: url("../images/scratch-ticket.webp") center/100% 100% no-repeat;
  text-align: center;
  transform: rotate(-3deg);
  /* the glow follows the ticket outline (drop-shadow respects transparency) */
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(255, 199, 44, 0.35));
  animation: aub-ticket-glow 2.6s ease-in-out infinite;
}

@keyframes aub-ticket-glow {
  0%, 100% {
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 16px rgba(255, 199, 44, 0.3));
  }
  50% {
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 36px rgba(255, 199, 44, 0.6));
  }
}
.ticket__brand {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a4c5b;
  margin: 0 0 6px;
}

.ticket__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #1a4c5b;
  margin-top: 14px;
}

.ticket__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 36, 48, 0.7);
  color: var(--text-soft, #93b3b7);
  font-size: 22px;
  line-height: 1;
  transition: color var(--ease-main), background var(--ease-main);
}
@media (hover: hover) {
  .ticket__close:hover {
    color: var(--text-bright, #fffaf0);
    background: rgb(8, 36, 48);
  }
}

.ticket__title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f3241;
  margin: 0;
}

.ticket__sub {
  font-size: 13px;
  color: #1d5665;
  margin-top: 4px;
}

.ticket__zone {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  margin-top: 16px;
  border-radius: var(--bend-lg, 10px);
  overflow: hidden;
}

.ticket__prize {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: radial-gradient(60% 80% at 50% 0%, rgba(255, 199, 44, 0.15) 0%, transparent 100%), var(--reef-deep, #082430);
  color: var(--text-bright, #fffaf0);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.ticket__prize b {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--hue-gold, #ffc72c);
}
.ticket__prize span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body, #dceaea);
}

.ticket__foil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: none;
  transition: opacity 0.6s ease;
}
.ticket__foil.is-cleared {
  opacity: 0;
  pointer-events: none;
}

/* coin "eraser" — follows the pointer over the foil */
.ticket__coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45%;
  background: linear-gradient(90deg, #7a3f0d 0%, #c07316 12%, #ffe08a 42%, #a35a12 70%, #6b3a10 100%);
  border: 2px solid #663710;
  box-shadow: inset 3px 0 4px rgba(255, 255, 255, 0.55), inset -3px 0 4px rgba(78, 38, 0, 0.55), 5px 8px 12px rgba(0, 0, 0, 0.48);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-18deg);
  transition: opacity 0.15s ease;
  z-index: 2;
}
.ticket__coin.is-visible {
  opacity: 1;
}
.ticket__coin.is-rubbing {
  animation: aub-coin-rub 0.35s ease-in-out infinite;
}

/* winner stamp over the ticket */
.ticket__win {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  padding: 8px 22px;
  border: 3px solid var(--hue-gold, #ffc72c);
  border-radius: 10px;
  background: rgba(8, 36, 48, 0.78);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(20px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--hue-gold, #ffc72c);
  text-shadow: 0 2px 0 rgba(124, 74, 0, 0.8), 0 6px 18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-7deg) scale(2.4);
}

.ticket__card.is-won .ticket__win {
  animation: aub-win-stamp 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) 0.25s forwards;
}

@keyframes aub-win-stamp {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-7deg) scale(2.4);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-7deg) scale(1);
  }
}
/* shavings thrown off while the foil is rubbed away */
.ticket__flake {
  position: absolute;
  z-index: 1;
  border-radius: 2px;
  background: linear-gradient(135deg, #ffe08a 0%, #ffc72c 55%, #c8541b 100%);
  box-shadow: 0 0 4px rgba(255, 199, 44, 0.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: aub-flake-fall var(--dur, 0.7s) ease-in forwards;
}

@keyframes aub-flake-fall {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--fx, 0px)), calc(-50% + var(--fy, 60px))) rotate(var(--rot, 180deg));
  }
}
@keyframes aub-coin-rub {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-25deg) scale(0.96);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
}
/* CTA stays locked and dimmed until the prize is uncovered */
.ticket__cta.cta-lead__button {
  margin-top: 20px;
  opacity: 0.45;
  filter: saturate(0.5);
  pointer-events: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.ticket__card.is-won .ticket__cta.cta-lead__button {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}
.ticket__card.is-won .ticket__prize b {
  animation: aub-prize-pop 0.6s ease;
}

@keyframes aub-prize-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 450px) {
  .ticket-dock {
    --shift: 92px;
    top: auto;
    bottom: 150px;
    transform: none;
  }
  .ticket-dock__toggle {
    width: 26px;
    height: 50px;
  }
  .ticket-launcher {
    width: 78px;
    margin: 0 6px;
  }
  .ticket-launcher span {
    font-size: 7px;
  }
  .ticket {
    padding: 10px;
  }
  .ticket__card {
    padding: 34px 20px 26px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    transform: rotate(-2deg);
  }
  .ticket__prize b {
    font-size: 36px;
  }
  .ticket__prize {
    font-size: 15px;
  }
}
/* == ACCESSIBILITY == */
:focus-visible {
  outline: 2px solid var(--hue-gold, #ffc72c);
  outline-offset: 2px;
}

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