#mainSite {
  display: none;
}

@font-face {
  font-family: "AvantGardePro";
  src: url("fonts/ITCAvanteGardeGothicProbookfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AvantGardePro";
  src: url("fonts/ITCAvantGardeGothicProMediumfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AvantGardePro";
  src: url("fonts/ITCAvanteGardeGothicProBoldfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --age-gate-width: 480px;
  --content-width: 660px;
  --blue-dark: #002989;
  --blue-main: #002989;
  --mobile-gutter: 24px;
  --submit-gap: 36px;

  /* Responsive form width */
  --form-max-width: 380px;

  /* Responsive font scale */
  --font-base: 16px;
  --font-label: 1rem;
  --font-input: 0.95rem;
  --font-h1: 1.375rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "AvantGardePro", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  font-size: var(--font-base);
  background: url(images/Noisy_Grey_Background.jpg) center / cover no-repeat;
  min-height: 100dvh;
  position: relative;
}

.age-gate {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 0;
  overflow-x: hidden;
  max-width: 100%;
}

.age-gate-inner {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.age-logo {
  display: block;
  width: 220px;
  margin: 45px auto 0;
}

.agegate-ribbon {
  position: relative;
  display: block;
  width: 130%;
  left: -20%;
  margin-top: -160px;
  margin-bottom: -120px;
  pointer-events: none;
  z-index: 1;
  max-width: none;
}


body:has(.confirmation-wrapper) .side-bar {
  width: calc((100vw - var(--age-gate-width)) / 2);
}


@media (min-width: 600px) {
  .age-gate-inner {
    overflow: hidden;
    min-height: auto;
  }

  .agegate-ribbon {
    position: absolute;
    width: 130%;
    left: -20%;
    top: -50px;
    margin: 0;
    z-index: 1;
  }

  .age-form {
    margin-top: 280px !important;
    max-width: 400px;
  }

  .agegate-footer-alcohol,
  .agegate-footer-age {
    white-space: normal;
  }

  .confirmation-wrapper {
    max-width: var(--age-gate-width);
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    justify-content: space-between;
  }

  .confirmation-page {
    max-width: var(--age-gate-width);
    width: 100%;
    flex: 1;
    margin: 0 auto;
    overflow: visible;
  }

  .confirmation-ribbon {
    position: relative;
    display: block;
    width: 130%;
    left: -15%;
    margin-top: -80px;
    margin-bottom: -60px;
  }

  .confirmation-content {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .confirmation-partners {
    max-width: 480px;
    margin: 40px auto 0;
  }

  .partner-caption {
    max-width: 480px;
    margin: 24px auto 8px;
  }

  .agegate-footer--confirmation {
    padding: 40px var(--mobile-gutter) 28px;
  }

  .agegate-footer--confirmation .agegate-footer-links {
    margin: -12px auto 28px;
  }

  .agegate-footer--confirmation .agegate-footer-bottom {
    margin: 0 auto;
    padding-bottom: 0;
  }
}

.age-form {
  max-width: 400px;
  margin: 10px auto 0;
  padding: 0 12px 20px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.age-input {
  margin-bottom: 12px;
}

.age-form > .age-input > label:not(.checkbox-label) {
  display: block;
  color: #164292;
  margin-bottom: 6px;
  font-size: 1.125rem;
}

.age-form input:not([type="checkbox"]),
.age-form select {
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  font-size: 1rem;
  border: 2px solid #002989;
  background: transparent;
  border-radius: 0;
}

.age-input:has(select) {
  margin-bottom: 0px;
}

.age-input + .age-input label {
  margin-top: -6px;
}

.dob-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dob-row input::placeholder               { color: #002989; opacity: 0.4; }
.dob-row input::-webkit-input-placeholder { color: #002989; opacity: 0.4; }
.dob-row input::-moz-placeholder          { color: #002989; opacity: 0.4; }
.dob-row input:-ms-input-placeholder      { color: #002989; }


.age-form .custom-select-trigger {
  height: 40px;
  border-color: #002989;
  color: #002989;
}

.age-form .custom-select-value {
  color: #002989;
}

.age-form .custom-select-menu {
  border-color: #002989;
}

.age-form .custom-select-option {
  color: #002989;
}

.age-input.error .custom-select-trigger {
  border-color: #c00;
}


.age-error {
  margin-top: 4px;
  font-size: 14px;
  color: #c00;
  min-height: 16px;
}

.age-input.error input,
.age-input.error select {
  border-color: #c00;
}


.age-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.age-checkbox-row span {
  display: block;
  flex: 1;
  font-size: 18px;
  line-height: 1.35;
  color: #164292;
}

.age-checkbox-row input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #164292;
  background: transparent;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.age-checkbox-row input::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.age-checkbox-row input:checked {
  background: #164292;
}

.age-checkbox-row input:checked::after {
  opacity: 1;
}

.age-checkbox .age-error {
  margin-left: 28px;
}

.age-input.age-checkbox .checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.age-input.age-checkbox .checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  border: 2px solid #002989;
  background: transparent;
  display: grid;
  place-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.age-input.age-checkbox .checkbox-label input[type="checkbox"]::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.age-input.age-checkbox .checkbox-label input[type="checkbox"]:checked {
  background: #002989;
}

.age-input.age-checkbox .checkbox-label input[type="checkbox"]:checked::after {
  opacity: 1;
}

.age-input.age-checkbox .checkbox-text {
  display: block;
  flex: 1;
}


.age-legal-text {
  font-size: 0.8rem;
  line-height: 1.35;
  color: #002989;
  margin-top: 4px;
}

.age-input.age-checkbox {
  margin-bottom: 8px;
}

.age-legal-text a {
  color: #164292;
  text-decoration: underline;
}

.age-legal-text a:hover {
  text-decoration: none;
}


#enterBtn {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 16px;
  background: #002989;
  color: #fff;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  letter-spacing: 0.05em;
}

@media (max-width: 599px) {
  .age-form {
    margin-top: 140px;
    max-width: 90%;
  }
}


.agegate-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 40px var(--mobile-gutter) 28px;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

.agegate-footer-links {
  text-align: center;
  font-size: 0.875rem;
  margin: -12px auto 28px;
  max-width: 660px;
}

.agegate-footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: light;
}

.agegate-footer-links strong {
  font-weight: 700;
}

.agegate-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  gap: 12px;
  max-width: 660px;
  margin: 0 auto;
}

.agegate-footer-alcohol {
  font-weight: 500;
  white-space: nowrap;
}

.agegate-footer-age {
  text-align: right;
  white-space: nowrap;
}


.side-bar {
  position: fixed;
  top: 0;
  height: 100vh;
  background: #000;
  pointer-events: none;
  z-index: 9999;
}

.left-bar  { left: 0;  width: calc((100vw - var(--content-width)) / 2); }
.right-bar { right: 0; width: calc((100vw - var(--content-width)) / 2); }

.age-gate .left-bar,
.age-gate .right-bar {
  width: calc((100vw - var(--age-gate-width)) / 2);
}

@media (max-width: 767px) {
  .side-bar,
  .age-gate .side-bar {
    display: none;
  }
}


.hero-wrapper {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  display: block;
}


.page-wrapper {
  width: 100%;
  max-width: var(--form-max-width);
  margin: 0 auto;
  padding: 0 12px;
}

#mainSite,
.site-zoom {
  overflow-x: hidden;
  max-width: 100%;
}

#form {
  width: 100%;
  margin: 4px auto;
  font-size: var(--font-base);
  padding-top: 24px;
  padding-bottom: 16px;
}

#form h1 {
  text-align: center;
  color: var(--blue-main);
  margin-bottom: 24px;
  font-weight: 700;
  font-size: var(--font-h1);
}


.input-control {
  color: var(--blue-main);
  margin-bottom: 0;
}

.input-control label {
  margin-bottom: 4px;
  display: block;
  font-size: var(--font-label);
}

.input-control input {
  width: 100%;
  height: 34px;
  padding: 6px 8px;
  border: 2px solid var(--blue-main);
  background: transparent;
  font-size: var(--font-input);
}


.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 10px;
  border: 2px solid var(--blue-main);
  background: transparent;
  cursor: pointer;
  font-size: var(--font-input);
  font-family: "AvantGardePro", sans-serif;
  color: var(--blue-main);
}

.custom-select:focus .custom-select-trigger,
.custom-select.open .custom-select-trigger {
  border-color: var(--blue-main);
  outline: 2px solid rgba(0, 41, 137, 0.25);
  outline-offset: 1px;
}

.custom-select-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-value {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 0.45;
}

.custom-select-value.selected {
  opacity: 1;
}

.custom-select-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid var(--blue-main);
  border-top: none;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 41, 137, 0.12);
}

.custom-select.open .custom-select-menu {
  display: block;
}

.custom-select-option {
  padding: 10px 12px;
  font-size: 0.9rem;
  font-family: "AvantGardePro", sans-serif;
  color: var(--blue-main);
  cursor: pointer;
  line-height: 1.35;
  transition: background 0.1s;
}

.custom-select-option:hover,
.custom-select-option:focus {
  background: rgba(0, 41, 137, 0.07);
}

.custom-select-option.active {
  background: rgba(0, 41, 137, 0.12);
  font-weight: 600;
}

.input-control.error .custom-select-trigger {
  border-color: #c00;
}


.dob-wrapper {
  display: flex;
  gap: 12px;
}

.dob-wrapper input::placeholder               { color: var(--blue-main); opacity: 1; }
.dob-wrapper input::-webkit-input-placeholder { color: var(--blue-main); }
.dob-wrapper input::-moz-placeholder          { color: var(--blue-main); }
.dob-wrapper input:-ms-input-placeholder      { color: var(--blue-main); }

.dob-wrapper input {
  font-variant-numeric: tabular-nums;
}

.dob-wrapper input:nth-child(1),
.dob-wrapper input:nth-child(2) {
  width: 60px;
  text-align: center;
}

.dob-wrapper input:nth-child(3) {
  width: 90px;
  text-align: center;
}


#skill {
  width: 120px;
  text-align: center;
}


::placeholder               { color: #1f3a8a; opacity: 1; }
::-webkit-input-placeholder { color: #1f3a8a; opacity: 1; }
::-moz-placeholder          { color: #1f3a8a; opacity: 1; }
:-ms-input-placeholder      { color: #1f3a8a; }


.submit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  z-index: 99999;
}

.submit-overlay.show { display: flex; }

.submit-loading {
  display: none;
  justify-content: center;
  align-items: center;
}

.submit-loading.show { display: flex; }

.spinner {
  width: 64px;
  height: 64px;
  border: 5px solid rgba(22, 66, 146, 0.2);
  border-top-color: #164292;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.submit-success {
  display: none;
  background: #fff;
  padding: 32px 36px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  text-align: center;
  max-width: 320px;
  width: 90%;
  font-family: "AvantGardePro", sans-serif;
  position: relative;
}

.submit-success.show { display: block; }

.success-text {
  font-size: 1.1rem;
  color: var(--blue-main);
  font-weight: 500;
  margin-bottom: 24px;
}

#closeSubmitSuccess {
  padding: 10px 24px;
  background: var(--blue-main);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

#closeSubmitSuccess:hover {
  background: #0f2a6f;
}


.checkbox-control {
  margin-top: 4px;
  margin-bottom: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkbox-text {
  color: var(--blue-main);
  font-size: var(--font-input);
  line-height: 1.45;
  max-width: 360px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.checkbox-label input {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--blue-main);
  background: transparent;
  display: grid;
  place-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label input::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.checkbox-label input:checked { background: var(--blue-main); }
.checkbox-label input:checked::after { opacity: 1; }



.input-control .error {
  margin-top: 3px;
  margin-bottom: 0;
  padding-bottom: 6px;
  font-size: 0.875rem;
  color: #c00;
  min-height: 16px;
  line-height: 1;
}

.checkbox-control .error {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 38px;
  padding-bottom: 6px;
  font-size: 0.875rem;
  color: #c00;
  min-height: 16px;
  line-height: 1;
}

.input-control.error input {
  border-color: #c00;
}


#form button[type="submit"] {
  width: 100%;
  padding: 15px;
  margin-top: 16px;
  background: var(--blue-main);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-family: "AvantGardePro", sans-serif;
  letter-spacing: 0.05em;
}


.form-contest-rules {
  color: #002989;
  font-size: var(--font-input);
  text-align: center;
  margin-top: 28px;
  margin-bottom: 20px;
}

.form-contest-rules a {
  color: #002989;
  text-decoration: none;
}

.form-partners {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: nowrap;
}

.form-partners img:nth-child(1) {
  height: 28px;
  flex-shrink: 0;
}

.form-partner-divider {
  width: 1px;
  min-width: 1px;
  height: 40px;
  background: #002989;
  flex-shrink: 0;
}

.form-partners img:nth-child(3) {
  height: 48px;
  flex-shrink: 0;
}

.form-partner-caption {
  color: #002989;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
  padding-bottom: 8px;
  white-space: nowrap;
}

.agegate-footer-legal {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0.9;
  max-width: 660px;
  margin: 0 auto 16px;
}


.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.confirmation-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-width: 480px;
  margin: 0 auto;
}

.confirmation-page {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  height: auto;
  padding-bottom: 25px;
}

.confirmation-logo {
  width: 220px;
  margin: 45px auto 0;
}

.confirmation-ribbon {
  position: relative;
  display: block;
  width: 125%;
  left: -17%;
  margin-top: -200px;
  margin-bottom: -60px;
  pointer-events: none;
  z-index: 1;
}

.confirmation-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  flex: 1;
}

.confirmation-spacer {
  display: none;
}

.confirmation-content h1 {
  font-size: 36px;
  color: #002989;
  margin-top: 0;
  margin-bottom: 16px;
}

.confirmation-text {
  color: #002989;
  font-size: 24px;
  margin-bottom: 2px;
}

.confirmation-partners {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.confirmation-partners img {
  height: 40px;
}

.confirmation-partners img:nth-child(1) {
  height: 28px;
}

.confirmation-partners img:nth-child(3) {
  height: 58px;
}

.partner-divider {
  width: 1px;
  height: 40px;
  background: #002989;
}

.partner-caption {
  color: #002989;
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}

.agegate-footer--confirmation {
  padding: 40px var(--mobile-gutter) 28px;
}

.agegate-footer--confirmation .agegate-footer-links {
  margin: -12px auto 28px;
}

.agegate-footer--confirmation .agegate-footer-bottom {
  margin: 0 auto;
}


@media (min-width: 1200px) {
  :root {
    --content-width: 860px;
    --form-max-width: 480px;
    --font-base: 17px;
    --font-h1: 1.5rem;
  }

  .page-wrapper {
    padding: 0 20px;
  }

  #form h1 {
    margin-bottom: 28px;
  }
}


@media (min-width: 900px) {
  :root {
    --content-width: 860px;
    --form-max-width: 440px;
  }

  .page-wrapper {
    padding: 0 16px;
  }

  .input-control input,
  .custom-select-trigger {
    height: 38px;
  }

  .form-partner-caption {
    font-size: 17px;
  }
}



@media (min-width: 600px) and (max-width: 899px) {
  :root {
    --form-max-width: 420px;
    --font-base: 15px;
  }

  .page-wrapper {
    padding: 0 20px;
  }

  #form {
    padding-top: 20px;
  }

  .input-control input,
  .custom-select-trigger {
    height: 36px;
  }

  .dob-wrapper input:nth-child(1),
  .dob-wrapper input:nth-child(2) {
    width: 56px;
  }

  .dob-wrapper input:nth-child(3) {
    width: 84px;
  }
}


@media (max-width: 599px) {
  :root {
    --mobile-gutter: 20px;
    --form-max-width: calc(100% - 32px);
    --font-base: 15px;
    --font-label: 0.9375rem;
    --font-input: 0.9rem;
    --font-h1: 1.2rem;
  }

  .page-wrapper {
    padding: 0 16px;
  }

  #form {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  #form h1 {
    margin-bottom: 18px;
  }

  .input-control input,
  .input-control select {
    width: 100%;
    height: 40px;
  }

  .custom-select-trigger {
    height: 40px;
  }

  .dob-wrapper {
    flex-direction: row;
    gap: 8px;
  }

  .dob-wrapper input {
    width: auto;
    flex: 0 0 auto;
    height: 40px;
  }

  .dob-wrapper input:nth-child(1),
  .dob-wrapper input:nth-child(2) {
    width: 54px;
  }

  .dob-wrapper input:nth-child(3) {
    width: 78px;
  }

  #skill {
    width: 100px;
    height: 40px;
  }

  .checkbox-control {
    margin-top: 0;
    margin-bottom: 6px;
  }

  .input-control + .checkbox-control {
    margin-top: -4px;
  }

  .checkbox-label {
    gap: 12px;
  }

  .checkbox-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checkbox-control .error {
  margin-left: 36px;
  margin-top: 2px;
}

  .checkbox-label input {
    width: 24px;
    height: 24px;
    margin-top: 1px;
  }

  .checkbox-control .error {
    margin-left: 38px;
  }

  #form button[type="submit"] {
    padding: 18px;
    font-size: 1rem;
    width: 100%;
    margin-top: 20px;
  }

  .form-contest-rules {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .form-partner-caption {
    font-size: 14px;
    margin-top: 24px;
  }

  .submit-success {
    padding: 24px 20px;
    max-width: 90%;
  }

  .success-text { font-size: 1rem; }

  #closeSubmitSuccess { width: 100%; }
}


