@font-face {
  font-family: "Geologica";
  src: url("/fonts/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf")
    format("truetype-variations");
  font-weight: 100 900; /* диапазон весов */
  font-stretch: 75% 125%; /* если поддерживает */
  font-style: normal; /* можно указать italic, если есть */
}

* {
  font-family: "Geologica", sans-serif !important;
}
b {
  font-weight: 900;
}
body {
  background-color: #652a7f;
  color: #fff;
}
a {
  color: #fff;
  text-decoration: none;
}
.wrapper {
  position: relative;
}
.header {
  display: flex;
  justify-content: space-between;
  height: 121px;
  background-color: #652a7f;
  color: #fff;
  align-items: center;
}
.header-nav a{
  white-space: nowrap;
}
@media (max-width:1350px) {
  .header-nav a{
    font-size: 17px;
  }
}
.header-logo {
  height: 70%;
  margin: auto 0;
}
.header-logo img {
  height: 100%;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 800px;
  text-transform: uppercase;
  font-size: 18px;
}
.header-nav a.active {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #d850bc;
  border: 1px solid #000;
  border-radius: 50%;
}
.header-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.under-header {
  font-weight: 400;
  font-size: 35px;
  height: 60px;
  background-color: #db72c6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.swiper-pagination-bullet-active{
  background-color: #d850bc;
}
.main {
  background-image: url("../img/main-bg.png");

  background-size: cover;
  background-position: bottom;
  padding-top: 32px;
  padding-bottom: 30px;
}
.main-block {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.main-block-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 35%;
}
.main-block-right {
  width: 60%;
  /* padding-top: 50px; */
}

.main-logo {
  margin-top: 40px;
  width: 100%;
}
.main-five {
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  width: 100%;
  display: block;
}
.main-five-more {
  margin-top: 50px;
  width: 100%;
}
.main-prize {
  /* margin-top: 40px; */
  width: 100%;
}
.main-text {
  margin-top: 50px;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}
.main-button {
  font-size: 25px;
  text-align: center;
  border-radius: 36px;
  padding: 15px 10px;
  font-weight: 700;
  background-color: #ea2e32;
  margin-bottom: 50px;
  cursor: pointer;
}

.main-footer {
  display: flex;
  justify-content: space-between;
  font-size: 29px;
}
.plaha {
  width: 100%;
  text-align: center;
  border-radius: 26px;
  text-transform: uppercase;
  background-color: #d850bc;
  padding: 25px;
}
.rule-blocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 85px -25px;
}
.rule-block {
  display: flex;
  flex-direction: column; /* сверху вниз */
  justify-content: space-between; /* текст внизу */

  background-color: #c1aacc;
  width: 33%;
  margin: 0 25px;
  border-radius: 26px;
  border-top-left-radius: 0;
  position: relative;
  padding: 30px 25px;
  height: 500px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.rule-block:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.18);
  transform: scale(1.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.rule-block::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  background-color: #c1aacc;
  border-radius: 50%;
  left: 0;
  top: -45px;
}
.rule-block::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background-color: #652a7f;
  border-radius: 50%;
  left: 9.5px;
  top: -37px;
  z-index: 2;
}
.rule-block-number {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: #d850bc;
  border-radius: 50%;
  top: -30px;
  left: 17px;
  font-size: 45px;
  z-index: 3;
}

.rule-block-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rule-block-img img {
  width: 100%;
}
.rule-block-second img {
  width: 50%;
}
.rule-block-text {
  margin-top: auto;
  line-height: 1;
  height: 130px;
  font-weight: 500;
  font-size: 25.6px;
  color: #652a7f;
  text-align: center;
}

.plaha-text {
  font-size: 32px;
  font-weight: 900;
}

