/* CSS Custom Properties */
:root {
  --color-bg: #1a1a1a;
  --color-text: #ffffff;
  --color-bg-alt: #101010;
  --color-text-muted: #c9c9d1;
  --color-primary: #e75275;
  --color-primary-contrast: #0a0a0f;
  --container-padding-x: 16px;
  --container-max: 1200px;
  --radius-lg: 12px;
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.35);

  --font-sans: "Open Sans", arial, sans-serif;
  --font-display: "Montserrat", sans-serif;
}

/* Reset-ish */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
}

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

picture {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

/* Focus styles */
:where(a, button, [role="button"]) {
  outline: none;
}

:where(a, button, [role="button"]):focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  background: var(--color-bg);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
}

.site-header__logo {
  height: 28px;
  width: auto;
}

/* Main */
.main {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  min-height: 100vh;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features {
  position: relative;
  overflow: hidden;
  background: white;
}

.features__content {
  position: relative;
  padding-top: 72px;
  padding-bottom: 48px;
}

.features__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 8px 0;
  color: var(--color-bg-alt);
}

.features__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 16px 0;
  color: var(--color-bg-alt);
}

.features__lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-bg-alt);
  margin: 0 0 14px 0;
  text-align: justify;
}

.button {
  width: 25rem;
  margin: 20px auto 0;
  background: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  margin: 20px 10px 0;
  font-size: 18px;
  white-space: nowrap;
}

.container-btn .btn-choice:hover,
.button--primary:hover {
  filter: brightness(0.95);
}

/* Disclaimer */
.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--color-bg);
}

.disclaimer__container {
  padding: 5em 5%;
  max-width: 1200px;
  width: 80%;
}

.disclaimer__text {
  color: var(--color-text-muted);
  font-size: 14px;
  font-family: montserrat;
  line-height: 1.7;
  margin: 0 0 12px 0;
  text-align: justify;
}

.disclaimer__text:first-child {
  text-align: center;
}

/* Desktop layout: 12-column grid */
@media (min-width: 992px) {
  :root {
    --container-padding-x: 24px;
  }

  .hero__content {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    padding-top: 120px;
    padding-bottom: 96px;
    min-height: 720px;
  }

  .hero__title {
    grid-column: 2 / span 8;
    font-size: 48px;
    line-height: 1.7;
    /* ~81.6px seen on site */
    margin-bottom: 8px;
  }

  .hero__subtitle {
    grid-column: 2 / span 9;
    font-size: 36px;
    line-height: 1.7;
    /* ~61.2px */
    margin-bottom: 8px;
  }

  .hero__lead {
    grid-column: 2 / span 7;
    font-size: 18px;
    line-height: 1.7;
    /* ~30.6px */
    margin-bottom: 12px;
  }

  .age-validation h2 {
    font-size: 30px;
  }

  .age-validation p {
    font-size: 18px;
  }

  .age-validation .warning {
    font-size: 16px;
  }

  .button--primary {
    font-size: 22px;
  }

  .disclaimer__text {
    font-size: 18px;
  }
}

/* Large desktop refinements */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 52px;
  }
}

/* dotcms styles */

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wrap {
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(100, 100, 100, .5);
  max-width: 650px;
  width: 80%;
  margin: 25px 0;
  padding: 20px;
  z-index: 1;
  position: relative;
}

/* Popup variant: centered, responsive to viewport */
.popup {
  background: var(--color-bg);
  width: min(90vw, 650px);
  max-width: 650px;
  margin: 0;
  z-index: 1001;
}

/* Center popup relative to hero */
.hero .wrap.popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100vh - 32px);
  overflow: auto;
}

@media(max-width: 768px) {
  .wrap {
    padding: 10px;
  }
}

@media(max-width: 768px) {
  .wrap.popup {
    width: calc(100vw - 32px);
    border-radius: 16px;
    padding: 16px;
  }
}

