/* #region Hero Section */
.hero {
  min-height: calc(100vh - 115px);
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      90deg,
      #0b397f 0%,
      rgb(45 132 241 / 65%) 100%
    ),
    url(/wp-content/uploads/2025/11/7-блог-02.11.25.jpg);
  /* background-image: url("/wp-content/uploads/2025/11/7-блог-02.11.25.jpg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #ffd600;
  border-radius: 50px;
  padding: 12px 30px;
  width: max-content;
  background: #ffd6001a;
  box-shadow: 0px 0px 10px 2px #ffd600;
}

.ua-svg {
  width: 20px;
  height: auto;
}

.hero__badge p {
  color: #ffd600;
  font-size: 14px;
  font-weight: 600;
}

.hero__title {
  color: #fff;
  max-width: 800px;
  font-size: 84px;
  line-height: 100%;
  text-transform: uppercase;
}

.hero__subtitle {
  color: #ffd600;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 300;
}

.hero__text {
  font-size: 24px;
  color: #fff;
}

.hero__cta {
  display: flex;
  gap: 24px;
}

.hero__cta a {
  color: #fff;
  text-transform: uppercase;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  max-width: 200px;
}

.hero__cta a:hover {
  transform: scale(1.06);
  transition: transform 0.3s ease-out;
}

.hero__cta--join {
  background: linear-gradient(145deg, #ffd600 6.17%, #ff3b00 93.83%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 0px 10px 2px #ffd600;
}

.hero__cta--details {
  background: #e5e5e54d;
  border: 2px solid #0066ff99;
  box-shadow: 0px 0px 13px 1px #0066ff;
  padding: 16px 25px;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll--text {
  font-size: 14px;
  color: #ffd600;
  text-transform: uppercase;
  font-weight: 600;
}

.hero__scroll--img {
  max-height: 110px;
  margin-top: -36px;
}

@media (max-width: 1399px) {
  .hero__container {
    padding: 0 15px;
  }
}

@media (max-width: 1300px) {
  .hero {
    height: calc(100vh - 44px);
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 26px;
  }
  .hero__text {
    font-size: 16px;
  }
  .hero__badge {
    padding: 10px 15px;
  }
  .hero__badge p {
    font-size: 12px;
  }
  .ua-svg {
    width: 16px;
  }
  .hero__cta a {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
  }
}
/* #endregion */

/* #region Our Power */
.power {
  background: linear-gradient(180deg, #070707 0%, #0c0c0c 50%, #070707 100%);
}

.power__container {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 0;
  position: relative;
}

.power__container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #ffd600 20%,
    #ff8800 50%,
    #ffd600 80%,
    rgba(0, 0, 0, 0) 100%
  );
  bottom: 0;
  left: 0;
}

.power__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
}

.power__card,
.power__badge {
  position: absolute;
  overflow: hidden;
}
.power__card img,
.power__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.power__card--main {
  inset: clamp(6px, 0.7vw, 10px);
  border-radius: 20px;
  box-shadow: 0px 1px 16px #ffd600, 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.power__badge--tl {
  top: -60px;
  left: -60px;
  width: clamp(80px, 40%, 235px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  box-shadow: 0 0px 18px #ff3b00;
}

.power__card--br {
  right: -60px;
  bottom: 20px;
  width: clamp(36%, 42%, 48%);
  aspect-ratio: 4/3;
  border-radius: 14px;
  box-shadow: 0px 0px 13px 1px #0066ff;
}

.power__content-title {
  color: #fff;
  max-width: 800px;
  font-size: 72px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.power__content-text {
  color: #c5c5c5;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 48px;
}

.power__numbers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.power__number {
  font-size: 88px;
  font-weight: 800;
  line-height: normal;
  color: #fff;
}

.power__number-text {
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  color: #c5c5c5;
  font-weight: 600;
}

.power__content-link {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0px 0px 8px 2px #ffd600;
}

.power__content-link:hover {
  color: #fff;
  transform: scale(1.06);
  transition: transform 0.2s ease-out;
}

@media (max-width: 1399px) {
  .power__container {
    padding: 160px 15px;
  }
}

@media (max-width: 1023px) {
  .power__container {
    flex-direction: column-reverse;
    gap: 100px;
  }
  .power__container {
    padding: 100px 15px;
  }
}

@media (max-width: 767px) {
  .power__content-title {
    font-size: 40px;
  }
  .power__content-text {
    font-size: 16px;
  }
  .power__number {
    font-size: 46px;
  }
  .power__stage {
    aspect-ratio: 4/3;
    padding: 6px;
  }
  .power__badge--tl {
    top: -35px;
    left: -30px;
    width: clamp(68px, 40vw, 160px);
  }
  .power__card--br {
    right: -40px;
    bottom: -40px;
    width: 56%;
    border-radius: 12px;
  }
  .power__content-link {
    gap: 10px;
    font-size: 14px;
    padding: 14px;
  }
}

/* #endregion */

/* #region Current Events */
.news {
  background: #070707;
}

.news__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 15px;
}

.news__title {
  align-self: start;
  color: #fff;
  max-width: 450px;
  font-size: 72px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 24px;
}

.news__title::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #ffd600 20%,
    #ff8800 50%,
    #ffd600 80%,
    rgba(0, 0, 0, 0) 100%
  );

  bottom: 0;
  left: 0;
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
  gap: 40px;
}

