@font-face {
  font-family: "Inter";
  src: url("/hc0a71405-a/hc0a71405-fonts/hc0a71405-inter_extrabold.woff2");
  font-display: swap;
  font-weight: 800;
}

@font-face {
  font-family: "Inter";
  src: url("/hc0a71405-a/hc0a71405-fonts/hc0a71405-inter_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("/hc0a71405-a/hc0a71405-fonts/hc0a71405-inter_semibold.woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("/hc0a71405-a/hc0a71405-fonts/hc0a71405-inter_medium.woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("/hc0a71405-a/hc0a71405-fonts/hc0a71405-inter_regular.woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/hc0a71405-a/hc0a71405-fonts/hc0a71405-spacegrotesk_bold.woff2");
  font-display: swap;
}

/* ===== Переменные ===== */
:root {
  --container-width: 1280px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --font-family: "Inter", sans-serif;
  --second-family: "Space Grotesk", sans-serif;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: #0b0e14;
}

.hc0a71405-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .hc0a71405-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .hc0a71405-container {
    padding: 0 var(--container-step-mobile);
  }
}

h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 36px;
    line-height: 105%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
    line-height: 110%;
  }
}

h1 .hc0a71405-orange_text{
  background: linear-gradient(180deg, #ff4d6d 0%, #ff9a5c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 27px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  margin: 0px;
}

@media (max-width: 991px) {
  h3 {
    font-size: 20x;
  }
}

@media (max-width: 600px) {
  h3 {
    font-size: 16px;
  }
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0px;
}

.hc0a71405-contact-checkbox-text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0px;
}

