/* ============================================================
   TonyOddz — styles.css
   Mobile-first | Unbounded font | Dark premium gaming theme
   ============================================================ */

/* ------------------------------------------------------------
   1. FONT FACE
   ------------------------------------------------------------ */

@font-face {
  font-family: 'Unbounded';
  src: url('/assets/fonts/Unbounded/Unbounded-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Unbounded';
  src: url('/assets/fonts/Unbounded/Unbounded-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */

:root {
  /* Colours */
  --color-bg: #08080c;
  --color-surface: #0f0d17;
  --color-surface-2: #17122a;
  --color-border: #2a1f45;
  --color-text: #f0eeff;
  --color-text-muted: #a89fc0;
  --color-accent-gold: #f2c766;
  --color-accent-blue: #7c4dff;
  --color-accent-glow: rgba(242, 199, 102, 0.18);
  --color-cta: #f2c766;
  --color-cta-hover: #ffe08a;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Typography */
  --font-base: 'Unbounded', sans-serif;

  /* Layout */
  --container-max: 1280px;

  /* Transitions */
  --transition-base: 0.3s ease;

  /* Z-index layers */
  --z-header: 100;
  --z-modal: 1000;
  --z-overlay: 999;
}

/* ------------------------------------------------------------
   3. RESET & BASE
   ------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  /* Firefox scrollbar */
  scrollbar-color: var(--color-accent-gold) var(--color-bg);
  scrollbar-width: thin;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1rem;
}

p {
  line-height: 1.7;
  color: var(--color-text);
}

a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-cta-hover);
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-base);
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-base);
}

address {
  font-style: normal;
}

/* ------------------------------------------------------------
   4. SKIP LINK
   ------------------------------------------------------------ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--color-accent-gold);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-bg);
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   5. SCROLLBAR (WebKit)
   ------------------------------------------------------------ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--color-accent-gold),
    var(--color-accent-blue)
  );
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-cta-hover), #9b72ff);
}

/* ------------------------------------------------------------
   6. LAYOUT
   ------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

/* ------------------------------------------------------------
   7. HEADER
   ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  width: 100%;
  background-color: transparent;
  transition:
    background-color var(--transition-base),
    backdrop-filter var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

/* Homepage header — logo only, centred */
.site-header--home .site-header__inner {
  justify-content: center;
}

/* Logo */
.site-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.site-logo:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav (mobile — hidden by default) */
.site-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 12, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: calc(var(--z-header) - 1);
  overflow-y: auto;
  padding: var(--space-xl) var(--space-sm);
}

.site-nav.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.site-nav__link {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition-base),
    border-color var(--transition-base);
}

.site-nav__link:hover {
  color: var(--color-accent-gold);
  border-bottom-color: var(--color-accent-gold);
}

.site-nav__link--active {
  color: var(--color-accent-gold);
  border-bottom-color: var(--color-accent-gold);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-image: url('/assets/imgs/main-section/img-desktop-zeus.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000;
  background: -webkit-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.92),
    rgba(8, 8, 12, 0.75),
    rgba(26, 16, 48, 0.4)
  );
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.92),
    rgba(8, 8, 12, 0.75),
    rgba(26, 16, 48, 0.4)
  );
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  padding-block: var(--space-xl);
}

/* Text side */
.hero__text {
  text-align: center;
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero__headline span {
  color: var(--color-accent-gold);
}

.hero__subtext {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-inline: auto;
}

.hero__subtext-highlight {
  position: relative;
  display: inline-block;
  color: var(--color-accent-gold);
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(242, 199, 102, 0.26);
}

.hero__subtext-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.38em;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(242, 199, 102, 0.22),
    rgba(124, 77, 255, 0.18)
  );
}

/* Figure side */
.hero__figure {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 340px;
  width: 100%;
}

.hero__figure-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  animation: float-figure 5s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(
    ellipse at center,
    rgba(242, 199, 102, 0.45) 0%,
    transparent 70%
  );
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* ------------------------------------------------------------
   8b. COUNTDOWN
   ------------------------------------------------------------ */

.hero__countdown {
  margin-bottom: var(--space-lg);
}

.countdown__label-top {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 0.5rem;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}