.post-card {
  border-radius: 20px;
  border: 1px solid #ffd6004f;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.post-card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  padding: 24px;
  text-decoration: none;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #070707 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 0;
}

.post-card__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  color: #000;
  background: linear-gradient(145deg, #ffd600 6.17%, #ff3b00 93.83%);
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 25px;
}

.post-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 330px;
}

.post-card__meta {
  color: #ffd600;
  font-size: 14px;
}

.post-card__title {
  color: #fff;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  line-height: 30px;
}

.post-card__more {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.news__cta .btn-glow {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;
  text-transform: uppercase;
  background: linear-gradient(145deg, #ffd600 6.17%, #ff3b00 93.83%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 0px 10px 2px #ffd600;
}

.news__cta .btn-glow:hover {
  transform: scale(1.06);
  transition: transform 0.2s ease-out;
}

@media (max-width: 1024px) {
  .news__container {
    padding: 100px 15px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
  .news__title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .post-card__title {
    font-size: 18px;
	line-height: 100%;
  }
}

@media (min-width: 1400px) {
  .news__container {
    padding: 160px 0;
  }
}
/* #endregion */

/* #region Partners */
.partners {
  padding: 40px 0;
  background: #070707;
}
.partners__title {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  color: #070707;
}

.partners-swiper {
  position: relative;
}
.partners-swiper .swiper-wrapper {
  align-items: center;
}
.partners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  cursor: grab;
}
.partners__link {
  display: block;
}
.partners__link img {
  display: block;
  max-width: 100%;
  max-height: 90px;
  height: auto;
  width: auto;
  user-select: none;
  /* filter: grayscale(100%);
  transition: filter 0.2s ease, transform 0.2s ease; */
}
.partners__link:hover img {
  filter: none;
  transform: scale(1.02);
}

.partners__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.15);
}
.partners__prev {
  left: 4px;
}
.partners__next {
  right: 4px;
}
.partners__nav:hover {
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .partners__link img {
    max-height: 52px;
  }
}
@media (max-width: 520px) {
  .partners {
    padding: 28px 0;
  }
  .partners__title {
    font-size: 22px;
  }
  .partners__nav {
    width: 32px;
    height: 32px;
  }
}
/* #endregion */

/* #region Winners Slider */
.our-winners {
  background: radial-gradient(
      60% 42% at 50% 60%,
      rgba(0, 16, 64, 0) 0%,
      rgba(0, 16, 64, 0.6) 35%,
      rgba(0, 16, 64, 0) 76%
    ),
    linear-gradient(
      180deg,
      #070707 0%,
      #070707 8%,
      #001040 50%,
      #070707 92%,
      #070707 100%
    );
  background-color: #070707;
  background-repeat: no-repeat;
}

.our-winners__container {
  padding: 160px 0;
}

.our-winners__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-winners__badge {
  color: #ffd600;
  padding: 8px 30px;
  border: 1px solid #ffd600;
  border-radius: 50px;
  background: #ffd6001a;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  width: max-content;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0px 0px 10px 2px #ffd600;
}

#winners-swiper {
  overflow: visible;
  position: relative;
}

#winners-swiper .our-winners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 30px;
  padding-bottom: 90px;
}
.our-winners__title,
.our-winners__content-champ {
  color: #fff;
  max-width: 800px;
  font-size: 60px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 32px;
  max-width: 530px;
}

.our-winners__content-champ {
  text-align: start;
  margin-bottom: 24px;
  padding: 0;
}

.our-winners__title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #0066ff 20%,
    #00d4ff 50%,
    #0066ff 80%,
    rgba(0, 0, 0, 0) 100%
  );
  bottom: 0;
  left: 0;
}

.our-winners__content {
  display: flex;
  flex-direction: column;
}

.our-winners__content-undertitle {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #ffd600;
  text-transform: uppercase;
}

.our-winners__content-weight {
  font-size: 24px;
  line-height: normal;
  color: #c5c5c5;
  margin-bottom: 32px;
}

.our-winners__content-wins {
  font-size: 48px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 40px;
}

.our-winners__content-link {
  display: flex;
  gap: 20px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(145deg, #0066ff 6.17%, #00d4ff 93.83%);
  width: max-content;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 16px;
  box-shadow: 1px -1px 20px 3px #2790eb;
}

.our-winners__content-link:hover {
  color: #fff;
  transform: scale(1.098);
}

#winners-swiper .winners-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 10;
  border-radius: 18px;
}