@media (max-width: 991px) {
  p {
    font-size: 15px;
  }

  .hc0a71405-contact-checkbox-text{
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  p {
    font-size: 14px;
    letter-spacing: normal;
  }
  
  .hc0a71405-contact-checkbox-text{
    font-size: 14px;
    letter-spacing: normal;
  }
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
}

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

section {
  margin-bottom: 80px;
}

@media (max-width: 600px) {
  section {
    margin-bottom: 50px;
  }
}

.hc0a71405-btn{
  border-radius: 10px;
  background: #ff4d6d;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 13px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hc0a71405-site-header{
  padding: 8px 0px;
  box-sizing: border-box;
}

.hc0a71405-header-inner{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc0a71405-nav-list{
  flex-direction: row;
  gap: 32px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

button{
  cursor: pointer;
}

.hc0a71405-list_and_reg_panel{
  display: flex;
  align-items: center;
  gap: 24px;
}

.hc0a71405-auth_buttons{
  display: flex;
  gap: 8px;
}

.hc0a71405-nav-link.hc0a71405-active{
  color: #fff;
}

.hc0a71405-nav-link:hover{
  color: #fff;
}

.hc0a71405-auth_buttons .hc0a71405-log-in-btn{
  text-align: center;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  border-radius: 10px;
  padding: 12px 16px;
  background: #6ae3c1;
  text-transform: none;
  text-decoration: none;
  text-decoration-skip-ink: none;
}

.hc0a71405-auth_buttons .hc0a71405-register-btn{
  text-align: center;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  background: rgba(106, 227, 193, 0.2);
  border: 1px solid #6ae3c1;
  text-transform: none;
  text-decoration: none;
  text-decoration-skip-ink: none;
}

.hc0a71405-hero-section{
  background: #141625;
  padding: 40px 0px;
}

.hc0a71405-hero-container{
  flex-direction: row;
  gap: 50px;
  max-width: 1268px;
}

.hc0a71405-hero-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}

.hc0a71405-hero-title{
  text-align: start;
}

.hc0a71405-countdown-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 32px 0px;
  box-sizing: border-box;
  border-radius: 26px;
  backdrop-filter: blur(42.79999923706055px);
  background: #0d0f1a;
  border: 2px solid #905410;
}

.hc0a71405-countdown{
  display: flex;
  gap: 20px;
}

.hc0a71405-countdown-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc0a71405-countdown-label{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.hc0a71405-countdown-value{
  width: 80px;
  height: 80px;
  background: #6ae3c1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}

.hc0a71405-hero-image{
  flex: 1;
  max-width: 450px;
}

.hc0a71405-steps-list{
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hc0a71405-step-item{
  max-width: 305px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-radius: 20px;
  padding: 23px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #FF7464;
}

.hc0a71405-step_text{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc0a71405-about-content{
  display: flex;
  align-items: center;
  gap: 24px;
}

.hc0a71405-about-image{
  flex: 1;
  min-width: 0px;
}

.hc0a71405-about-list{
  flex: 1;
  gap: 16px;
}

.hc0a71405-about-item{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc0a71405-about-sublist{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  list-style: disc;
  padding-left: 14px;
}

@media screen and (max-width: 991px) {
  .hc0a71405-about-content{
    flex-direction: column-reverse;
  }

  .hc0a71405-about-image{
    width: 100%;
  }
}

.hc0a71405-site-footer{
  background: black;
  padding: 20px 0px;
}

.hc0a71405-hero_content{
  max-width: 738px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hc0a71405-hero_content h1{
  text-align: center;
}

.hc0a71405-hero-subtext{
  letter-spacing: normal;
}

.hc0a71405-contact-container{
  flex-direction: row;
  gap: 20px;
}

.hc0a71405-contact-form{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc0a71405-contact-input{
  border: 1px solid #6ae3c1;
  border-radius: 10px;
  padding: 14px;
  background: #151a26;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.hc0a71405-contact-checkbox-label{
  display: flex;
  gap: 8px;
  align-items: center;
}

.hc0a71405-contact-info{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-contact-info-list{
  gap: 8px;
}

.hc0a71405-contact-info-item{
  display: flex;
  gap: 4px;
}

.hc0a71405-testimonials-list{
  flex-direction: row;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hc0a71405-testimonial-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  box-sizing: border-box;
  border: 1px solid #FF7464;
  border-radius: 20px;
}

.hc0a71405-testimonial-text{
  font-size: 18px;
  color: #fff;
}

.hc0a71405-testimonial-author{
  font-size: 18px;

}

.hc0a71405-footer-regulatory{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  gap: 10px;
  background: #151a26;
}

.hc0a71405-footer-regulatory.hc0a71405-transparent{
  background: none;
}

.hc0a71405-footer-regulatory-text{
  letter-spacing: normal;
  color: #fff;
}

.hc0a71405-footer-title{
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fefefe;
}

.hc0a71405-footer-title{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fefefe;
}

.hc0a71405-footer-resources-list{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #6ae3c1;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hc0a71405-footer-translation-note{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.hc0a71405-footer-social-list{
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.hc0a71405-footer-copy{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}







.hc0a71405-lottery-container{
  flex-wrap: nowrap;
}

.hc0a71405-draw-selection-block{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-section-title{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.hc0a71405-draw-button-group{
  display: flex;
  gap: 16px;
}

.hc0a71405-draw-btn{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #ff4d6d;
  border-radius: 20px;
  padding: 10.5px 32px;
  background: none;
}

.hc0a71405-cart_container{
  flex-direction: row;
}

.hc0a71405-number-selection-cart-wrapper{
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 24px;
  flex: 1;
}

.hc0a71405-number-selection-block{
  max-width: 847px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-section-title{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.hc0a71405-instructions{
  width: 100%;
  border: 1px solid #6ae3c1;
  border-radius: 20px;
  padding: 23px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  display: none;
}

.hc0a71405-number-list{
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 11px;
  row-gap: 16px;
}

.hc0a71405-grand_numbers{
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 11px;
  row-gap: 16px;
}

.hc0a71405-number-item {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #6ae3c1;
  background: rgba(106, 227, 193, 0.05);
  box-sizing: border-box;
  border-radius: 300px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.hc0a71405-number-controls{
  display: flex;
  gap: 16px;
}


.hc0a71405-quick-pick-btn, .hc0a71405-clear-btn{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
  padding: 0px;
  border: 0px;
  background: none;
  border-radius: 8px;
  padding: 10.5px 32px;
  background: #151a26;
}

.hc0a71405-customer-details-block{
  display: flex;
  flex-direction: column;
  max-width: 847px;
  gap: 16px;
}

.hc0a71405-section-title{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.hc0a71405-customer-input{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  padding: 14px;
  border: 0px;
  border-radius: 10px;
  border: 1px solid #6ae3c1;
  background: #151a26;
}

.hc0a71405-age-confirmation{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
}

.hc0a71405-complete-order-btn{
  background: #ff4d6d;
  border: 0px;
  padding: 13px 48px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .hc0a71405-main-navigation{
    display: none;
  }

  .hc0a71405-footer-social-list{
    flex-wrap: wrap;
    gap: 16px;
  }

  .hc0a71405-footer-resources-list{
    gap: 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #ffc542;
  }
}

@media screen and (max-width: 600px) {
  .hc0a71405-footer-translation-note{
    font-size: 15px;
  }
}

.hc0a71405-cart-summary-block{
  max-width: 409px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-cart-details{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
  box-sizing: border-box;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
  border-radius: 16px;
  background: #151a26;
  border: 1px solid #6ae3c1;
}

.hc0a71405-cart-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc0a71405-divider_line{
  width: 100%;
  height: 1px;
  background: #6ae3c1;
}


.hc0a71405-number-item.hc0a71405-selected {
  background: #6ae3c1;
  color: #000;
}

.hc0a71405-draw-btn.hc0a71405-active {
  background: #ff4d6d;
  border-color: transparent;
}

.hc0a71405-instructions-text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
}

.hc0a71405-ticket-line{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc0a71405-ticket-line div{
  display: flex;
  justify-content: space-between;
}

.hc0a71405-added_tickets{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-message{
  display: none;
}

.hc0a71405-active .hc0a71405-message{
  display: block;
}

@media screen and (max-width: 600px) {
  .hc0a71405-draw-button-group{
    flex-wrap: wrap;
  }

  .hc0a71405-number-controls{
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 635px) {
  .hc0a71405-number-list{
    gap: 0px;
    justify-content: space-between;
    gap: 4px;
    row-gap: 16px;
  }

  .hc0a71405-instructions-text{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.8);
  }

  .hc0a71405-instructions{
    padding: 10px;
  }

  .hc0a71405-number-item{
    width: 42px;
    height: 40px;
  }
}


.hc0a71405-cookie_popup-wrapper{
  position: fixed;
  bottom: 10px;
  width: 100%;
  max-width: 1396px;
  padding: 24px 10px;
  justify-self: anchor-center;
  box-sizing: border-box;
}

.hc0a71405-cookie_popup-overlay{
  width: 100%;
  background: #212533;
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  padding: 24px 16px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 10px;
}

.hc0a71405-cookie_popup-content{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.hc0a71405-cookie_popup-title{
  text-shadow: 0 2px 4px #6ae3c1;
}

.hc0a71405-cookie_popup-actions{
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc0a71405-cookie_popup-link-reject{
  border: 2px solid #ff4d6d;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: white;
}

.hc0a71405-cookie_popup-button-accept{
  border: 2px solid #ff4d6d;
  background: #ff4d6d;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.hc0a71405-overlay{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(000, 000, 000, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hc0a71405-overlay .hc0a71405-container{
  width: 100%;
  align-items: center;
}

.hc0a71405-popup_content_wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  background: #0b0e14;
  padding: 50px 40px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 16px;
  box-sizing: border-box;
}

.hc0a71405-popup_content_wrapper h2{
  text-shadow: 0 2px 4px #6ae3c1;
}

.hc0a71405-eighteen_plus_confirmation{
  max-width: 386px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hc0a71405-log_in_button{
  background: #ff4d6d;
  border: 0px;
  padding: 13px 48px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.hc0a71405-btn:disabled{
  background: rgba(255, 77, 110, 0.193);
  cursor: not-allowed;
}







.hc0a71405-popup-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 386px;
  gap: 20px;
}

.hc0a71405-popup-fields{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

.hc0a71405-popup-input-group{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}

.hc0a71405-popup-input{
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  border: 0px;
  background: #151a26;
}

.hc0a71405-forgot-password-btn{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: start;
  color: rgba(255, 255, 255, 0.6);
  padding: 0px;
  border: 0px;
  background: none;
}

.hc0a71405-popup-footer{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hc0a71405-sign-up-btn{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: #fff;
  padding: 0px;
  border: 0px;
  background: none;
}

.hc0a71405-checkbox-label{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 10px;
}

.hc0a71405-log-in-btn{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: #fff;
  padding: 0px;
  border: 0px;
  background: none;
}

#signup,
#login,
.hc0a71405-eighteen_plus_confirmation {
    display: none;
}

/* Burger default hidden on desktop */
.hc0a71405-burger {
  display: none;
  width: 24px;
  height: 19px;
  position: relative;
  cursor: pointer;
  z-index: 200;
}

.hc0a71405-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: white;
  transition: all 0.3s ease;
}

.hc0a71405-burger span:nth-child(1) {
  top: 0;
}

.hc0a71405-burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hc0a71405-burger span:nth-child(3) {
  bottom: 0;
}

/* Animated cross */
.hc0a71405-burger.hc0a71405-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.hc0a71405-burger.hc0a71405-active span:nth-child(2) {
  opacity: 0;
}

.hc0a71405-burger.hc0a71405-active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 50%;
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
  .hc0a71405-burger {
    display: block;
  }

  .hc0a71405-main-navigation {
    display: flex;
    padding: 20px;
    border-radius: 16px;
    flex-direction: column;
    gap: 20px;
  }

  .hc0a71405-list_and_reg_panel{
    position: absolute;
    top: 80px;
    right: 12px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    background: rgba(42, 49, 82, 0.97);
  }

  .hc0a71405-list_and_reg_panel.hc0a71405-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    flex-direction: column;
    padding: 20px;
    z-index: 2;
  }

  .hc0a71405-nav-list {
    flex-direction: column;
    gap: 16px;
  }
}

.hc0a71405-policy_page .hc0a71405-hero-container{
  justify-content: center;
}

.hc0a71405-policy_page p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.hc0a71405-policy_page ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  list-style: disc;
  padding-left: 15px;
}

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


.hc0a71405-product_modal_overlay{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(000, 000, 000, 0.7);
  display: flex;
  justify-content: center;
  left: 0px;
  align-items: center;
}

.hc0a71405-product_modal_overlay .hc0a71405-container{
  width: 100%;
  align-items: center;
}

.hc0a71405-modal{
  margin: auto;
  max-width: 1240px;
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 40px;
  padding: 40px;
  border-radius: 16px;
  box-sizing: border-box;
  background: #141625;
  position: relative;
}

.hc0a71405-modal_img{
  background-image: url("/hc0a71405-a/hc0a71405-img/hc0a71405-explorer_lotto.webp");
  flex: 1;
  background-size: cover;
  background-position: center;
  aspect-ratio: 340 / 200;
}

.hc0a71405-modal-content{
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.hc0a71405-product-header{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-product-price{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ff4d6d 0%, #ff9a5c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hc0a71405-product-divider{
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hc0a71405-product-description-section{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-product-details{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc0a71405-details-list{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  list-style: disc;
  padding-left: 15px;
}

.hc0a71405-product-actions{
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hc0a71405-quantity-selector{
  display: flex;
  padding: 8px;
  min-width: 124px;
  max-width: 124px;
  box-sizing: border-box;
}

.hc0a71405-quantity-btn{
  border-radius: 10px;
  width: 34px;
  height: 34px;
  border: 0px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hc0a71405-quantity-display{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 40px;
}

.hc0a71405-add-to-cart-btn{
  flex: 1;
}

.hc0a71405-modal-close-btn{
  display: flex;
  height: fit-content;
  width: fit-content;
  padding: 0px;
  position: absolute;
  top: -37px;
  right: 0px;
  background: none;
  border: 0px;
}

.hc0a71405-product-short-description{
  font-size: 18px;
}

.hc0a71405-details-title{
  font-size: 18px;
}

.hc0a71405-product-list{
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hc0a71405-product-card{
  max-width: 413px;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  background: #141625;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc0a71405-product-image{
  background-image: url("/hc0a71405-a/hc0a71405-img/hc0a71405-explorer_lotto.webp");
  height: 250px;
  background-size: cover;
  background-position: center;
}

.hc0a71405-product-content{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc0a71405-product-info{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc0a71405-product-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc0a71405-cart-wrapper{
  max-width: 847px;
  flex: 1;
}

.hc0a71405-cart-header{
  display: flex;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hc0a71405-cart-header-product{
  flex: 1;
  max-width: 248px;
}

.hc0a71405-cart-header-price{
  flex: 1;
  max-width: 54px;
}

.hc0a71405-cart-header-quantity{
  flex: 1;
  min-width: 124px;
  max-width: 124px;
}

.hc0a71405-cart-header-subtotal{
  flex: 1;
  max-width: 167px;
  min-width: 84px;
}

.hc0a71405-cart-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hc0a71405-item-info{
  display: flex;
  max-width: 250px;
  gap: 12px;
  flex: 1;
}

.hc0a71405-item-image{
  width: 100px;
  height: 100px;
}

.hc0a71405-item-price-wrapper{
  flex: 1;
  max-width: 53px;
}

.hc0a71405-item-price{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.hc0a71405-cart-item .hc0a71405-quantity-selector{
  flex: 1;
}

.hc0a71405-item-total-wrapper{
  flex: 1;
  max-width: 162px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc0a71405-item-total{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.hc0a71405-remove-item-btn{
  padding: 0px;
  border: 0px;
  background: none;
}

.hc0a71405-cart-summary{
  flex: 1;
  max-width: 409px;
}

.hc0a71405-cart-summary-title{
  margin-bottom: 16px;
}

.hc0a71405-cart-summary-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: #141625;
}

.hc0a71405-cart-summary-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
}

.hc0a71405-divisible_line{
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 724px) {
  .hc0a71405-modal{
    flex-direction: column;
    padding: 30px 10px;
  }
}

@media screen and (max-width: 600px) {
  .hc0a71405-product-price{
    font-size: 16px;
  }

  .hc0a71405-product-short-description{
    font-size: 14px;
  }
  
  .hc0a71405-details-title{
    font-size: 14px;
  }

  .hc0a71405-details-list{
    font-size: 14px;
  }
}

@media screen and (max-width: 1138px) {
  .hc0a71405-cart_container{
    flex-direction: column;
    align-items: center;
  }

  .hc0a71405-cart-wrapper{
    width: 100%;
  }

  .hc0a71405-cart-summary{
    width: 100%;
  }
}

@media screen and (max-width: 660px) {
  .hc0a71405-item-total-wrapper{
    max-width: 24px;
  }

  .hc0a71405-cart-header{
    display: none;
  }

  .hc0a71405-item-total{
    display: none;
  }

  .hc0a71405-cart-item{
    flex-wrap: wrap;
    gap: 10px;
  }
}





.hc0a71405-checkout-form{
  display: flex;
  gap: 20px;
}

.hc0a71405-billing-section{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hc0a71405-order-section{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  border-radius: 20px;
  padding: 24px;
  background: #141625;
  box-sizing: border-box;
}

.hc0a71405-form-label{
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  min-width: 0px;
}

.hc0a71405-billing-fields{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc0a71405-billing-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hc0a71405-billing-section .hc0a71405-form-input{
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 14px 16px;
  background: #141625;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
}

.hc0a71405-order-list{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hc0a71405-order-item{
  display: flex;
  justify-content: space-between;
  padding: 12px 0px;
}

.hc0a71405-order-row{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  padding: 12px 0px;
}

.hc0a71405-payment-fields{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc0a71405-payment-method{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
}

.hc0a71405-payment-icons{
  flex-direction: row;
  gap: 8px;
}

.hc0a71405-payment-row{
  display: flex;
  gap: 10px;
}

.hc0a71405-privacy-note{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}

.hc0a71405-terms-label{
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  gap: 5px;
}

.hc0a71405-order-section .hc0a71405-form-input{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  .hc0a71405-countdown{
    gap: 8px;
  }

  .hc0a71405-countdown-value{
    width: 60px;
    height: 60px;
    font-size: 16px;
  }

  .hc0a71405-hero-image{
    display: none;
  }

  .hc0a71405-checkout-form{
    flex-direction: column;
  }

  .hc0a71405-order-section{
    max-width: none;
  }
}

.hc0a71405-contact_us_page h1{
  text-align: center;
}

.hc0a71405-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  padding-bottom: 16px;
  background: #151a26;
}

.hc0a71405-row {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  min-height: 80px;
  padding-left: 16px;
  padding-bottom: 16px;
}

.hc0a71405-row.hc0a71405-header{
  border: 3px solid #151a26;
  background: #0b0e14;
  margin-bottom: 16px;
  padding-bottom: 0px;
}

.hc0a71405-row ul{
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.hc0a71405-round_number{
  border: 1px solid #6ae3c1;
  border-radius: 300px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #000;
  background: #6ae3c1;
}

.hc0a71405-cell {
  display: flex;
  align-items: center;
}

.hc0a71405-col-1 { flex: 289; min-width: 0; }
.hc0a71405-col-2 { flex: 305; min-width: 0; }
.hc0a71405-col-3 { flex: 630; min-width: 0; }

.hc0a71405-header {
  font-weight: bold;
  background-color: #f5f5f5;
}

@media screen and (max-width: 600px) {
  .hc0a71405-table h3{
    font-size: 14px;
  }

  .hc0a71405-round_number{
    font-size: 14px;
    height: 30px;
    width: 30px;
  }
  
  .hc0a71405-col-1 { flex: 99; min-width: 0; }
  .hc0a71405-col-2 { flex: 106; min-width: 0; }
  .hc0a71405-col-3 { flex: 107; min-width: 0; }

  .hc0a71405-row ul{
    gap: 4px;
  }
}

@media screen and (max-width: 360px) {
  .hc0a71405-col-1{
    max-width: 99px;
  }

  .hc0a71405-col-2{
    max-width: 106px;
  }

  .hc0a71405-col-3{
    max-width: 107px;
  }
}