:root {
  --color-1: #e21f66;
  /* pink */
  --bg: #000000;
  --white: #ffffff;
  --color-2: #c2ff90;
  /* lime */
  --color-3: #342a40;
  /* dark */
  --container: 1160px;

   /* Colors */
   --color-primary: #E21F66;
   --color-accent: #C2FF90;
   --color-white: #FFFFFF;
   --color-black: #000000;
   --color-border: #342A40;
   
   /* Typography */
   --font-bebas: 'Bebas Neue', sans-serif;
   --font-montserrat: 'Montserrat', sans-serif;
   
   /* Font Weights */
   --font-medium: 500;
   --font-bold: 700;
   --font-extrabold: 800;
   --font-black: 900;
   
   /* Font Sizes */
   --text-xs: 11.68px;
   --text-sm: 14px;
   --text-base: 16px;
   --text-lg: 22px;
   --text-xl: 27px;
   --text-2xl: 36px;
   --text-3xl: 54.502px;
   --text-4xl: 64px;
   --text-5xl: 81.154px;
   
   /* Spacing */
   --spacing-xs: 8px;
   --spacing-sm: 16px;
   --spacing-md: 24px;
   --spacing-lg: 32px;
   --spacing-xl: 48px;
   
   /* Breakpoints */
   --mobile: 375px;
   --tablet: 768px;
   --desktop: 1200px;
   
   /* Border Radius */
   --radius-sm: 10.093px;
   --radius-md: 15.028px;
   --radius-lg: 24.334px;
   --radius-full: 50px;
   
   /* Shadows */
   --shadow-text: 4px 0px 0px var(--color-primary);
   --shadow-box: 4px 4px 0px 0px var(--color-black);
   --shadow-mobile: 2.686px 2.686px 0px 0px var(--color-black);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.wrap {
  width: 90%;
  max-width: 765px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: var(--radius-lg);
  background-color: var(--color-accent);
  border: 2.92px solid var(--color-accent);
  font-family: var(--font-montserrat);
  font-weight: var(--font-bold);
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn-nav {
  padding: 6px 13.5px;
  border-radius: var(--radius-full);
  border-width: 1.5px;
  font-size: var(--text-sm);
  color: var(--color-white);
  background-color: transparent;
}

.btn-action {
  background-color: var(--color-primary);
  border: 4.5px solid #342A40;
  border-radius: 37.5px;
  font-size: 18px;
  padding: 20px 40px;
  animation: btnActionPulse 2s ease-in-out infinite;
}

@keyframes btnActionPulse {
  0%, 100% { background-color: var(--color-primary); color: #C2FF90; }
  50% { background-color: var(--color-accent); color: #E21F66;}
}

.header {
  margin: 30px 0;
}

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

.nav-logo {
  width: 134px;
  height: auto;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn--small {
  border-width: 2.38px;
  border-radius: 52.38px;
  padding: 9px 18px;
  font-size: 9.52px;
  background-color: var(--color-primary);
  border: 2.3px solid #342A40;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--color-2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 18px;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(199 76 140 / 0%) 45%);
}

.hero-container {
  position: relative;
  width: 100%;
  padding-top: 1px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 827px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video {
  position: relative;
  width: 90%;
  max-width: 350px;
  height: auto;
  margin: 20px auto 15px;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--color-primary);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 36.06%, rgba(0, 0, 0, 0.00) 93.75%);
}

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

.hero__img {
  width: 100%;
  max-width: 766px;
  border: 6px solid var(--color-1);
  border-radius: 39.9px;
  object-fit: cover;
  background: linear-gradient(180deg, #ff79c6, #282a36);
  height: auto;
}

.hero__frame {
  position: relative;
  z-index: 1;
}

.hero__frame.desktop {
  display: none;
}

.timer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--color-2);
  border: 4.5px solid var(--color-3);
  border-radius: 15px;
  padding: 22px 60px;
  margin: -20px auto 0;
  width: 90%;
}

.timer__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-1);
}

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

.timer__chance {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: -1.46px;
  font-size: 58px;
  line-height: 45px;
}

.timer__tokens {
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 41.6px;
}

.timer__every {
  font-style: italic;
  font-family: sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  color: var(--color-2);
  text-shadow: 2px 1px 0 var(--color-1);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  -webkit-text-fill-color: currentColor;
}

/* Fallback for browsers/devices where text-stroke is unsupported or buggy */
@supports not (-webkit-text-stroke: 1px #000) {
  .timer__every {
    text-shadow: -1px 0 0 #000, 0 1px 0 #000, 1px 0 0 #000, 0 -1px 0 #000, 2px 1px 0 var(--color-1);
  }
}

/* Prefer fallback on mobile (e.g., some Android WebViews) */
@media (max-width: 767px) {
  .timer__every {
    -webkit-text-stroke-width: 0;
    text-shadow: -1px 0 0 #000, 0 1px 0 #000, 1px 0 0 #000, 0 -1px 0 #000, 2px 1px 0 var(--color-1);
  }
}

.timer__clock {
  display: flex;
  align-items: start;
  gap: 6px;
}

.timer__clock span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 76.32px;
  color: #000;
  text-shadow: 2.9px 2.9px 0 var(--color-1);
}

.timer__colon {
  font-size: 57px;
  line-height: 1;
}