.countdown__sep {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  padding-bottom: 1.125rem;
  flex-shrink: 0;
  width: 10px;
  text-align: center;
  line-height: 1;
}

.countdown__unit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(var(--color-surface), var(--color-surface)) padding-box,
    linear-gradient(135deg, rgba(242, 199, 102, 0.75), rgba(124, 77, 255, 0.65))
      border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.5rem 0.375rem;
  flex: 1;
  min-width: 0;
  box-shadow:
    inset 0 0 18px rgba(242, 199, 102, 0.04),
    0 0 24px rgba(124, 77, 255, 0.12);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.countdown__unit:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 18px rgba(242, 199, 102, 0.08),
    0 0 30px rgba(242, 199, 102, 0.16);
}

.countdown__value {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   9. BUTTONS
   ------------------------------------------------------------ */

/* Focus style shared by all interactive elements */
:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* CTA wrapper — the rotating aura border lives here */
.btn-cta-wrap {
  position: relative;
  display: inline-flex;
  border-radius: 999px;
  padding: 2px;
  overflow: hidden;
}

.btn-cta-wrap::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    var(--color-accent-gold),
    var(--color-accent-blue),
    var(--color-accent-gold),
    var(--color-accent-blue),
    var(--color-accent-gold)
  );
  z-index: 0;
}

/* Only hero CTA gets the spinning aura */
.btn-cta-wrap--aura::before {
  animation: aura-spin 3s linear infinite;
}

.btn-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f2c766, #d4a030);
  color: var(--color-bg);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.875rem 2.25rem;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
  white-space: nowrap;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 0 28px var(--color-accent-glow);
  background: linear-gradient(135deg, var(--color-cta-hover), #e8b830);
  outline: none;
}

.btn-cta:disabled,
.btn-cta:disabled:hover,
.btn-cta:disabled:focus-visible {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: linear-gradient(135deg, #f2c766, #d4a030);
  outline: none;
}

.btn-cta-wrap:focus-within {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}

/* Secondary outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  border: 1.5px solid var(--color-accent-gold);
  border-radius: 999px;
  background: transparent;
  color: var(--color-accent-gold);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
  white-space: nowrap;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--color-accent-gold);
  color: var(--color-bg);
  transform: scale(1.03);
}

/* Generic dark button (used inside modal) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-base);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color var(--transition-base),
    color var(--transition-base);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

/* Secondary rules link button */
.btn-rules {
  display: block;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-base);
  font-size: 0.8125rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(168, 159, 192, 0.35);
  text-underline-offset: 3px;
  padding: var(--space-xs) 0;
  margin-top: var(--space-sm);
  text-align: center;
  width: 100%;
  transition:
    color var(--transition-base),
    text-decoration-color var(--transition-base);
}

.btn-rules:hover {
  color: var(--color-accent-gold);
  text-decoration-color: rgba(242, 199, 102, 0.55);
}

.btn-rules:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
  border-radius: 4px;
  color: var(--color-accent-gold);
}

/* ------------------------------------------------------------
   10. REGISTRATION MODAL
   ------------------------------------------------------------ */

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  overflow-y: auto;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Modal panel */
.modal {
  position: relative;
  z-index: var(--z-modal);
  width: 100%;
  max-width: 520px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-lg);
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  max-height: calc(100dvh - 2 * var(--space-sm));
  overflow-y: auto;
  margin: auto;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  cursor: pointer;
  transition:
    background var(--transition-base),
    color var(--transition-base);
  line-height: 1;
  flex-shrink: 0;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--color-border);
  color: var(--color-text);
}

/* Modal header */
.modal__header {
  margin-bottom: var(--space-lg);
  padding-right: 3rem;
}

.modal__step-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.modal__step-indicator strong {
  color: var(--color-accent-gold);
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Step visibility */
.modal__step {
  display: none;
}

.modal__step.is-active {
  display: block;
}

/* Form field group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: var(--space-md);
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 400;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(242, 199, 102, 0.12);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #e05a5a;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
}

.checkbox-label input[type='checkbox'] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-accent-gold);
  cursor: pointer;
  border-radius: 4px;
}

.checkbox-label a {
  color: var(--color-accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-label a:hover {
  color: var(--color-cta-hover);
}

/* Modal actions row */
.modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.modal__actions .btn-ghost {
  flex-shrink: 0;
}

/* Success state */
.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.modal__success.is-visible {
  display: flex;
}

.modal__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-gold), #d4a030);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-bg);
  flex-shrink: 0;
}

