@font-face {
  font-family: "Inter";
  src: url("/h3dcf3fe2-public/h3dcf3fe2-fonts/h3dcf3fe2-inter-regular.woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/h3dcf3fe2-public/h3dcf3fe2-fonts/h3dcf3fe2-inter-medium.woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/h3dcf3fe2-public/h3dcf3fe2-fonts/h3dcf3fe2-inter-semibold.woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/h3dcf3fe2-public/h3dcf3fe2-fonts/h3dcf3fe2-inter-bold.woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/h3dcf3fe2-public/h3dcf3fe2-fonts/h3dcf3fe2-inter-extrabold.woff2");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/h3dcf3fe2-public/h3dcf3fe2-fonts/h3dcf3fe2-unbounded-bold.woff2");
  font-display: swap;
}

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

/* ===== Базовые ===== */
body {
  margin: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #f6f7f7;
}

.h3dcf3fe2-dark_bg{
  background: rgba(0, 3, 204, 0.05);
}

.h3dcf3fe2-bg{
  background: url("/h3dcf3fe2-public/h3dcf3fe2-images/h3dcf3fe2-main_bg.webp");
  background-size: cover;
  /* background-position: center; */
}

.h3dcf3fe2-white_bg{
  background-color: #fff;
}

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

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

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

h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  color: #080a08;
  margin: 0px;
}

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

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

h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin: 0px;
}

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

@media (max-width: 600px) {
  h2 {
    font-size: 20px;
    text-transform: capitalize;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin: 0px;
}

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

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

p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 17px;
  color: #000;
  margin: 0px;
}

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

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

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

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

section {
  padding: 50px 0px;
}

@media (max-width: 600px) {
  section {
    padding: 40px 0px;
  }
}

