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

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

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

@font-face {
  font-family: Montserrat;
  src: url("/hde33ccf3-core/hde33ccf3-assets/hde33ccf3-fonts/hde33ccf3-montserrat-bold.woff2");
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/hde33ccf3-core/hde33ccf3-assets/hde33ccf3-fonts/hde33ccf3-opensans-semibold.woff2");
  font-display: swap;
}


/* ===== Переменные ===== */
:root {
  --container-width: 1240px;
  --container-step: 28px;
  --container-step-tablet: 26px;
  --container-step-mobile: 24px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --bg: #171717;
  --button: #ffbb61;
  --text-gray: #4d4d4d;
  --black-text: #2f2f2f;
  --white: #fff;
  --card: #100e12;
  --text-gray: #d9d9d9;
  --font-family: "Inter", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --font3: "Open Sans", sans-serif;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: url("/hde33ccf3-core/hde33ccf3-assets/hde33ccf3-images/hde33ccf3-home_page_bg.webp");
  background-size: cover;
}

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

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

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

h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 31px;
  }
}

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

h1 .hde33ccf3-pink{
  background: linear-gradient(180deg, #d2855e 0%, #8637b1 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin: 0px;
}

h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin: 0px;
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 141%;
  color: var(--white);
  margin: 0px;
}

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

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

section {
  margin-bottom: 40px;
}

.hde33ccf3-btn{
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 112%;
  color: var(--black-text);
  border-radius: 10px;
  padding: 16px 0px;
  width: 100%;
  background: var(--button);
  border: 0px;
}

.hde33ccf3-gradient_border{
  position: relative;
}

.hde33ccf3-gradient_border::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to bottom, #D2855E 0%, #8637B1 100%);
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
          border-radius: 24px;
}


.hde33ccf3-site-header{
  padding: 11.17px 0px;
  background: #100606;
}

.hde33ccf3-header-container{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.hde33ccf3-nav-list{
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: var(--font3);
  font-weight: 600;
  font-size: 17px;
  line-height: 141%;
  color: var(--white);
}

.hde33ccf3-nav-actions{
  display: flex;
  gap: 8px;
}

.hde33ccf3-btn-login{
  padding: 12px 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  box-sizing: border-box;
  border: 0px;
}

.hde33ccf3-btn-register{
  border: 1px solid var(--button);
  background: rgba(255, 187, 97, 0.24);
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 112%;
  color: var(--white);
  padding: 12px 16px;
  box-sizing: border-box;
}

.hde33ccf3-hero-section{
  padding-top: 9px;
  padding-bottom: 11px;
}

.hde33ccf3-hero-container{
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  flex-wrap: nowrap;
}

.hde33ccf3-hero-content{
  max-width: 612px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  flex: 1;
}

.hde33ccf3-countdown{
  display: flex;
  padding: 32px;
  width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(42.79999923706055px);
  background: var(--card);
  border-radius: 26px;
  gap: 10px;
}

.hde33ccf3-countdown::before{
  border-radius: 26px;
}

.hde33ccf3-countdown-timer{
  display: flex;
  justify-content: center;
  max-width: 380px;
  width: 100%;
  gap: 20px;
}

.hde33ccf3-countdown-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hde33ccf3-countdown-label{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  text-align: center;
  color: var(--text-gray);
}

.hde33ccf3-countdown-value{
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: #feffff;
  background: #8866a9;
  border-radius: 13px;
}

.hde33ccf3-hero-image{
  max-width: 382px;
  height: 492px;
  width: 100%;
  min-width: 0px;
  flex: 1;
}










.hde33ccf3-lottery-list{
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hde33ccf3-lottery-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--card);
  padding: 16px;
  flex: 1;
  box-sizing: border-box;
  border-radius: 24px;
  justify-content: space-between;
}

.hde33ccf3-lottery-item::before{
  border-radius: 24px;
}

.hde33ccf3-lottery-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.hde33ccf3-lottery-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hde33ccf3-lottery-meta{
  gap: 16px;
}