.wrap .steps-container {
  width: 100%;
}

.wrap .steps-container .asset-container {
  display: none;
  width: 100%;
  position: relative;
}

.wrap .steps-container .asset-container.with-video.active, 
.wrap .steps-container .asset-container.active {
  display: flex;
}

.wrap .steps-container .asset-container img {
  width: 100%;
  border-radius: 20px;
  max-height: 350px;
  object-fit: cover;
}

.wrap.popup .steps-container .asset-container img {
  max-height: 50vh;
}

.wrap .steps-container .asset-container.with-video {
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  display: none;
}

.wrap.popup .steps-container .asset-container.with-video {
  border-radius: 16px;
}

.wrap .steps-container .asset-container.with-video video {
  width: 100%;
}

.wrap .steps-container .asset-container.with-video img {
  position: absolute;
  margin: auto;
  width: 20%;
  filter: opacity(0.8);
  pointer-events: none;
}

.wrap .steps-container .asset-container.with-video img.playing {
  display: none;
}

.wrap .steps-container .asset-container.with-video .volumeIcons {
  position: absolute;
  z-index: 1000;
  right: 10px;
  top: 10px;
  background: rgba(0, 0, 0, 0);
  border-radius: 5px;
  width: 50px;
  height: 50px;
  padding: 10px;
  cursor: pointer;
}

.wrap .steps-container .asset-container.with-video .volumeIcons svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.wrap .steps-container .a0,
.wrap .steps-container .a1,
.wrap .steps-container .a2,
.wrap .steps-container .a3,
.wrap .steps-container .a4 {
  width: 100%;
}

.wrap .steps-container .step {
  display: none;
  min-height: 150px;
  width: 90%;
  margin: 30px 0 0;
}

.wrap .steps-container .step.step-checker .selectOptionsBox {
  margin-bottom: 20px;
}

@media(max-width: 480px) {
  .wrap .steps-container .step.step-checker .selectOptionsBox {
    margin-bottom: 15px;
  }
}

.wrap .steps-container .step p {
  text-align: center;
}

@media(max-width: 480px) {
  .wrap .steps-container .step {
    width: 100%;
  }
}

.wrap .steps-container .step.active {
  display: flex;
}

.wrap .steps-container .step .container-btn {
  flex-wrap: wrap;
  width: 100%;
}

.wrap .steps-container .step .container-btn li{
   list-style: none;
}

.wrap .steps-container .step .wysiwyg-content h2 {
  text-align: center;
  font-family: Poppins, Arial;
  font-size: 30px;
  text-transform: none;
  font-weight: bold;
  margin: 0 0 10px;
}

.wrap .steps-container .step .wysiwyg-content h3 {
  text-align: center;
  font-family: Poppins, Arial;
  font-size: 1.17em;
  text-transform: none;
  font-weight: bold;
  margin: 0;
}

.cta-container .cta {
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  margin: 20px 10px 0;
  font-size: 22px;
  white-space: nowrap;
  background: #e75275;
  color: #ffffff;
}

.wrap .steps-container .step .container-btn .btn-choice {
  width: 48%;
  margin: 20px auto 0;
  background: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  font-size: 22px;
  white-space: nowrap;
}

@media(max-width: 768px) {
  .wrap .steps-container .step .container-btn .btn-choice:last-child {
    margin: 20px 0;
  }
}

@media(max-width: 480px) {
  .wrap .steps-container .step .container-btn .btn-choice:last-child {
    margin: 10px 0;
  }
}

@media(max-width: 768px) {
  .wrap .steps-container .step .container-btn .btn-choice {
    width: 100%;
    font-size: 3.5vw;
  }
}

@media(max-width: 480px) {
  .wrap .steps-container .step .container-btn .btn-choice {
    margin: 10px 0 0;
  }
}

.wrap .steps-container .step .container-checklist {
  width: 100%
}