.hero__title {
  margin: 30px auto 35px;
  font-weight: 800;
  font-size: 35px;
  line-height: 1;
  text-align: center;
  text-shadow: 4px 0 0 var(--color-1);
  letter-spacing: -0.6px;
  position: relative;
  z-index: 1;
}

.hero__title br {
  display: block;
}

.steps {
  padding: 60px 0;
}

.steps__item.mobile {
  display: block;
  border-top: 2px solid var(--color-white);
  padding: 30px 0 0;
}

.steps__item.mobile .steps__text{
  font-weight: 600;
}

.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.steps__heading {
  margin: 0;
  font-weight: 600;
  font-size: 36px;
}

.steps__index {
  color: #fff;
}

.steps__accent {
  color: #79f19f;
}

.steps__text {
  margin: 10px 0 0;
  font-weight: 500;
  font-size: 22px;
}

.steps__pro {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}

.steps__pro.desktop {
  display: none;
}

.cta {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* Footer */
footer {
  padding-left: 20px;
  padding-right: 20px;
}

.footer-content {  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  max-width: 1222px;
  margin: 0 auto;
  padding: 50px 0 70px;
  border-top: 2px solid var(--color-white);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-info {
  text-align: center;
  font-size: 16px;
}

.footer-info a {
  color: var(--color-white);
  text-decoration: underline;
  margin-left: 10px;
  line-height: 1;
}

.footer-badges {
  display: flex;
  gap: 7px;
  align-items: flex-end;
  margin-top: 5px;
  justify-content: center;
}

.footer-badges img {
  height: 12px;
  width: auto;
}

/* Mobile-first layout */
.hero__img {
  max-width: 384px;
  border-width: 3px;
  border-radius: 20px;
}

.timer {
  width: 90%;
  max-width: 550px;
  border-width: 3.12px;
  border-radius: 10.4px;
  padding: 50px 10px 24px;
  gap: 15px;
  position: relative;
  flex-direction: column;
}

.timer__chance {
  font-size: 56.2px;
}

.timer__tokens {
  font-size: 40.07px;
}

.timer__clock {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-2);
  border: 4.5px solid var(--color-3);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  border-width: 3.12px;
  border-radius: 10.4px;
}

.timer__clock span {
  font-size: 72.71px;
  text-shadow: 2.77px 2.77px 0 var(--color-1);
}

.timer__colon {
  font-size: 54.64px;
}

.sticky.mobile {
  display: flex !important;
}

.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.sticky .btn-action {
  border-radius: 0 !important;
  border: none !important;
  width: 100% !important;
  font-size: 16px !important;
  padding: 20px;
}

/* Desktop ≥ 1024px */
@media (min-width:1024px) {
  .wrap {
    width: 100%;
    max-width: 765px;
    margin: 0 auto;
  }

  .nav-logo {
    width: 228px;
    height: auto;
  }

  .btn-nav {
    font-size: 18px;
  }

  .btn-nav:hover {
    background-color: var(--color-accent);
    color: var(--color-black);
  }

  .hero {
    position: relative;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(199 76 140 / 0%) 66%);
  }

  .hero-container {
    padding-top: 50px;
  }

  .hero-video {
    position: relative;
    width: 100%;
    max-width: 765px;
    height: 430px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 40px;
    border: 6px solid  var(--color-primary);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 36.06%, rgba(0, 0, 0, 0.00) 93.75%);
  }

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

  .hero__img {
    max-width: 766px;
    border-width: 5.98px;
    border-radius: 39.9px;
  }

  .hero__frame.mobile {
    display: none;
   }

   .hero__frame.desktop {
    display: block;
   }

  .timer {
    width: 100%;
    max-width: 550px;
    padding: 22px 60px;
    gap: 30px;
    flex-direction: row;
    border: 4.5px solid var(--color-1);
  }

  .hero__title {
    font-size: 60px;
    text-align: left;
    margin: 60px auto 35px;
    position: relative;
    z-index: 1;
    line-height: normal;
  }

  .hero__title br {
    display: none;
  }

  .timer__every {
    font-size: 25px;
    position: absolute;
    right: 99.908px;
    bottom: 71.047px;
    font-style: italic;
    font-family: sans-serif;
    font-weight: 900;
    color: var(--color-accent);
    line-height: normal;
    text-align: center;
    text-shadow: 2px 1px 0 #E21F66;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    -webkit-text-fill-color: currentColor;
    transform: rotate(-5.41deg);
    width: 100%;
  }

  @supports not (-webkit-text-stroke: 1px #000) {
    .timer__every {
      text-shadow: -2px 0 0 #000, 0 2px 0 #000, 2px 0 0 #000, 0 -2px 0 #000, 2px 1px 0 #E21F66;
    }
  }

  .timer__clock {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
  }

  .steps {
    padding-top: 0;
  }

  .steps__pro.desktop {
    display: block
  }

  .steps__item.mobile {
    display: none;
  }

  footer {
    padding: 0 110px;
  }

  .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1222px;
    margin: 0 auto;
    gap: 49px;
    padding: 50px 0;
    border-top: 2px solid var(--color-white);
  }

  .footer-logo {
    width: 228px;
    height: auto;
  }

  .footer-badges {
    justify-content: flex-end;
  }

  .footer-info {
    text-align: right;
  }

  .sticky.mobile {
    display: none !important;
  }
}