.modal__success-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.modal__success-message {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 380px;
}

/* ------------------------------------------------------------
   11. PAGE TITLE BANNER
   ------------------------------------------------------------ */

.page-banner {
  background: var(--color-bg);
  background: -webkit-linear-gradient(to right, #000000, #0f0d17, #1a1030);
  background: linear-gradient(to right, #000000, #0f0d17, #1a1030);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.page-banner__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-xs);
}

.page-banner__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
}

/* ------------------------------------------------------------
   12. FAQ ACCORDION
   ------------------------------------------------------------ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:has(.faq-trigger[aria-expanded='true']) {
  border-color: var(--color-accent-gold);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition-base);
}

.faq-trigger:hover {
  color: var(--color-accent-gold);
}

.faq-trigger[aria-expanded='true'] {
  color: var(--color-accent-gold);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: -2px;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-base);
  margin-top: -4px;
}

.faq-trigger[aria-expanded='true'] .faq-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-panel__inner {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   13. HOW TO PLAY STEPS
   ------------------------------------------------------------ */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent-gold);
  opacity: 0.35;
  flex-shrink: 0;
}

.step-body {
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.step-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   14. CONTACT CARD
   ------------------------------------------------------------ */

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--space-lg);
  max-width: 540px;
  margin-inline: auto;
}

.contact-card__brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-md);
}

.contact-card__row {
  margin-bottom: var(--space-md);
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-card__value {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-card__note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   15. POLICY PAGES
   ------------------------------------------------------------ */

.policy-content {
  max-width: 760px;
  margin-inline: auto;
}

.policy-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.policy-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.policy-content li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--color-accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------
   15b. RESPONSIBLE GAMING CALLOUT
   ------------------------------------------------------------ */

.rg-callout {
  border-left: 4px solid var(--color-accent-gold);
  background: rgba(242, 199, 102, 0.06);
  border-radius: 0 12px 12px 0;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.rg-callout__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-xs);
}

.rg-callout__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.rg-callout__text a {
  color: var(--color-accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsible gaming section body */
.rg-section {
  margin-bottom: var(--space-xl);
}

.rg-section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.rg-section p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.rg-section p:last-child {
  margin-bottom: 0;
}

.rg-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.rg-section li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.rg-section a {
  color: var(--color-accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rg-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.rg-badge img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.rg-badge p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Support resources list */
.support-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.support-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-md);
}

.support-item__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.support-item__detail {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   15c. 404 ERROR PAGE
   ------------------------------------------------------------ */

.error-page {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background: #000000;
  background: -webkit-linear-gradient(
    to bottom right,
    #000000,
    #0f0d17,
    #1a1030
  );
  background: linear-gradient(to bottom right, #000000, #0f0d17, #1a1030);
  border-top: 1px solid rgba(242, 199, 102, 0.08);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-2xl);
}

.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(242, 199, 102, 0.14),
      transparent 28rem
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(124, 77, 255, 0.16),
      transparent 24rem
    );
  pointer-events: none;
}

.error-page::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(242, 199, 102, 0.12);
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.45;
  pointer-events: none;
}

.error-page__glow {
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
  filter: blur(10px);
}

.error-page__glow--gold {
  --error-glow-angle: -18deg;
  top: 18%;
  left: 8%;
  width: 170px;
  height: 2px;
  background: var(--color-accent-gold);
  box-shadow: 0 0 48px 18px rgba(242, 199, 102, 0.24);
  transform: rotate(var(--error-glow-angle));
  animation: error-glow-drift 7s ease-in-out infinite;
}

.error-page__glow--blue {
  --error-glow-angle: 16deg;
  right: 8%;
  bottom: 18%;
  width: 210px;
  height: 2px;
  background: var(--color-accent-blue);
  box-shadow: 0 0 56px 22px rgba(124, 77, 255, 0.22);
  transform: rotate(var(--error-glow-angle));
  animation: error-glow-drift 8s ease-in-out infinite reverse;
}

.error-page__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
}