@media (max-width: 379px) {
  :root {
    --font-base: 14px;
    --font-h1: 1.1rem;
  }

  .page-wrapper {
    padding: 0 20px;
  }

  .dob-wrapper input:nth-child(1),
  .dob-wrapper input:nth-child(2) {
    width: 48px;
  }

  .dob-wrapper input:nth-child(3) {
    width: 70px;
  }

  #skill {
    width: 90px;
  }

  .form-partners {
    gap: 8px;
  }

  .form-partners img:nth-child(1) {
    height: 22px;
  }

  .form-partners img:nth-child(3) {
    height: 38px;
  }

  .form-partner-divider {
    height: 32px;
  }

  .form-partner-caption {
    font-size: 12px;
  }
}


@media (max-width: 480px) {

  .confirmation-page {
    padding-bottom: clamp(16px, 3vh, 25px);
  }

  .confirmation-ribbon {
    width: 125%;
    left: -20%;
    margin-top: clamp(-220px, -20vh, -160px);
    margin-bottom: clamp(-80px, -8vh, -40px);
  }

  .confirmation-content {
    padding-top: clamp(80px, 15vh, 120px);
  }

  .confirmation-content h1 {
    font-size: clamp(30px, 8vw, 36px);
    margin-bottom: clamp(8px, 2vw, 16px);
  }

  .confirmation-text {
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: 2px;
  }

  .confirmation-partners {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
  }

  .confirmation-partners img {
    height: clamp(28px, 7vw, 40px);
  }

  .confirmation-partners img:nth-child(1) {
    height: clamp(22px, 5.5vw, 28px);
  }

  .confirmation-partners img:nth-child(3) {
    height: clamp(44px, 12vw, 58px);
  }

  .partner-caption {
    font-size: clamp(12px, 3.5vw, 16px);
    margin-top: 24px;
    margin-bottom: 8px;
  }

  .agegate-footer--confirmation {
    padding: 40px var(--mobile-gutter) 28px;
  }

  .agegate-footer--confirmation .agegate-footer-links {
    margin: -12px auto 28px;
  }

  .agegate-footer--confirmation .agegate-footer-bottom {
    margin: 0 auto;
    padding-bottom: 0;
  }
}