.wrap .steps-container .step .container-checklist .svg-container {
  width: 22px;
  margin: 4px 16px 0 0;
}

@media(max-width: 768px) {
  .wrap .steps-container .step .container-checklist .svg-container {
    width: 14px;
  }
}

.wrap .steps-container .step .container-checklist .svg-container svg {
  width: 22px;
}

@media(max-width: 768px) {
  .wrap .steps-container .step .container-checklist .svg-container svg {
    width: 14px;
  }
}

.wrap .steps-container .step .container-checklist li {
  font-size: 18px;
  justify-content: flex-start;
  margin: 15px 0;
}

@media(max-width: 768px) {
  .wrap .steps-container .step .container-checklist li {
    font-size: 2.7vw;
  }
}

@media(max-width: 480px) {
  .wrap .steps-container .step .container-checklist li {
    font-size: 3.8vw;
  }
}

.wrap .steps-container .step .container-checklist .cta-container,
.wrap .steps-container .step .container-checklist li {
  opacity: 0;
}

.wrap .steps-container .step .container-checklist .cta-container.show,
.wrap .steps-container .step .container-checklist li.show {
  opacity: 1;
  transition: opacity .3s;
}

.selectOptionsBox {
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: 15px 0;
  z-index: 99999;
  font-size: 17px;
}

@media(max-width: 768px) {
  .selectOptionsBox {
    max-width: none;
    font-size: 14px;
  }
}

@media(max-width: 480px) {
  .selectOptionsBox {
    margin: 10px 0;
  }
}

.selectOptionsBox .mainOption,
.selectOptionsBox .selectOptionsDropdown {
  color: #000;
  background: #ebecf0;
  border: 1px solid #dfe1e6;
}

.selectOptionsBox .mainOption,
.selectOptionsBox .selectOption {
  padding: 12px 15px;
  cursor: pointer;
  user-select: none;
}

.selectOptionsBox .mainOption {
  width: 100%;
  height: 50px;
  justify-content: space-between;
}

@media(max-width: 480px) {
  .selectOptionsBox .mainOption {
    height: 40px;
  }
}

main .selectOptionsBox .mainOption.active svg {
  transform: rotate(0deg);
}

.selectOptionsBox .mainOption span {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 30px;
}

.selectOptionsBox .mainOption svg {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(180deg);
  stroke: #3c4350;
}

.selectOptionsBox .selectOptionsDropdown {
  width: 100%;
  position: absolute;
  left: 0;
  top: 60px;
  max-height: 250px;
  overflow: auto;
  justify-content: flex-start;
  align-items: flex-start;
  display: none;
}

@media(max-width: 480px) {
  .selectOptionsBox .selectOptionsDropdown {
    top: 50px;
  }
}

.selectOptionsBox .selectOptionsDropdown.active {
  display: flex;
}

.selectOptionsBox .selectOptionsDropdown .selectOption {
  width: 100%;
  justify-content: space-between;
  line-height: 145%;
  position: relative;
}

.selectOptionsBox .selectOptionsDropdown .selectOption span {
  flex-grow: 1;
  padding-right: 30px;
}

