@font-face {
  font-family: Poppins;
  src: url("/h82f40cd8-src/h82f40cd8-client/h82f40cd8-assets/h82f40cd8-fonts/h82f40cd8-poppins_black.woff2");
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: Poppins;
  src: url("/h82f40cd8-src/h82f40cd8-client/h82f40cd8-assets/h82f40cd8-fonts/h82f40cd8-poppins_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: Poppins;
  src: url("/h82f40cd8-src/h82f40cd8-client/h82f40cd8-assets/h82f40cd8-fonts/h82f40cd8-poppins_medium.woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url("/h82f40cd8-src/h82f40cd8-client/h82f40cd8-assets/h82f40cd8-fonts/h82f40cd8-poppins_regular.woff2");
  font-display: swap;
  font-weight: 400;
}

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

html {
  scroll-behavior: smooth;
}

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

.h82f40cd8-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) {
  .h82f40cd8-container {
    padding: 0 var(--container-step-tablet);
    gap: 30px;
  }
}

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

h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0px;
}

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

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

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

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

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

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  color: #000;
  margin: 0px;
}

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

@media (max-width: 600px) {
  h3 {
    font-size: 14px;
    text-align: center;
  }
}

p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: white;
  margin: 0px;
}

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

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

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

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

.h82f40cd8-section {
  padding: 80px 0px;
}

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

.h82f40cd8-gradient_border{
  position: relative;
  padding: 20px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  border: 0px;
}