.prize {
  position: relative;
}
.prize .first-bg {
  background-image: url(../img/second-bg.png);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,      /* верх полностью прозрачный */
    black 10%,           /* видимый с 10% */
    black 90%,           /* видимый до 90% */
    transparent 100%     /* низ снова прозрачный */
  );
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );

  position: absolute;
  width: 100%;
  z-index: -1;
  height: 1469px;
  left: 0;
  top: -230px;
  background-size: cover;
}
.second-bg {
  background-image: url(../img/second-bg.png);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,      /* верх полностью прозрачный */
    black 10%,           /* видимый с 10% */
    black 90%,           /* видимый до 90% */
    transparent 100%     /* низ снова прозрачный */
  );
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );

  position: absolute;
  width: 100%;
  z-index: -1;
  height: 810px;
  left: 0;
  bottom: 198px;
  background-size: cover;
}

.prize-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 75px;
}
.h-50px {
  height: 50px;
}
.prize-block {
  display: flex;
  flex-direction: column; /* сверху вниз */
  justify-content: space-between; /* текст внизу */
  background-color: #c1aacc;
  width: 32%;
  border-radius: 26px;
  position: relative;
  padding: 30px 25px;
  height: 425px;
  margin-bottom: 25px;
  animation: pulse 3s infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.prize-block:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.18);
  transform: scale(1.05) rotate(-1deg);
  animation: pulse 3s infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.prize-block-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.prize-block-img img {
  height: 280px;
}
.prize-block-text {
  margin-top: auto;
  height: 52px;
  line-height: 1;
  font-weight: 500;
  font-size: 25px;
  color: #652a7f;
  text-align: center;
}
footer.footer {
  text-align: center;
  background-color: #652a7f;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.product {
  margin-top: -20px;
}

.product-blocks {
  display: flex;
  justify-content: space-between;
  margin: 100px 0;
}
.product-block {
  background-color: #c1aacc;
  width: 32%;
  border-radius: 26px;
  position: relative;
  padding: 30px 25px;
  height: 435px;
  margin-bottom: 25px;
  user-select: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.swiper-slide img {
  height: 81%;
  display: block;
  margin: 0 auto;
}
.swiper {
  width: 100%;
  height: 300px;
}

.product-block-text {
  margin-top: 5px;
  line-height: 1;
  font-weight: 500;
  font-size: 27px;
  color: #652a7f;
  text-align: center;
}

.last-block-time {
  display: flex;
  margin-top: 60px;
  margin-bottom: 50px;
}
.last_time_block {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background-color: #c0b5d1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 15px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 20%;
  width: 150px;
  height: 150px;
  position: relative;
  box-shadow: 0 8px 30px #ff4b2bb3;
  animation: pulse 3s infinite;
}
.last_time-time {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
}
.last-block {
  display: flex;
  margin-top: 25px;
}
.last-block-left-text {
  line-height: 55px;
  font-size: 30px;
  text-transform: uppercase;
}
.last_time_text {
  text-transform: uppercase;
  color: #fff;
}
.last-block-left {
  width: 50%;
}
.last-block-right {
  width: 50%;
}
.last-block-right-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.last-block-right-img img {
  width: 90%;
}
.last-text {
  font-size: 30px;
  margin-bottom: 25px;
}

.last-bg {
  background-image: url(../img/second-bg.png);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,      /* верх полностью прозрачный */
    black 10%,           /* видимый с 10% */
    black 90%,           /* видимый до 90% */
    transparent 100%     /* низ снова прозрачный */
  );
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );

    
  position: absolute;
  left: 0;
  z-index: -1;
  bottom: 115px;
  position: absolute;
  width: 100%;
  height: 1000px;
  background-size: cover;
}

.modal-footer {
  display: flex;
  grid-template-columns: 250px;
  justify-content: start;
  text-decoration: none;
}

.register-modal-logIn {
  width: 222px;
  background: #ea2e32;
  border-radius: 60px;
  color: #fff;
  padding: 20px;
  border: none;
  transition: 0.3s;
}

.modal-title {
  color: #164194;
  font-size: 24px;
}

.modal-footer {
  display: flex;
  grid-template-columns: 250px;
  justify-content: start;
}
.a-modal {
}