#winners-swiper .swiper-button-prev,
#winners-swiper .swiper-button-next {
  position: static;
  margin: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.6);
  border: 2px solid #ffd60099;
  box-shadow: 0 0 18px rgba(255, 214, 0, 0.35);
}

#winners-swiper .swiper-button-prev::after,
#winners-swiper .swiper-button-next::after {
  font-size: 12px;
  color: #fff;
}

#winners-swiper .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 8px;
  min-width: 220px;
  height: 22px;
}

#winners-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #ffffff33;
  opacity: 1;
}

#winners-swiper .swiper-pagination-bullet-active {
  width: 96px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffd600 6.17%, #ff3b00 93.83%);
  box-shadow: 0 0 24px rgba(255, 214, 0, 0.45);
}

#winners-swiper .our-winners__slide {
  padding-bottom: 110px;
}

.winner-ring {
  --size: 580px;
  --ring: 95px;
  --stroke: 4px;
  --blue-1: #00c2ff;
  --blue-2: #001040;

  position: relative;
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  /* filter: drop-shadow(0 0 22px rgba(0, 178, 255, 0.45))
    drop-shadow(0 0 60px rgba(0, 178, 255, 0.25)); */
  box-shadow: 0px -1px 20px 4px #fff;
}

.winner-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    140deg,
    var(--blue-1),
    #6fd6ff 40%,
    var(--blue-1)
  );
  padding: var(--stroke);
  -webkit-mask: radial-gradient(farthest-side, #000 98%, transparent 100%)
      content-box,
    radial-gradient(farthest-side, #000 98%, transparent 100%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.winner-ring::after {
  content: "";
  position: absolute;
  inset: calc(var(--stroke) + 2px);
  border-radius: 50%;
  /* background: radial-gradient(
      120% 120% at 30% 30%,
      #0b2d75 0 30%,
      #083077 35% 55%,
      #0a2d72 60% 100%
    ),
    linear-gradient(145deg, var(--blue-2), #0033aa); */

  background: radial-gradient(
      120% 120% at 30% 30%,
      rgba(255, 255, 255, 0.06) 0 18%,
      rgba(255, 255, 255, 0) 40%
    ),
    radial-gradient(
      80% 80% at 70% 70%,
      rgba(0, 0, 0, 0.45) 0 35%,
      rgba(0, 0, 0, 0) 70%
    ),
    linear-gradient(
      150deg,
      var(--blue-2) 0%,
      #00153a 35%,
      #001c55 65%,
      #00246e 100%
    );
  padding: var(--ring);
  -webkit-mask: radial-gradient(farthest-side, #000 98%, transparent 100%)
      content-box,
    radial-gradient(farthest-side, #000 98%, transparent 100%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  box-shadow: inset 0 0 30px rgba(46, 130, 255, 0.45);
}

.winner-ring > img {
  position: absolute;
  inset: calc(var(--stroke) + var(--ring));
  width: auto;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35) inset;
  max-width: 384px;
}

@media (max-width: 999px) {
  .our-winners__container {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .winner-ring {
    --size: 320px;
    --ring: 26px;
  }
  .winner-ring > img {
    max-width: 260px;
  }
  .our-winners__title,
  .our-winners__content-champ {
    font-size: 40px;
    text-align: center;
  }

  #winners-swiper .our-winners__slide {
    flex-direction: column;
    gap: 40px;
  }
  .our-winners__content {
    align-items: center;
	padding: 0 15px;
  }

  .our-winners__content-undertitle,
  .our-winners__content-champ {
    margin-bottom: 15px;
  }

  .our-winners__title {
    padding: 0 15px 32px;
  }

  .our-winners__content-weight {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .our-winners__content-wins {
    font-size: 40px;
  }
  #winners-swiper .swiper-button-prev,
  #winners-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
  }
}
/* #endregion */

/* #region Join Us */
.join {
  background-image: linear-gradient(
      90deg,
      rgb(255 172 46 / 85%) 0%,
      rgb(241 92 45 / 65%) 100%
    ),
    url(/wp-content/uploads/2025/10/join.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.join__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 180px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.join__title {
  color: #fff;
  max-width: 800px;
  font-size: 72px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 32px;
}

.join__subtitle {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 60px;
}
.join__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 1px solid #fff;
  background: #000;
  padding: 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;
  width: max-content;
}

.join__link:hover {
  color: #fff;
  transform: scale(1.06);
  transition: transform 0.3s ease-out;
}

@media (max-width: 999px) {
  .join__title {
    font-size: 40px;
  }

  .join__subtitle {
    font-size: 24px;
  }

  .join__container {
    padding: 180px 15px;
  }
}
/* #endregion */