.error-page__code {
  margin-bottom: var(--space-sm);
  font-size: clamp(4.5rem, 24vw, 13rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
  color: transparent;
  background:
    linear-gradient(
      135deg,
      var(--color-text),
      var(--color-accent-gold) 42%,
      var(--color-accent-blue) 78%
    ),
    var(--color-text);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 32px rgba(242, 199, 102, 0.18),
    0 0 64px rgba(124, 77, 255, 0.14);
}

.error-page__title {
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
}

.error-page__text {
  max-width: 610px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.error-page__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.error-page__secondary {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(168, 159, 192, 0.35);
  text-underline-offset: 4px;
}

.error-page__secondary:hover,
.error-page__secondary:focus-visible {
  color: var(--color-accent-gold);
  text-decoration-color: rgba(242, 199, 102, 0.65);
}

/* ------------------------------------------------------------
   16. SECTION BASE
   ------------------------------------------------------------ */

.section {
  padding-block: var(--space-xl);
}

.section--alt {
  background: var(--color-surface);
  background: -webkit-linear-gradient(to bottom, var(--color-bg), #100d1e);
  background: linear-gradient(to bottom, var(--color-bg), #100d1e);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-xs);
}

.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.section__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-inline: auto;
  margin-top: var(--space-sm);
}

/* ------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------ */

.site-footer {
  background: var(--color-bg);
  background: -webkit-linear-gradient(to right, #000000, #0f0d17, #1a1030);
  background: linear-gradient(to right, #000000, #0f0d17, #1a1030);
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}

/* Main footer area */
.footer__main {
  padding-block: var(--space-xl);
}

.footer__main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 620px;
}

.footer__logo {
  display: inline-flex;
  width: fit-content;
}

.footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer__logo:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer__tagline {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 600;
}

.footer__age-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Navigation */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.footer__nav-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav-link {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__nav-link:hover {
  color: var(--color-accent-gold);
}

.footer__nav-link:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Compliance section */
.footer__compliance {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-xl);
}

.footer__compliance-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.footer__compliance-header {
  text-align: center;
  max-width: 720px;
}

.footer__compliance-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 0.35rem;
}

.footer__compliance-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Compliance logos */
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  width: 100%;
}

.footer__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color var(--transition-base),
    background-color var(--transition-base),
    transform var(--transition-base);
}

.footer__logo-link:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.footer__logo-link:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}

.footer__logo-item img {
  max-width: 130px;
  max-height: 35px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.9) grayscale(0.15);
  transition: filter var(--transition-base);
}

.footer__logo-link:hover img {
  filter: brightness(1) grayscale(0);
}

/* License card */
.footer__license-card {
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.footer__license-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.footer__license-text,
.footer__responsible-text,
.footer__language-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.footer__license-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.footer__license-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.footer__license-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__license-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.footer__responsible-text {
  margin-top: 0.75rem;
}

.footer__responsible-text strong {
  color: var(--color-text);
}

.footer__language-note {
  margin-top: 0.75rem;
  opacity: 0.8;
}

/* Legal strip */
.footer__legal {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-md);
}

.footer__legal-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__legal-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer__legal-link {
  color: var(--color-accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal-link:hover {
  color: var(--color-text);
}

.footer__legal-link:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.75;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 768px) {
  .footer__main-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
  }

  .footer__nav {
    justify-self: end;
    min-width: 320px;
  }

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

@media (max-width: 520px) {
  .footer__main {
    padding-block: var(--space-lg);
  }

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

  .footer__logos {
    gap: 0.75rem;
  }

  .footer__logo-link {
    min-height: 64px;
    padding: 0.65rem 0.75rem;
  }

  .footer__logo-item img {
    max-width: 115px;
  }

  .footer__license-card {
    border-radius: 14px;
  }
}

/* Hero age note */
.hero__age-note {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* Modal step intro text (step 3) */
.modal__step-intro {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

/* Modal disclaimer (step 3 footnote) */
.modal__disclaimer {
  margin-top: var(--space-md);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Modal actions — primary wrapper fills remaining space */
.modal__actions-primary {
  display: contents;
}

/* ------------------------------------------------------------
   10b. BONUS MODAL
   ------------------------------------------------------------ */

.bonus-modal-body {
  max-height: min(360px, 45vh);
  overflow-y: auto;
  margin: var(--space-md) 0;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  border-radius: 8px;
}

.bonus-modal-body::-webkit-scrollbar {
  width: 4px;
}

.bonus-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.bonus-modal-body::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 999px;
}

.bonus-modal-body:focus {
  outline: 2px solid var(--color-border);
  outline-offset: -2px;
}

.bonus-terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.bonus-terms-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}

.bonus-terms-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-gold);
  line-height: 1.7;
}