.selectOptionsBox .selectOptionsDropdown .selectOption svg {
  stroke: green;
  display: none;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.selectOptionsBox .selectOptionsDropdown .selectOption.disabled {
  cursor: default;
  opacity: .7;
}

.selectOptionsBox .selectOptionsDropdown .selectOption.active {
  background: #fff;
}

.selectOptionsBox .selectOptionsDropdown .selectOption.active svg {
  display: block;
}

.hidden {
  display: none !important;
}

.rewards {
  position: relative;
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  border-radius: 10px;
}

.embla {
  --slide-size: 16.25rem;
  padding: 2rem;
  overflow: hidden;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  flex-direction: row;
}

.embla__slide {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 16.25rem;
  position: relative;
  justify-content: center;
  min-width: 0;
  padding: 1rem;
  border-radius: 10px;
  margin: 0 1rem;
}

.embla__slide h1 {
  width: 100%;
}

.embla__slide p {
  width: 100%;
}

.reward__image {
  object-fit: cover;
  width: 100%;
  max-height: 150px;
}

.reward__div {
  display: flex;
  white-space: nowrap;
  width: 100%;
}

.reward__prices {
  width: 100%;
}

.reward__prices p {
  width: auto;
}

.reward__title {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.reward__button {
  background: #000;
  color: #fff;
  width: 100%;
  font-weight: bold;
  padding: 5px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  line-height: 1.5;
}

button.btn {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: none;
  border-radius: 50px;
  z-index: 10;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  transition: transform .3s;
  margin: 0;
}

@media(max-width: 768px) {
  button.btn {
    display: none;
  }

  .age-validation h2 {
    font-size: 5vw;
  }

  .age-validation p {
    font-size: 14px;
  }

  .age-validation .warning {
    font-size: 0.7rem;
  }
}

button.btn-next {
  top: 50%;
  right: -5px;
  height: auto;
  transform: rotate(-90deg);
}

button.btn-prev {
  top: 50%;
  left: -5px;
  height: auto;
  transform: rotate(90deg);
}

button.btn-next:hover {
  transform: scale(1.5) rotate(-90deg);
}

button.btn-prev:hover {
  transform: scale(1.5) rotate(90deg);
}

.age-validation {
  width: 100%;
  position: relative;
}

.age-validation h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.age-validation p {
  margin: 0 0 10px;
}

.age-validation .innerAge {
  width: 100%;
}

.age-validation .warning {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px;
  display: none;
  color: #fff;
  background-color: crimson;
  font-weight: 700;
  border-radius: 16px;
  justify-content: center;
}

.age-validation .warning.active {
  display: flex;
}

.age-validation h2,
.age-validation p {
  text-align: center;
}

.age-validation .selectBox {
  width: 100%;
  max-width: 650px;
  justify-content: center;
  margin: 15px 0 0;
}

.age-validation .selectBox .select-container {
  position: relative;
  width: 32%;
}

.age-validation .selectBox .select-container img {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  height: 15px;
  width: 15px;
  pointer-events: none;
  margin: auto 0;
}

.age-validation .selectBox .select-container select {
  width: 100%;
  max-width: 175px;
  background: #f2f2f2;
  padding: 10px;
  padding-right: 0;
  border: none;
  border-radius: 50px;
  outline: none;
  font-size: 18px;
  margin: 0 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000; /* Ensure readable text on light background */
  -webkit-text-fill-color: #000; /* iOS Safari override */
  color-scheme: light; /* Prevent dark-mode inversion on iOS */
}

@media(max-width: 768px) {
  .age-validation .selectBox .select-container select {
    font-size: 2.5vw;
  }
}

@media(max-width: 480px) {
  .age-validation .selectBox .select-container select {
    font-size: 3.8vw;
  }
}

/* Improve option readability in supporting browsers (iOS may ignore) */
.age-validation .selectBox .select-container select option {
  color: #000;
  background: #ffffff;
}

/* iOS-specific tweak to reinforce light control appearance */
@supports (-webkit-touch-callout: none) {
  .age-validation .selectBox .select-container select {
    background-color: #f2f2f2;
    -webkit-text-fill-color: #000;
  }
}

.progress {
  width: 100%;
  background: #373737;
  padding: 4px;
  border-radius: 50px;
  margin: 10px 0;
  height: 16px;
}

.progress-bar {
  background: repeating-linear-gradient(45deg, #3f3f46, #3f3f46 50%, #e75275 50%, #e75275 75%) 0% 0% / 40px 40px;
  height: 100%;
  border-radius: 4px;
  transition: .4s linear;
  width: 100%;
  animation: progressAnimationStrike 3.5s;
}

@keyframes progressAnimationStrike {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}