@font-face {
  font-family: "Nunito Sans";
  src: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-fonts/h632c13f7-nunitosans_black.woff2");
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-fonts/h632c13f7-nunitosans_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-fonts/h632c13f7-poppins_semibold.woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-fonts/h632c13f7-nunitosans_regular.woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-fonts/h632c13f7-poppins_semibold.woff2");
  font-display: swap;
}

/* ===== Переменные ===== */
:root {
  --container-width: 1200px;
  --container-step: 20px;
  --container-step-tablet: 18px;
  --container-step-mobile: 16px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --font-family: "Nunito Sans", sans-serif;
  --second-family: "Poppins", sans-serif;
}

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

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

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

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

h1 {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 60px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  margin: 0px;
}

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

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

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #fff;
  margin: 0px;
}

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

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

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
  color: #fff;
  margin: 0px;
}

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

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

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0px;
}

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

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

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

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

section {
  padding: 40px 0px;
}

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

.h632c13f7-btn{
  box-shadow: 0 2px 8px 0 rgba(5, 9, 14, 0.2);
  background: #097f84;
  border-radius: 40px;
  height: 47px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: #fff;
  border: 0px;
  cursor: pointer;
}

.h632c13f7-common-list{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.h632c13f7-card{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 12px 0 rgba(26, 27, 32, 0.05);
  background: #1a2a36;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  align-items: start;
}

.h632c13f7-site-header{
  padding: 12px 0px;
}

.h632c13f7-site-header__container{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.h632c13f7-site-header__right{
  display: flex;
  gap: 40px;
  align-items: center;
}

.h632c13f7-main-nav__list{
  flex-direction: row;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  gap: 20px;
}

.h632c13f7-language-switcher{
  display: flex;
  padding: 5px;
  border: 1px solid #097f84;
  border-radius: 30px;
}

.h632c13f7-language-switcher__link{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  text-align: right;
  color: #fff;
  border-radius: 30px;
}

.h632c13f7-language-switcher__link--active{
  background: #097f84;
}

.h632c13f7-site-header-absolute{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.h632c13f7-hero{
  padding-top: 116px;
  padding-bottom: 100px;
  background: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-images/h632c13f7-hero_bg.png");
  background-size: cover;
  background-position: center;
}

.h632c13f7-hero_content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: center;
  max-width: 590px;
  width: 100%;
}

.h632c13f7-hero_content{
  text-align: center;
}


.h632c13f7-draw-section__content{
  max-width: 794px;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h632c13f7-countdown__item{
  align-items: center;
}

.h632c13f7-countdown__value{
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 52px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px #03cad1;
}

.h632c13f7-countdown__label{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.h632c13f7-prize-card{
  text-align: center;
  align-items: center;
}



.h632c13f7-site-footer{
  padding: 50px 0px;
  background: #121f28;
}

.h632c13f7-site-footer__info{
  display: flex;
  gap: 20px;
}

.h632c13f7-site-footer__top{
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.h632c13f7-site-footer__block{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h632c13f7-site-footer__license{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h632c13f7-site-footer__badges{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.h632c13f7-site-footer__bottom{
  display: flex;
  justify-content: space-between;
}

.h632c13f7-site-footer__copyright{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
}

.h632c13f7-footer-nav__list{
  flex-direction: row;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  gap: 20px;
}

.h632c13f7-about_us_container{
  flex-direction: row;
}

.h632c13f7-about_us_block{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: start;
  align-items: start;
}

.h632c13f7-about_us_image{
  flex: 1;
  max-width: 488px;
  width: 100%;
}

.h632c13f7-about_us_image img{
  min-width: 0px;
  width: 100%;
}

.h632c13f7-faq-item{
  gap: 0px;
  transition: background 600ms cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.h632c13f7-faq-item.h632c13f7-active{
  background: #097f84;
}

.h632c13f7-faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* answer base state */
.h632c13f7-faq-item__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 600ms cubic-bezier(.25, 1, .35, 1),
    opacity 300ms ease,
    transform 300ms ease,
    margin-top 300ms ease;
  margin-top: 0;
  max-width: 1116px;
  width: 100%;
}



/* active state */
.h632c13f7-faq-item.h632c13f7-active .h632c13f7-faq-item__answer {
  max-height: 300px; /* big enough for your content */
  opacity: 1;
  transform: translateY(0);
}

/* icon state sync */

.h632c13f7-icon {
  cursor: pointer;
  transform-origin: 50% 50%;
  transition: transform 600ms cubic-bezier(.25, 1.2, .35, 1);
}

.h632c13f7-bg {
  fill: white;
  transition: fill 600ms cubic-bezier(.4, 0, .2, 1);
}

.h632c13f7-h,
.h632c13f7-v {
  stroke: #0D0809;
  transform-origin: 50% 50%;
  transition:
    stroke 400ms ease,
    transform 700ms cubic-bezier(.25, 1.4, .35, 1),
    opacity 300ms ease;
}

/* ======================
   CLOSED STATE (PLUS)
====================== */

.h632c13f7-faq-item:not(.h632c13f7-active) .h632c13f7-icon {
  transform: rotate(90deg) scale(1.04);
}

.h632c13f7-faq-item:not(.h632c13f7-active) .h632c13f7-icon .h632c13f7-bg {
  fill: #097F84;
}

.h632c13f7-faq-item:not(.h632c13f7-active) .h632c13f7-icon .h632c13f7-h,
.h632c13f7-faq-item:not(.h632c13f7-active) .h632c13f7-icon .h632c13f7-v {
  stroke: white;
}

.h632c13f7-faq-item:not(.h632c13f7-active) .h632c13f7-icon .h632c13f7-v {
  transform: scaleY(1);
  opacity: 1;
}

/* ======================
   OPEN STATE (MINUS)
====================== */

.h632c13f7-faq-item.h632c13f7-active .h632c13f7-icon {
  transform: rotate(0deg) scale(1);
}

.h632c13f7-faq-item.h632c13f7-active .h632c13f7-icon .h632c13f7-bg {
  fill: white;
}

.h632c13f7-faq-item.h632c13f7-active .h632c13f7-icon .h632c13f7-h {
  stroke: #0D0809;
}

.h632c13f7-faq-item.h632c13f7-active .h632c13f7-icon .h632c13f7-v {
  transform: scaleY(0.05);
  opacity: 0;
}


.h632c13f7-faq-item__content {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  transition:
    max-height 700ms cubic-bezier(.25, 1, .35, 1),
    padding-top 400ms ease;

  
}

.h632c13f7-faq-item__toggle{
  padding: 0px;
  border: 0px;
  background: transparent;
}

.h632c13f7-faq-item__toggle::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.h632c13f7-faq-item__answer {
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

/* active */
.h632c13f7-faq-item.h632c13f7-active .h632c13f7-faq-item__content {
  max-height: 300px;
  padding-top: 10px; /* ← your gap, now buttery */
}

.h632c13f7-faq-item.h632c13f7-active .h632c13f7-faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

.h632c13f7-faq-list{
  gap: 20px;
}

.h632c13f7-draw-section.h632c13f7-draw_page{
  background: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-images/h632c13f7-draw_section_bg.png");
  background-size: cover;
  background-position: center;
}

.h632c13f7-price_info{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.h632c13f7-price_info-card ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  list-style: disc;
  padding-left: 20px;
}

.h632c13f7-rules-section-header{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.h632c13f7-rules_info{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.h632c13f7-winners-list{
  align-items: center;
}

.h632c13f7-winners-list__item{
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}

.h632c13f7-winners-section-container{
  flex-direction: row;
}

.h632c13f7-winners-section__list{
  gap: 20px;
  flex: 1;
}

.h632c13f7-winners-section__list-item{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h632c13f7-winners-section__picture{
  flex: 1;
  max-width: 488px;
}

.h632c13f7-winners-section__picture img{
  width: 100%;
}

.h632c13f7-winners-section{
  background: #1a2a36;
}


.h632c13f7-contact_us-section{
  background: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-images/h632c13f7-contact_us_bg.png");
  background-size: cover;
  background-position: center;
  padding-top: 116px;
}

.h632c13f7-contact_us-form{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 590px;
  width: 100%;
  align-self: center;
}

.h632c13f7-contact_us-form-input{
  border-radius: 10px;
  padding: 12px;
  border: 0px;
  background: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: capitalize;
  color: rgba(6, 10, 20, 0.6);
}

.h632c13f7-contact_us-form-text{
  border-radius: 10px;
  padding: 12px;
  border: 0px;
  background: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: capitalize;
  color: rgba(6, 10, 20, 0.6);
  box-sizing: border-box;
  min-height: 141px;
}

.h632c13f7-policy-container{
  gap: 14px;
}

.h632c13f7-policy-container ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  list-style: disc;
  padding-left: 20px;
}

/* ======================
   MODALS & POPUPS
====================== */

.h632c13f7-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 30, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.h632c13f7-modal {
  max-width: 420px;
  text-align: center;
  align-items: center;
}

.h632c13f7-modal__actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.h632c13f7-btn--secondary {
  background: transparent;
  border: 1px solid #097f84;
}

/* Cookie popup */
.h632c13f7-cookie-popup {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  gap: 12px;
  z-index: 9998;
  display: none;
}


@media screen and (max-width: 991px) {
  .h632c13f7-countdown{
    gap: 12px;
  }

  .h632c13f7-countdown__item{
    padding: 15px;
    gap: 5px;
  }

  .h632c13f7-countdown__value{
    font-size: 42px;
  }

  .h632c13f7-countdown__label{
    font-size: 15px;
  }

  .h632c13f7-site-footer__info{
    flex-direction: column;
  }

  .h632c13f7-site-footer__badges{
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .h632c13f7-site-footer__bottom{
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .h632c13f7-footer-nav__list{
    flex-direction: column;
    text-align: center;
  }

  .h632c13f7-footer-nav__list{
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
  }

  .h632c13f7-site-footer__copyright{
    text-align: center;
  }

  .h632c13f7-about_us_image{
    max-width: none;
  }

  .h632c13f7-about_us_container{
    flex-direction: column;
  }

  .h632c13f7-why-list{
    flex-direction: column;
  }
  
  .h632c13f7-price_info-card ul{
    font-size: 15px;
  }

  .h632c13f7-rules_info{
    grid-template-columns: 1fr 1fr;
  }

  .h632c13f7-winners-list{
    flex-direction: column;
    align-items: unset;
  }

  .h632c13f7-winners-section-container{
    flex-direction: column;
  }

  .h632c13f7-winners-section__picture{
    max-width: none;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .h632c13f7-site-header__right{
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .h632c13f7-hero{
    padding-top: 80px;
    padding-bottom: 40px;
    background: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-images/h632c13f7-hero_bg-mobile.png");
    background-size: cover;
    background-position: center;
  }
  .h632c13f7-countdown{
    gap: 4px;
  }

  .h632c13f7-countdown__item{
    padding: 10px;
    gap: 0px;
  }

  .h632c13f7-countdown__value{
    font-size: 32px;
  }

  .h632c13f7-countdown__label{
    font-size: 12px;
  }

  .h632c13f7-site-footer{
    padding: 20px 0px;
  }

  .h632c13f7-site-footer__badge-image{
    height: 50px;
  }

  .h632c13f7-how-it-works__list{
    flex-direction: column;
  }

  .h632c13f7-draw-section.h632c13f7-draw_page{
    background: url("/h632c13f7-src/h632c13f7-client/h632c13f7-assets/h632c13f7-images/h632c13f7-draw_section_bg-mobile.png");
    background-size: cover;
    background-position: center;
  }

  .h632c13f7-price_info{
    grid-template-columns: 1fr;
  }

  .h632c13f7-price_info-card ul{
    font-size: 14px;
  }

  .h632c13f7-rules_info{
    grid-template-columns: 1fr;
  }
}

/* ======================
   BURGER BUTTON
====================== */

.h632c13f7-burger {
  width: 40px;
  height: 30px;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
}

.h632c13f7-burger span {
  position: absolute;
  left: 4px;
  width: 32px;
  height: 2px;
  background: #097f84;
  border-radius: 1px;
  transition:
    transform 400ms cubic-bezier(.25, 1, .35, 1),
    top 400ms cubic-bezier(.25, 1, .35, 1),
    opacity 300ms ease;

    z-index: 1000;
}

.h632c13f7-burger span:nth-child(1) { top: 6px; }
.h632c13f7-burger span:nth-child(2) { top: 14px; }
.h632c13f7-burger span:nth-child(3) { top: 22px; }

/* active (cross) */
.h632c13f7-burger.h632c13f7-active span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

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

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

/* ======================
   MOBILE MENU PANEL
====================== */

.h632c13f7-mobile-menu {
  position: fixed;
  inset: 0;
  background: #0b131e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 999;
}

.h632c13f7-mobile-menu.h632c13f7-active {
  opacity: 1;
  pointer-events: auto;
}

.h632c13f7-mobile-nav__list {
  gap: 20px;
  text-align: center;
}

.h632c13f7-mobile-nav__list a {
  font-family: var(--font-family);
  font-size: 20px;
  color: #fff;
}

.h632c13f7-mobile-language {
  margin-top: 10px;
}

/* ======================
   RESPONSIVE RULES
====================== */

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

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

.h632c13f7-message{
  display: none;
}

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