.bonus-modal-footer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
}

/* ------------------------------------------------------------
   18. UTILITY
   ------------------------------------------------------------ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-gold {
  color: var(--color-accent-gold);
}

.text-muted {
  color: var(--color-text-muted);
}

/* Scroll reveal — initial hidden state */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

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

/* ------------------------------------------------------------
   19. ANIMATIONS
   ------------------------------------------------------------ */

/* Hero character float */
@keyframes float-figure {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Radial glow pulse below character */
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.85;
    transform: translateX(-50%) scaleX(1.14);
  }
}

/* CTA button rotating aura border */
@keyframes aura-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Error page decorative glow */
@keyframes error-glow-drift {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0) rotate(var(--error-glow-angle));
  }
  50% {
    opacity: 0.65;
    transform: translateY(-12px) rotate(calc(var(--error-glow-angle) + 6deg));
  }
}

/* Modal entrance — handled via CSS transitions on .modal-overlay.is-open */

/* ------------------------------------------------------------
   20. RESPONSIVE — 768px (Tablet)
   ------------------------------------------------------------ */

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.125rem;
  }

  .container {
    padding-inline: var(--space-lg);
  }

  /* Header nav — show inline on tablet */
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    overflow: visible;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }

  .site-nav__list {
    flex-direction: row;
    gap: var(--space-lg);
    text-align: left;
  }

  .site-nav__link {
    font-size: 0.8125rem;
  }

  /* Countdown — left-align and enlarge */
  .countdown {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .countdown__unit {
    padding: 0.75rem 1rem;
    flex: none;
    min-width: 76px;
  }

  .countdown__value {
    font-size: 1.875rem;
  }

  .countdown__label {
    font-size: 0.5625rem;
  }

  .countdown__sep {
    font-size: 1.25rem;
    padding-bottom: 1.375rem;
  }

  .btn-rules {
    text-align: left;
  }

  /* Hero — two column */
  .hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--space-2xl);
  }

  .hero__text {
    text-align: left;
    max-width: 55%;
  }

  .hero__subtext {
    margin-inline: 0;
  }

  .hero__figure {
    max-width: 380px;
    flex-shrink: 0;
  }

  .hero__headline {
    font-size: 3rem;
  }

  /* Footer main — row */
  .footer__main-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__brand {
    max-width: 260px;
  }

  /* Steps — two column */
  .step-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .step-number {
    min-width: 80px;
    text-align: right;
    padding-right: var(--space-md);
  }

  /* Page banner larger */
  .page-banner {
    padding-block: var(--space-2xl);
  }

  .page-banner__title {
    font-size: 2.5rem;
  }

  .error-page__inner {
    padding-block: var(--space-2xl);
  }

  .error-page__title {
    font-size: 2.5rem;
  }

  .error-page__text {
    font-size: 1rem;
  }

  .error-page__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE — 1024px (Desktop)
   ------------------------------------------------------------ */

@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }

  .container {
    padding-inline: var(--space-xl);
  }

  .hero__headline {
    font-size: 4rem;
  }

  .hero__figure {
    max-width: 460px;
  }

  .site-nav__link {
    font-size: 0.875rem;
  }

  .countdown__unit {
    padding: 0.875rem 1.25rem;
    min-width: 88px;
  }

  .countdown__value {
    font-size: 2.25rem;
  }

  .countdown__sep {
    font-size: 1.5rem;
    padding-bottom: 1.625rem;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE — 1280px (Large Desktop)
   ------------------------------------------------------------ */

@media (min-width: 1280px) {
  h1 {
    font-size: 4.5rem;
  }

  .hero__headline {
    font-size: 4.5rem;
  }
}

/* ------------------------------------------------------------
   21. REDUCED MOTION
   ------------------------------------------------------------ */

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

[hidden] {
  display: none !important;
}