.h3dcf3fe2-btn{
  width: 100%;
  border-radius: 20px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(226deg, #0003cc 0%, #007bff 52%, #0003cc 100%);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  border: 0px;
}

.h3dcf3fe2-blue_border{
  border: 1px solid #0003cc;
  border-radius: 20px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.h3dcf3fe2-site-header{
  padding: 10px 0px;
}

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

.h3dcf3fe2-nav-list{
  flex-direction: row;
  gap: 30px;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.h3dcf3fe2-nav-auth{
  display: flex;
  align-items: center;
  gap: 10px;
}

.h3dcf3fe2-btn-login{
  border: 1px solid #0003cc;
  border-radius: 20px;
  padding: 7px 25px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #0003cc;
}

.h3dcf3fe2-btn-join{
  border: 1px solid #0003cc;
  border-radius: 20px;
  padding: 8px 25px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: #0003cc;
}

.h3dcf3fe2-hero-content{
  max-width: 995px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.h3dcf3fe2-hero-cta{
  max-width: 233px;
}

.h3dcf3fe2-common_list{
  flex-direction: row;
  column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.h3dcf3fe2-lottery-item{
  display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    box-sizing: border-box;
    width: 100%;
    max-width: 400px;
    border: 2px solid #0003cc;
    justify-content: space-between;
}

.h3dcf3fe2-lottery-info{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.h3dcf3fe2-lottery-info p{
  font-size: 14.9px;
}

.h3dcf3fe2-winner-item{
  padding: 30px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
}

.h3dcf3fe2-winner-name{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.h3dcf3fe2-winner-amount{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: #0003cc;
}

.h3dcf3fe2-winner-location{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #767676;
}

.h3dcf3fe2-steps-container{
  align-items: center;
}

.h3dcf3fe2-section-desc{
  text-align: center;
}

.h3dcf3fe2-step-item{
  max-width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.h3dcf3fe2-step-text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14.9px;
  color: #000;
}

.h3dcf3fe2-community-item{
  border: 1px solid #0003cc;
  border-radius: 20px;
  padding: 30px;
  max-width: 283px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
}

.h3dcf3fe2-community-value{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: #0003cc;
}

.h3dcf3fe2-community-label{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #000;
}

.h3dcf3fe2-community-container{
  align-items: center;
}

.h3dcf3fe2-community-container .h3dcf3fe2-section-desc{
  max-width: 600px;
}


/* Footer base */
.h3dcf3fe2-site-footer {
  padding: 50px 0;
}

/* Container */
.h3dcf3fe2-site-footer .h3dcf3fe2-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Regulatory blocks */
.h3dcf3fe2-footer-regulatory {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: auto;
  max-width: 1000px;
  text-align: center;
}

.h3dcf3fe2-footer-regulatory-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14.9px;
  color: #000;
  text-align: start;
}

/* Top footer layout */
.h3dcf3fe2-footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  gap: 60px;
  flex-wrap: wrap;
}

/* Brand blocks */
.h3dcf3fe2-footer-brand {
  flex: 1;
  max-width: 243px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h3dcf3fe2-footer-brand.h3dcf3fe2-align-start {
  align-items: flex-start;
}

/* License / text notes */
.h3dcf3fe2-footer-license-note {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: #000;
}

.h3dcf3fe2-footer-brand .h3dcf3fe2-footer-license-note {
  font-weight: 400;
  font-size: 14px;
}

/* Navigation blocks */
.h3dcf3fe2-footer-nav-block {
  flex: 1;
  max-width: 171px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h3dcf3fe2-footer-legal-block {
  flex: 1;
  max-width: 106px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Navigation lists */
.h3dcf3fe2-footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

.h3dcf3fe2-footer-legal-block .h3dcf3fe2-footer-nav-list {
  line-height: 150%;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  align-items: flex-start;
  text-align: center;
}

/* Footer resources */
.h3dcf3fe2-footer-resources-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #000;
  flex-wrap: wrap;
}

/* Social icons */
.h3dcf3fe2-footer-social-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.h3dcf3fe2-footer-license-note.h3dcf3fe2-bold{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: #000;
}

/* Footer copyright */
.h3dcf3fe2-footer-copy {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.h3dcf3fe2-about-section__card{
  display: flex;
  border: 1px solid #0003cc;
  border-radius: 20px;
  padding: 29px;
  max-width: 1000px;
  margin: auto;
  box-sizing: border-box;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.h3dcf3fe2-about-section__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.h3dcf3fe2-about-section__image{
  flex: 1;
  max-width: 236px;
  min-width: 0px;
}

@media screen and (max-width: 890px) {
  .h3dcf3fe2-main-nav{
    display: none;
  }
}

@media screen and (max-width: 860px) {
  .h3dcf3fe2-lottery-item, .h3dcf3fe2-winner-item, .h3dcf3fe2-step-item, .h3dcf3fe2-community-item{
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .h3dcf3fe2-about-section__card{
    flex-direction: column;
    padding: 20px 15px;
  }
}

@media screen and (max-width: 400px) {
  .h3dcf3fe2-footer-top{
    flex-direction: column;
    gap: 20px;
  }

  .h3dcf3fe2-site-footer .h3dcf3fe2-container{
    gap: 10px;
    align-items: start;
  }

  .h3dcf3fe2-footer-social-list{
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .h3dcf3fe2-about-section__card img{
    width: 100%;
    max-width: none;
  }
}


.h3dcf3fe2-about-section__card_2{
  border: 1px solid #0003cc;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  box-sizing: border-box;
}

.h3dcf3fe2-about-section__row{
  display: flex;
  align-items: center;
  gap: 30px;
}

.h3dcf3fe2-about-section__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.h3dcf3fe2-about-section__text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.h3dcf3fe2-about-section__image{
  max-width: 300px;
}

@media screen and (max-width: 800px) {
  .h3dcf3fe2-about-section__row--about{
    flex-direction: column;
  }
  
  .h3dcf3fe2-about-section__row--mission{
    flex-direction: column-reverse;
  }

  .h3dcf3fe2-about-section__card{
    padding: 20px 16px;
  }

  .h3dcf3fe2-about-section__image{
    max-width: 100%;
    width: 100%;
  }
}

.h3dcf3fe2-contact-layout{
  max-width: 600px;
  box-shadow: 4px 7px 21px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 20px 30px;
  box-sizing: border-box;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h3dcf3fe2-contact-info{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h3dcf3fe2-contact-title{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  color: #000;
  text-transform: capitalize;
}

.h3dcf3fe2-contact-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.h3dcf3fe2-contact-form-fields{
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.h3dcf3fe2-form-field{
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.h3dcf3fe2-form-input{
  border: 0px;
  border-bottom: 1px solid #000;
  padding: 15px 10px 15px 0px;
  background: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.h3dcf3fe2-form-textarea{
  border: 0px;
  border-bottom: 1px solid #000;
  background: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  height: 80px;
  padding-top: 15px;
  box-sizing: border-box;
}

.h3dcf3fe2-contact-submit{
  max-width: 190px;
}

.h3dcf3fe2-privacy-policy-content{
  display: flex;
  flex-direction: column;
  gap: 50px;
  border: 1px solid #0003cc;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
}

.h3dcf3fe2-privacy-policy-content h3{
  text-align: center;
}

.h3dcf3fe2-privacy-policy-text{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h3dcf3fe2-privacy-policy-text ul{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 17px;
  color: #000;
  list-style: disc;
  padding-left: 15px;
}

.h3dcf3fe2-privacy-policy-content-block a{
  text-decoration: underline;
  text-decoration-skip-ink: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

.h3dcf3fe2-overlay{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  background: #00000033;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.h3dcf3fe2-popup_content{
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 40px 60px;
  backdrop-filter: blur(25px);
  box-shadow: 12px -1px 30px 0 rgba(255, 255, 255, 0.15);
  background: rgba(148, 148, 148, 0.7);
}

.h3dcf3fe2-age-gate{
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.h3dcf3fe2-age-gate__title{
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.h3dcf3fe2-age-gate__description{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.h3dcf3fe2-age-gate__confirm{
  max-width: 350px;
}

.h3dcf3fe2-auth-form{
  max-width: 330px;
  min-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.h3dcf3fe2-auth-form__field{
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  gap: 5px;
}

.h3dcf3fe2-auth-form__title{
  color: white;
}


.h3dcf3fe2-auth-form__field{
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  gap: 5px;
}

.h3dcf3fe2-auth-form__input{
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 15px 10px 15px 20px;
  background: #fff;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.h3dcf3fe2-message{
  display: none;
}

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

@media screen and (max-width: 600px) {
  .h3dcf3fe2-popup_content{
    padding: 30px;
  }

  .h3dcf3fe2-auth-form{
    max-width: 276px;
    min-width: 0px;
  }
}

/* ===== Burger menu ===== */
.h3dcf3fe2-burger {
  display: none;
  width: 50px;
  height: 30px;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.h3dcf3fe2-burger span {
  position: absolute;
  left: 4px;
  width: 42px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.h3dcf3fe2-burger span:nth-child(1) {
  top: 6px;
}

.h3dcf3fe2-burger span:nth-child(2) {
  top: 14px;
}

.h3dcf3fe2-burger span:nth-child(3) {
  top: 22px;
}

/* Active (cross) state */
.h3dcf3fe2-burger.h3dcf3fe2-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.h3dcf3fe2-burger.h3dcf3fe2-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Show burger on mobile */
@media screen and (max-width: 890px) {
  .h3dcf3fe2-burger {
    display: block;
  }
}


@media screen and (max-width: 890px) {
  .h3dcf3fe2-main-nav.h3dcf3fe2-active {
    display: block;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .h3dcf3fe2-nav-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== Cookie consent (isolated) ===== */
.h3dcf3fe2-cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}

.h3dcf3fe2-cookie-consent__box {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #0003cc;
  border-radius: 16px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.h3dcf3fe2-cookie-consent__text {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #000;
  max-width: 750px;
}

.h3dcf3fe2-cookie-consent__text a {
  text-decoration: underline;
}

.h3dcf3fe2-cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.h3dcf3fe2-cookie-consent__btn {
  border-radius: 20px;
  padding: 8px 18px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #0003cc;
  background: transparent;
  color: #0003cc;
}

.h3dcf3fe2-cookie-consent__btn--accept {
  background: #0003cc;
  color: #fff;
}

@media (max-width: 700px) {
  .h3dcf3fe2-cookie-consent__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .h3dcf3fe2-cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.h3dcf3fe2-auth-form__switch{
  font-family: var(--font-family);
font-weight: 500;
font-size: 14px;
line-height: 130%;
text-decoration: underline;
text-decoration-skip-ink: none;
text-align: center;
color: #fff;
background: none;
border: 0px;
padding: 0px;
}