@font-face {
  font-family: 'Fixel Variable';
  src: url('/fonts/FixelVariable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-main: 'Fixel Variable', sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: #000000;
}

.container {
  margin: 0 auto;
  padding-left: 77px;
  padding-right: 77px;
}

.flx-row {
  display: flex;
  flex-direction: row;
}

.flx-col {
  display: flex;
  flex-direction: column;
}

.jst-bet {
  justify-content: space-between;
}

.jst-arr {
  justify-content: space-around;
}

.jst-cent {
  justify-content: center;
}




/* header styles */
.header_links {
  gap: 52px;
}

.burger {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 20;
}


.header_wrapper{
    justify-content: space-between !important;
    margin-top: 20px;
}
/* адаптив */
@media (max-width: 991px) {
  .burger {
    display: block;
  }

  .header_menu-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #000;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .header_menu-content.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .header_links {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .header_wrapper{
    justify-content: center !important;
}
}

/* крестик при открытии */
.burger.active::before {
  content: "✖";
}


.header__link{
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-main);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
    text-decoration: none;
    cursor: pointer;
}

.btn_link{
    padding: 15px 40px 15px 40px;
    border-radius: 100px;
    background: rgba(99, 133, 150, 0.50);
    color: var(--secondary-change-it, #C4EBFF);
    font-family: var(--font-main);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


/* head styles */


/* <!-- hero-section --> */
.hero__wrap{
    display: flex;
    flex-direction: column;
    height: 606px;
    padding: 140px 120px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 30px;
}

.hero_text{
  color: var(--White, #FFF);
  text-align: center;
  font-family: var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px; /* 155% */
}

.hero_btn{
  display: flex;
  text-decoration: none;
  cursor: pointer;
  padding: 13px 40px 14px 38px;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--White, #FFF);
  color: var(--Background, #101111);
  text-align: center;
  font-family: var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px; /* 155% */
}

.hero_item {
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.hero_items-wrapper {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  background: black;
}

.hero_items-line {
  display: flex;
  gap: 24px;
  animation: scrollLoop 40s linear infinite;
  width: max-content;
  will-change: transform;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero_items-line:hover {
  animation-play-state: paused;
}

.hero_item {
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.hero_item.clickable {
  cursor: pointer;
}

.hero_item:hover {
  transform: scale(1.2);
}

/* Попап */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup.active {
  display: flex;
}

.popup_content {
  background: #fff;
  color: #000;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.popup_content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.popup_close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

.hero__pic-img{
  max-width: 1000px;
}

@media (max-width: 768px) {
  .hero_items-wrapper {
    padding: 80px 0;
  }

  .hero_items-line {
    gap: 12px;
    animation-duration: 60s;
  }

  .hero_item {
    width: 200px;
    height: 200px;
  }

  .popup_content {
    max-width: 90%;
    font-size: 14px;
  }

  .popup_content img {
    max-height: 200px;
    object-fit: contain;
  }
  .hero__wrap{
    width: auto;
    height: auto;
    padding: 0;
  }

  .hero__pic-img{
    display: none;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
}

.hero_btn {
  font-size: 16px;
}
}

.info__item-wrap {
  flex: 1;
  min-width: 250px;
}

.info__item {
  border: 1px solid #444;
  border-radius: 16px;
  padding: 40px 60px 20px 60px;
  background: #121212;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info__item-title {
  color: var(--White, #FFF);
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: 35px; /* 152.174% */
}

.info__item-description {
  color: var(--White, #FFF);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 152.174% */
}

.info__divider {
  height: 1px;
  background: #333;
}

.info__btn {
  color: white;
  text-decoration: none;
}

.info__btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-popup.hidden {
  display: none;
}

.info-popup-content {
  background: #fff;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  border-radius: 16px;
  color: #000;
  position: relative;
}

.info-popup .close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
}


.info__title{
  color: var(--White, #FFF);
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 39px; /* 150% */
}

.info-list{
  display: flex;
  margin-top: 70px;
  gap: 25px;
}

.info-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.info-modal__content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.info-modal__close {
  position: absolute;
  top: 10px; right: 16px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.info_wrapper{
  margin-top: 140px;
}


@media (max-width: 768px) {

  .info-list {
    flex-direction: column;
  }
}

.about__col1 h2{
  color: var(--White, #FFF);
  font-size: 53px;
  font-style: normal;
  font-weight: 500;
  line-height: 67px; /* 126.415% */
  letter-spacing: -2px;
}

.about__col2-p{
  color: var(--White, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.about__col2-p span{
  font-weight: 700;
}

.section-pad{
  margin-top: 130px;
  margin-bottom: 130px;
}

.section-padd{
  margin-top: 130px;
  padding-top: 130px;
  padding-bottom: 130px;
}

.about__link{
  color: var(--White, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px; /* 155% */
}

.about__btn-wrap{
  gap: 20px;
}

.about__btn{
  color: var(--Background, #101111);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px; /* 163.158% */

  display: flex;
  width: 178px;
  height: 59px;
  padding: 14px 40px 14px 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  
  border-radius: 100px;
  background: var(--White, #FFF);
}

.colored{
  background: var(--White, #000000);
  color: var(--Background, #ffffff);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}



@media (max-width: 768px) {

  .about__btn{
    width: auto;
  }

  .about__wrapper, .about__btn-wrap{
  flex-direction: column;
}
}

.event__col1{
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 20px;
}

.event__title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 87.5% */
  padding: 38px 47px 38px 38px;
  border-radius: 28px;
  border: 1px solid var(--main-change-it, #638596);
  background: var(--main-change-it, #638596);
  min-width: 600px;
}

.event__wrap{
  flex: 1;
  gap: 94px;
}

.event__pic{
  width: 634px;
  height: 634px;
  flex-shrink: 0;
  
}

.event__pic-img{
  width: 634px;
  height: 634px;
  flex-shrink: 0;
  border-radius: 38px;
}

.event__descr, .event__subtext{
  padding: 38px;
  border-radius: 28px;
  border: 1px solid var(--Gray, #565656);
}

.event__col1{
  color: var(--White, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}

.event__subtext {
    line-height: normal;
    font-size: 28px;
    font-weight: 700;
}

.promo__wrap{
  display: flex;
  flex-direction: column;

}

.promo__items-line{
  margin-top: 90px;
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.promo__item-ico-img{
  width: 426px;
  height: 426px;
  border-radius: 28px;
}

.promo__item{
  display: flex;
  flex-direction: column;
}

.promo-bg{
  background-color: #FFF !important;
  border-radius: 55px;
}

.promo__item-name{
  padding-top: 26px;
  color: var(--Background, #101111);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 39px; /* 150% */
}

.promo__item-date-time-wrap{
  padding-top: 5px;
  display: flex;
  flex-direction: row;
  gap: 10px;

  color: var(--Background, #101111);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px; /* 155% */
}

.promo__item-cost{
  padding-top: 20px;
  color: var(--Gray, #565656);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 164.706% */
}

.promo__items-controls{
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.promo__ctl-left, .promo__ctl-right{
  display: flex;
  padding: 21px 20px 20px 21px;
  justify-content: center;
  align-items: center;
  border-radius: 65px;
  border: 1px solid rgba(16, 17, 17, 0.20);
  background: var(--White, #FFF);
}

.promo__wrap h3{
  color: var(--Background, #101111);
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 67px; /* 128.846% */
  letter-spacing: -2px;
}







.old-event__wrap{
  display: flex;
  flex-direction: column;

}

.old-event__items-line{
  margin-top: 90px;
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.old-event__item-ico-img{
  width: 426px;
  height: 426px;
  border-radius: 28px;
}

.old-event__item{
  display: flex;
  flex-direction: column;
}

.promo-bg{
  background-color: #FFF !important;
  border-radius: 55px;
}

.old-event__item-name{
  padding-top: 26px;
  color: var(--Background, #101111);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 39px; /* 150% */
}

.old-event__item-date-time-wrap{
  padding-top: 5px;
  display: flex;
  flex-direction: row;
  gap: 10px;

  color: var(--Background, #101111);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px; /* 155% */
}

.old-event__item-cost{
  padding-top: 20px;
  color: var(--Gray, #565656);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 164.706% */
}

.old-event__items-controls{
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.old-event__ctl-left, .old-event__ctl-right{
  display: flex;
  padding: 21px 20px 20px 21px;
  justify-content: center;
  align-items: center;
  border-radius: 65px;
  border: 1px solid rgba(16, 17, 17, 0.20);
  background: var(--White, #FFF);
}

.old-event__wrap h3{
  color: var(--Background, #101111);
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 67px; /* 128.846% */
  letter-spacing: -2px;
}

.hidden {
  display: none !important;
}

.promo__items-wrap,
.old-event__items-wrap {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.promo__ctl-left,
.promo__ctl-right,
.old-event__ctl-left,
.old-event__ctl-right {
  cursor: pointer;
  transition: opacity 0.2s;
}

.promo__items-line,
.old-event__items-line {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
}


@media (max-width: 768px) {
.event__wrap{
    flex-direction: column-reverse;
  }
  

  .event__pic, .event__pic-img{
    width: 100%;
    height: auto;
  }

  .event__title{
    min-width:0;
  }

  .promo__item-ico-img, .old-event__item-ico-img {
    width: 326px;
    height: 326px;
    border-radius: 28px;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .event__wrap{
    flex-direction: column-reverse;
  }
  .event__pic, .event__pic-img{
    width: 100%;
    height: auto;
  }

  .event__title{
    min-width:0;
  }

  .promo__item-ico-img, .old-event__item-ico-img {
    width: 326px;
    height: 326px;
    border-radius: 28px;
}

.info-list{
  flex-direction: column;
}
}




.section-dark {
  background: #0a0a0a;
  color: #fff;
}
.padded {
  padding: 60px 0;
}
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}
.steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  font-size: 20px;
  font-weight: bold;
  background: #222;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
}
.step-content h4 {
  font-size: 20px;
  margin: 0 0 8px;
}
.btn-light {
  display: flex;
width: 225px;
height: 50px;
padding: 10px 26px 10px 26px;
justify-content: center;
align-items: center;
flex-shrink: 0;

border-radius: 100px;
border: 1px solid rgba(255, 255, 255, 0.25);
background-color: #00000000;

color: var(--White, #FFF);
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 155.556% */
}
.rules-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.rules-table th {
  text-align: left;
  padding: 12px;
  width: 200px;
  background: #111;
  vertical-align: top;
}
.rules-table td {
  padding: 12px;
  background: #1c1c1c;
}

.how__wrapper{
  display: flex;
  gap: 250px;

}

.rules-section .rules-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  row-gap: 30px;
  column-gap: 420px;
  margin-top: 40px;
}

.rule-item {
  display: contents;
}

.rule-title {
  padding: 16px 0;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #333;
}

.rule-text {
  padding: 16px 0;
  color: #ddd;
  border-bottom: 1px solid #333;
  line-height: 1.6;
}


@media (max-width: 768px) {
.how__wrapper{
  flex-direction: column;
  gap:0;
}

.rules-section .rules-grid{
  column-gap: 0;
}
}

.footer {
  background: #0d0d0d;
  color: #aaa;
  font-size: 14px;
  padding: 30px 0 20px;
  border-top: 1px solid #222;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}

.footer__logo-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.footer__logo {
  font-family: 'cursive';
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.footer__nav a {
  color: #aaa;
  text-decoration: none;
  margin: 0 3px;
}

.footer__by {
  font-size: 12px;
  color: #666;
}

.footer__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0.8);
}

.footer__bottom {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}


a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}