.h82f40cd8-gradient_border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(45deg, #FFCC00, #FF0000, #9900CC);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


.h82f40cd8-site-header{
  padding: 15px 0px;
}

.h82f40cd8-header-inner{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.h82f40cd8-nav-list{
  display: flex;
  flex-direction: row;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #fff;
  gap: 20px;
  align-items: center;
}

.h82f40cd8-btn-login{
  width: 100px;
  border-radius: 20px;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  border: 0px;
  padding: 5px 0px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}

.h82f40cd8-btn-register{
  background: transparent;
  width: 100px;
  padding: 5px 0px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}

.h82f40cd8-hero-section{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), linear-gradient(250.86deg, #9900CC 6.4%, #FF0000 51.14%, #FFCC00 92.45%);
  box-shadow: inset 0px 4px 15px rgba(0, 0, 0, 0.2);
  padding: 100px 0px;
}

.h82f40cd8-hero-content{
  align-items: center;
  text-align: center;
  gap: 30px;
}

.h82f40cd8-hero-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.h82f40cd8-hero-subtitle{
  max-width: 662px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.h82f40cd8-hero-actions{
  display: flex;
  gap: 20px;
}

.h82f40cd8-btn-primary{
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  border: 0px;
  border-radius: 20px;
  padding: 10px 0px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  width: 150px;
}

.h82f40cd8-btn-secondary{
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #0d0d0d;
  border: 0px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  width: 150px;
  padding: 10px 0px;
  border-radius: 20px;
}

.h82f40cd8-draws-grid{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.h82f40cd8-draw-card{
  flex: 1;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  gap: 20px;
}

.h82f40cd8-draw-logo{
  flex: 1;
  min-width: 0px;
}

.h82f40cd8-draw-info{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-draw-description{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.h82f40cd8-btn-draw{
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  padding: 10px 0px;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  border: 0px;
  border-radius: 20px;
}

.h82f40cd8-steps-section{
  background: linear-gradient(180deg, #321c06 0%, rgba(50, 28, 6, 0) 100%);
}

.h82f40cd8-steps-list{
  display: flex;
  gap: 20px;
  justify-content: center;
}

.h82f40cd8-step-item{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 294px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}

.h82f40cd8-step-number{
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 96px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h82f40cd8-step-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-step-description{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.h82f40cd8-benefits-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.h82f40cd8-benefit-item{
  max-width: 608px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}

.h82f40cd8-benefit-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-benefit-description{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #000;
}

.h82f40cd8-responsibility-section{
  background: linear-gradient(180deg, rgba(50, 28, 6, 0) 0%, #321c06 100%);
}

.h82f40cd8-responsibility-content{
  display: flex;
  gap: 20px;
  text-align: center;
}

.h82f40cd8-responsibility-text{
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #0d0d0d;
  border-radius: 20px;
}

.h82f40cd8-site-footer{
  text-align: center;
  padding: 40px 0px;
}

.h82f40cd8-footer-info{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-footer-age-warning{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h82f40cd8-footer-logos{
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: center;
}

.h82f40cd8-footer-copyright{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.h82f40cd8-footer-nav-list{
  background-clip: text;
  flex-direction: row;
  justify-content: center;
  gap: 80px;
}

.h82f40cd8-footer-nav-item{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.h82f40cd8-method-section{
  background: linear-gradient(180deg, rgba(50, 28, 6, 0) 0%, #321c06 100%);
}

.h82f40cd8-method-grid{
  display: flex;
  gap: 20px;
}

.h82f40cd8-method-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.h82f40cd8-method-item h3{
  color: white;
}

.h82f40cd8-mission-grid{
  display: flex;
  gap: 20px;
}

.h82f40cd8-mission-item{
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-mission-text{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.h82f40cd8-contact-section{
  background: linear-gradient(180deg, rgba(50, 28, 6, 0) 0%, #321c06 100%);
}

.h82f40cd8-contact-container{
  align-items: center;
}

.h82f40cd8-contact-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 662px;
  width: 100%;
}

.h82f40cd8-contact-form .h82f40cd8-gradient_border{
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #0d0d0d;
  border-radius: 20px;
}

.h82f40cd8-form-input{
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  background: transparent;
  border: 0px;
  position: relative;
  z-index: 200;
}

.h82f40cd8-contact-submit{
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  border: 0px;
  border-radius: 20px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}


input:focus-visible{
  border: 0px;
}


.h82f40cd8-entry-prep{
  background: linear-gradient(180deg, rgba(50, 28, 6, 0) 0%, #321c06 100%);
}

.h82f40cd8-entry-prep__subtitle{
  text-align: center;
}

.h82f40cd8-entry-prep__content{
  display: flex;
  gap: 20px;
}

.h82f40cd8-draw-selector{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #0d0d0d;
  border-radius: 20px;
}

.h82f40cd8-draw-selector__title{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.h82f40cd8-draw-selector__section{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-draw-selector__section .h82f40cd8-gradient_border{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h82f40cd8-draw-selector__label{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.h82f40cd8-draw-selector__options{
  display: flex;
  gap: 20px;
}

.h82f40cd8-draw-option{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}

.h82f40cd8-number-selector{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-number-selector__label{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.h82f40cd8-number-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.h82f40cd8-number-item{
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #131313;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #e7eaf2;
  border-radius: 20px;
}

.h82f40cd8-confirm-btn{
  border-radius: 20px;
  padding: 10px 20px;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  border: 0px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}

.h82f40cd8-preview-panel{
  flex: 1;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #0d0d0d;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.h82f40cd8-draw-selector__section{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h82f40cd8-input-field{
  width: 100%;
  background: transparent;
  border: 0px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .h82f40cd8-hero-subtitle{
    font-size: 16px;
  }
  
  .h82f40cd8-mission-title{
    font-size: 12px;
  }

  .h82f40cd8-mission-grid{
    flex-direction: column;
  }

  .h82f40cd8-method-grid{
    flex-direction: column;
  }

  .h82f40cd8-mission-text{
    font-size: 12px;
  }

  .h82f40cd8-mission-item{
    padding: 10px;
  }

  .h82f40cd8-entry-prep__content{
    flex-direction: column;
  }

  .h82f40cd8-steps-list{
    gap: 10px;
    flex-wrap: wrap;
  }
}



@media screen and (max-width: 600px) {
  .h82f40cd8-hero-section{
    padding: 40px 0px;
    background: url("/h82f40cd8-src/h82f40cd8-client/h82f40cd8-assets/h82f40cd8-images/h82f40cd8-hero_background.webp") no-repeat center center;
    background-size: cover;
  }

  .h82f40cd8-hero-subtitle{
    font-size: 12px;
  }

  .h82f40cd8-nav-wrapper{
    display: none;
  }

  .h82f40cd8-draw-card{
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .h82f40cd8-draw-description{
    font-size: 12px;
  }

  .h82f40cd8-benefits-grid{
    gap: 10px;
  }

  .h82f40cd8-benefit-item{
    padding: 10px;
  }

  .h82f40cd8-benefit-title{
    font-size: 14px;
  }

  .h82f40cd8-benefit-description{
    font-size: 12px;
  }

  .h82f40cd8-responsibility-section{
    background: linear-gradient(180deg, #321c06 0%, rgba(50, 28, 6, 0) 100%);
  }

  .h82f40cd8-responsibility-content{
    flex-direction: column;
  }

  .h82f40cd8-responsibility-text{
    font-size: 14px;
  }

  .h82f40cd8-footer-text{
    font-size: 16px;
  }

  .h82f40cd8-footer-nav-list{
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .h82f40cd8-footer-logo-link{
    max-width: 168px;
  }

  .h82f40cd8-footer-logo-link img{
    width: 100%;
  }

  .h82f40cd8-contact-form .h82f40cd8-gradient_border{
    padding: 10px;
    background: black;
  }

  .h82f40cd8-contact-form .h82f40cd8-gradient_border::before {
    border-radius: 10px;
  }

  .h82f40cd8-draw-selector__options{
    gap: 10px;
  }

  .h82f40cd8-draw-option{
    padding: 10px 0px;
    font-size: 12px;
  }

  .h82f40cd8-preview-panel{
    gap: 20px;
    padding: 10px;
  }

  .h82f40cd8-draw-selector__title{
    font-size: 14px;
  }

  .h82f40cd8-draw-selector{
    gap: 20px;
    padding: 10px;
  }

  .h82f40cd8-draw-selector__section{
    gap: 10px;
  }

  .h82f40cd8-gradient_border{
    padding: 10px;
  }

  .h82f40cd8-step-item{
    gap: 10px;
    padding: 10px;
    flex-direction: column;
    max-width: 163px;
  }

  .h82f40cd8-step-number{
    font-size: 48px;
  }

  .h82f40cd8-step-title{
    font-size: 12px;
  }

  .h82f40cd8-step-description{
    font-size: 12px;
  }
}

@media screen and (max-width: 359px) {
  .h82f40cd8-btn{
    max-width: 130px;
  }
}

.h82f40cd8-overlay{
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000ba;
}

.h82f40cd8-overlay .h82f40cd8-container{
  width: 100%;
}

.h82f40cd8-popup_content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: black;
  box-sizing: border-box;
  border-radius: 20px;
  max-width: 450px;
  align-self: center;
  width: 100%;
}

.h82f40cd8-heading_span{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.h82f40cd8-popup_content .h82f40cd8-gradient_border{
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
}

.h82f40cd8-popup_content .h82f40cd8-gradient_border input{
  padding: 0px;
  border: 0px;
  background: none;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.h82f40cd8-popup_submit_button{
  border-radius: 20px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  border: 0px;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
}

.h82f40cd8-link_to_another_popup{
  border: 0px;
  background: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.h82f40cd8-succesful_span{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.h82f40cd8-popup_content input {
  outline: none;
}

.h82f40cd8-popup_content input.h82f40cd8-error {
  border: 1px solid red !important;
}

.h82f40cd8-popup_content {display: none;}
.h82f40cd8-popup-overlay {display: none;}

.h82f40cd8-cookies-policy-section{
  background: linear-gradient(180deg, rgba(50, 28, 6, 0) 0%, #321c06 100%);
}

.h82f40cd8-policy-intro{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}

.h82f40cd8-policy-block{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #000;
  border-radius: 20px;
}

.h82f40cd8-active-draw {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #ffbc00;
  border-radius: 20px;
  color: #131313;
}

.h82f40cd8-selected-number {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background: #ffbc00;
  border: 0px;
}

.h82f40cd8-message{
  display: none;
}

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


/* ===== Бургер ===== */
.h82f40cd8-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
}

.h82f40cd8-burger span {
  border-radius: 2px;
  width: 45px;
  height: 3px;
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
  display: block;
}

.h82f40cd8-burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.h82f40cd8-burger.open span:nth-child(2) {
  opacity: 0;
}

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

.h82f40cd8-burger span {
  transition: 0.3s ease;
}

/* Показать бургер на мобилках */
@media (max-width: 680px) {
  .h82f40cd8-burger {
    display: flex;
  }

  .h82f40cd8-nav-wrapper {
    display: none;
    position: absolute;
    top: 57px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: #0d0d0d;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    flex-direction: column;
    align-items: center;
    z-index: 999;
  }

  .h82f40cd8-nav-wrapper.active {
    display: flex;
  }

  .h82f40cd8-nav-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* COOKIE POPUP FIXED */
.h82f40cd8-cookie-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
}

.h82f40cd8-cookie-box {
  background: #000;
  border-radius: 20px;
  padding: 15px;
  max-width: 300px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h82f40cd8-cookie-text {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 130%;
}

.h82f40cd8-cookie-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.h82f40cd8-cookie-accept,
.h82f40cd8-cookie-decline {
  flex: 1;
  border-radius: 20px;
  padding: 8px 0;
  border: 0;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

.h82f40cd8-cookie-accept {
  background: linear-gradient(226deg, #90c 0%, #f00 52%, #fc0 100%);
}

.h82f40cd8-cookie-decline {
  background: #333;
}

.h82f40cd8-error-msg{
  margin-top: 8px;
  color: red;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
}