.fast-link {
  justify-content: center;
  align-items: center;
  position: fixed;
  display: flex;
  flex-direction: column;
  right: 15px;
  bottom: 15px;
}
.fast-link-item {
  margin-bottom: 10px;
}

.fast-link-item img {
  width: 50px;
}
.modal-dialog a,
.modal-dialog p,
.modal-dialog label {
  color: #000;
}
.prize-block-img-ten {
  margin-bottom: 8px;
}
.prize-block-img-three img{
  height: auto;
  width: 100%;
  margin-top: 100px;
}
@media (max-width: 1824px) {
  .main {
    background-size: auto;
  }
  .rule-block-text {
    font-size: 22px;
  }
}
@media (max-width: 1399px) {
  .prize-block-img-one img {
    width: 100%;
    height: auto;
  }
  .product-blocks {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .product-block {
    width: 47%;
    margin: 12.5px;
  }
  .last_time_block {
    width: 125px;
    height: 125px;
  }
  .last-block-right {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .main-footer {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .main-prize {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .main-button{
    margin-bottom: 0;
    margin-top: 30px;
  }

  .main {
    background-size: inherit;
    background-image: url("../img/main-bg-mobile.png");
    padding-bottom: 100px;
  }
  .main-footer {
    font-size: 21px;
  }
  .product-block-text {
    font-size: 22px;
  }
  .main-block {
    flex-wrap: wrap;
    margin-top: 0;
  }
  .main-block-left {
    width: 80%;
    margin: 0 auto;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main-block-right {
    width: 100%;
  }
  .main {
    background-size: cover;
  }
  .main-logo {
    margin-top: 20px;
    width: 70%;
  }
  .main-five {
    margin-top: 20px;
    width: 70%;
  }
  .main-five-more {
    margin-top: 20px;
    width: 70%;
  }
  .rule-blocks {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .rule-block {
    width: 80%;
    margin-bottom: 80px;
  }
  .rule-block-img img {
    width: 76%;
  }
  .rule-block-second img {
    width: 34%;
  }
  .prize-block-text {
    font-size: 20px;
  }
  .prize-block-img-seven img,
  .prize-block-img-two img {
    height: 230px;
  }
  .last_time_block {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 992px) {
  .main-footer {
    font-size: 25px;
    align-items: center;
    flex-direction: column;
  }
  .plaha-text {
    font-size: 27px;
  }
 

  .prize-block {
    width: 49%;
  }
  .under-header {
    font-size: 27px;
  }
  .product-block {
    width: 80%;
  }
  .last-block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .last-block-left,
  .last-block-right {
    width: 80%;
  }
  .last-block-right {
    margin: 25px 0;
  }
  .last-text {
    font-size: 26px;
  }
  .last_time_block {
    width: 125px;
    height: 125px;
  }
}
@media (max-width: 767px) {
  .main {
    padding-bottom: 45px;
  }
  .main-footer {
    font-size: 21px;
  }
  .under-header {
    font-size: 19px;
  }
  .prize-blocks {
    justify-content: center;
    align-items: center;
  }
  .prize-block {
    width: 90%;
  }
  .last-block-left,
  .last-block-right {
    width: 100%;
  }
  .last-text {
    font-size: 20px;
    font-weight: 700;
  }
  .plaha-text {
    font-size: 22px;
  }

  .prize-block-img-ten {
    margin-bottom: 13px;
  }
  .prize-block-img-seven img,
  .prize-block-img-two img {
    height: 335px;
  }
}
@media (max-width: 576px) {
  .main-text {
    font-size: 24px;
  }
  .main-footer {
    font-size: 13px;
  }
  .rule-blocks {
    flex-direction: column;
    margin: 85px 0;
  }
  .under-header {
    font-size: 14px;
  }
  .prize-block-img-seven img {
    height: auto;
    width: 100%;
  }
  .prize-block-img-one img {
    height: auto;
    width: 100%;
  }
  .prize-block-img-two img {
    height: auto;
    width: 100%;
  }
  .rule-block-text{
    font-size: 20px;
  }
  .last-text{
    margin-bottom: 100px;
  }
  .footer.footer{
    font-size: 15px;
    height: 70px;
  }
}
@media (max-width: 516px) {
  .plaha-text {
    font-size: 17px;
  }

  .rule-block-img img {
    width: 100%;
  }
  .rule-block-second img {
    width: 80%;
  }
  .rule-block-img img {
    width: 90%;
  }
  .main {
    padding-bottom: 15px;
  }
  .swiper-slide img{
    
        width: 71%;
        height: auto  ;
  }
}

@media (max-width: 364px) {
  .under-header{
    font-size: 11px;
  }
}

/* Базовые стили бургер-кнопки */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* Навигация */
.header-nav {
  display: flex;
  gap: 20px;
}

/* Медиа-запрос */
@media (max-width: 1199px) {
  .burger {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: #300d3f;
    padding: 40px 20px;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .header-nav.active {
    right: 0;
  }
}
/* Десктоп — меню и аккаунт разделены */
.desktop-account {
  display: block;
}
.mobile-account {
  display: none;
}

/* Мобилка — аккаунт уходит внутрь меню */
@media (max-width: 1199px) {
  .desktop-account {
    display: none !important;
  }
  .mobile-account {
    display: block;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
}

.accordion-body {
  color: #000;
}

&.swiper-rtl .swiper-button-prev,
&.swiper-rtl ~ .swiper-button-prev,
& ~ .swiper-button-next,
.swiper-button-next {
  right: -10px !important;
}
&.swiper-rtl .swiper-button-next,
&.swiper-rtl ~ .swiper-button-next,
& ~ .swiper-button-prev,
.swiper-button-prev {
  left: -10px !important;
}

body.menu-open {
  overflow: hidden; /* блокируем прокрутку */
}

/* затемнение фона */
.menu-overlay {
  display: none;
}

@media (max-width: 1199px) {
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  .menu-overlay.active {
    display: block;
  }
}

.header_cabinet {
  padding: 10px;
  background: #ea2e32;
  border-radius: 20px;
  color: #fff;
}
.name {
  color: #fff;
}
.entrance {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.desktop-account {
  display: flex;
  align-items: center;
}

.fast-link-1{
  transition: opacity .3s;
}
.fast-link-1:hover{
  opacity: .8;
}


 :root {
      --bg: linear-gradient(135deg, #1e3a8a, #4f46e5);
      --text: #ffffff;
      --accent: #38bdf8;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }



    .countdown {
      z-index: 50000000;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: #652a7f;
}

    .countdown .title {
      text-align: center;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .countdown .timer {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .countdown .unit {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 1rem 1.5rem;
      min-width: 120px;
      transition: transform 0.2s ease;
    }

    .countdown .unit:hover {
      transform: scale(1.05);
    }

    .countdown .value {
      text-align: center;
      font-size: 3rem;
      font-weight: bold;
      color: var(--accent);
    }

    .countdown .label {
      text-align: center;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.8;
    }

    .countdown .finished {
      font-size: 2rem;
      font-weight: 600;
      color: #22c55e;
      margin-top: 2rem;
      animation: fadeIn 1s ease forwards;
    }
    @media (max-width:577px) {
      .countdown .unit{
        padding: 10px 0;
        
      }
      .countdown .value{
        font-size: 25px;
      }
      .countdown .label{
        font-size: 20px;
      }
      .countdown .unit{
        min-width: 80px;
      }
    }
     @media (max-width:405px) {
      .countdown .unit{
        padding: 10px 0;
        
      }
      .countdown .value{
        font-size: 20px;
      }
      .countdown .label{
        font-size: 13px;
      }
      .countdown .unit{
        min-width: 60px;
      }
     }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
      .value { font-size: 2rem; }
      .unit { padding: 0.8rem 1rem; min-width: 70px; }
    }