.hde33ccf3-lottery-meta-item{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.hde33ccf3-step-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 292px;
  width: 100%;
  border-radius: 24px;
  padding: 16px;
  box-sizing: border-box;
  background: var(--card);
}

.hde33ccf3-step-item::before{
  border-radius: 24px;
}

.hde33ccf3-step-content{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

.hde33ccf3-site-footer{
  padding-top: 20px;
  padding-bottom: 9px;
  background: #100606;
}

.hde33ccf3-footer-container{
  gap: 8px;
}

.hde33ccf3-footer-regulatory{
  background: #1a121e;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hde33ccf3-footer-license-list{
  flex-direction: row;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 200%;
  text-align: center;
  color: var(--text-gray);
  gap: 20px;
  list-style: disc;
  flex-wrap: wrap;
  row-gap: 10px;
  max-width: 950px;
  align-self: center;
  justify-content: start;
}

.hde33ccf3-footer-responsible-gaming{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.hde33ccf3-footer-responsible-links{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  color: #ffbd43;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hde33ccf3-footer-disclaimer{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 200%;
  text-align: center;
  color: #878787;
}

.hde33ccf3-footer-badges{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hde33ccf3-site-footer h3{
  color: #ffbd43;
}

.hde33ccf3-about-us{
  margin-top: 40px;
}

.hde33ccf3-about-us-layout{
  display: flex;
  gap: 24px;
  padding: 24px 0px;
  align-items: center;
}

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

.hde33ccf3-about-us-content{
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.hde33ccf3-about-us-heading{
  text-align: start;
}

.hde33ccf3-mission-vision-grid{
  display: flex;
  gap: 24px;
}

.hde33ccf3-mission-card{
  flex: 1;
  padding: 16px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 24px;
  gap: 16px;
  background: var(--card);
}

.hde33ccf3-mission-card::before{
  border-radius: 24px;
}








.hde33ccf3-contact-us{
  margin-top: 40px;
}

.hde33ccf3-contact-content{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hde33ccf3-contact-info{
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--card);
}

.hde33ccf3-contact-info-title{
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 112%;
  color: var(--white);
}

.hde33ccf3-contact-info-list{
  gap: 16px;
}

.hde33ccf3-contact-info-item{
  display: flex;
  gap: 16px;
  align-items: center;
}

.hde33ccf3-contact-form{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hde33ccf3-contact-form-field{
  padding: 1px;
}

.hde33ccf3-contact-input{
  width: 100%;
  box-sizing: border-box;
  border: 0px;
  height: 100%;
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  color: var(--black-text);
}

.hde33ccf3-contact-textarea{
  width: 100%;
  box-sizing: border-box;
  border: 0px;
  min-height: 100%;
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  color: var(--black-text);
  height: 159px;
}

.hde33ccf3-contact-submit-button{
  background: var(--button);
  border: 0px;
  padding: 16px;
  width: 100%;
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 112%;
  color: var(--black-text);
}






.hde33ccf3-policy_section{
  margin-top: 40px;
}

.hde33ccf3-policy_heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  text-align: center;
  color: var(--white);
  gap: 16px;
  flex-wrap: wrap;
}

.hde33ccf3-cookie_policy_content{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}

.hde33ccf3-cookie_policy_content h3{
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 112%;
  color: var(--white);
  text-align: start;
  text-transform: none;
}

.hde33ccf3-cookie_policy_content ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  color: var(--white);
  list-style: disc;
  padding-left: 25px;
}

.hde33ccf3-cookie_policy_content p{
  text-align: start;
}

.hde33ccf3-policy_paragraph_item{
  display: flex;
  flex-direction: column;
  gap: 16px;
}


@media screen and (max-width: 991px) {
  .hde33ccf3-hero-container{
    justify-content: center;
    flex-wrap: wrap;
  }

  .hde33ccf3-hero-image{
    height: auto;
  }

  .hde33ccf3-about-us-layout{
    flex-direction: column-reverse;
  }

  .hde33ccf3-about-us-image{
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .hde33ccf3-hero-image{
    display: none;
  }
}

@media screen and (max-width: 660px) {
  .hde33ccf3-step-item{
    width: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .hde33ccf3-countdown-value{
    width: 60px;
    height: 60px;
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 17px;
    line-height: 112%;
    text-align: center;
    color: #feffff;
  }

  .hde33ccf3-countdown-title{
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 17px;
    line-height: 112%;
    text-align: center;
    color: var(--white);
  }

  .hde33ccf3-countdown{
    padding: 16px 8px;
  }

  .hde33ccf3-countdown-timer{
    gap: 8px;
  }

  .hde33ccf3-mission-vision-grid{
    flex-direction: column;
  }

  .hde33ccf3-footer-badges{
    justify-content: center;
    column-gap: 50px;
  }

  .hde33ccf3-footer-responsible-links{
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hde33ccf3-contact-content{
    flex-direction: column-reverse;
  }
}



.hde33ccf3-auth-overlay{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100vh;
  align-items: center;
  display: flex;
  background: #0000009e;
}

.hde33ccf3-auth-container{
  width: 100%;
  align-items: center;
  max-width: 656px;
}

.hde33ccf3-auth-wrapper{
  max-width: 600px;
  width: 100%;
  padding: 64px;
  background: var(--bg);
  border-radius: 35px;
  box-sizing: border-box;
}

.hde33ccf3-auth-form{
  gap: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

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

.hde33ccf3-auth-input{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  color: #363636;
  padding: 15.5px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: var(--white);
}

.hde33ccf3-auth-button{
  background: var(--button);
  padding: 16px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 112%;
  color: var(--black-text);
  border-radius: 10px;
  border: 0px;
}

.hde33ccf3-auth-footer-text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  text-align: center;
  color: var(--white);
}

.hde33ccf3-auth-link-button{
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 112%;
  text-align: center;
  color: var(--button);
  background: none;
  border: 0px;
}

.hde33ccf3-auth-header{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hde33ccf3-auth-overlay {
  display: none;
}

.hde33ccf3-auth-overlay.hde33ccf3-active {
  display: flex;
}

.hde33ccf3-auth-form {
  display: none;
}

.hde33ccf3-auth-form.hde33ccf3-active {
  display: flex;
}


.hde33ccf3-contact-info-text{
  word-break: break-all;
}

@media screen and (max-width: 600px) {
  .hde33ccf3-auth-wrapper{
    padding: 32px 16px;
  }
}



/* ===== Burger menu ===== */
.hde33ccf3-burger {
  width: 40px;
  height: 40px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.hde33ccf3-burger span {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 3px;
  background: var(--button);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.hde33ccf3-burger span:nth-child(1) {
  top: 11px;
}

.hde33ccf3-burger span:nth-child(2) {
  top: 19px;
}

.hde33ccf3-burger span:nth-child(3) {
  top: 27px;
}

/* Крестик */
.hde33ccf3-burger.hde33ccf3-active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

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

.hde33ccf3-burger.hde33ccf3-active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}


@media screen and (max-width: 768px) {
  .hde33ccf3-burger {
    display: block;
  }

  .hde33ccf3-main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    background: #100606;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .hde33ccf3-main-nav.hde33ccf3-active {
    transform: translateY(0);
  }

  .hde33ccf3-nav-list {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .hde33ccf3-nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .hde33ccf3-nav-actions button {
    width: 100%;
  }
}


.hde33ccf3-message{
  display: none;
}

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


.hde33ccf3-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;
}

/* ===== Cookie & Age Popups ===== */
.hde33ccf3-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hde33ccf3-popup-overlay.hde33ccf3-active {
  display: flex;
}

.hde33ccf3-popup {
  background: var(--bg);
  padding: 32px;
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hde33ccf3-popup h3 {
  color: #ffbd43;
}

.hde33ccf3-popup p {
  font-size: 16px;
  line-height: 140%;
}