:root {
  --grid-size: 26px; /* зменшили крок сітки */
  --grid-line: #262628; /* трохи мʼякше */
  --bg-color: #08080a;
}

.page-grid {
  position: fixed;
  inset: 0;
  background-color: var(--bg-color);

  background-image:
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px);

  background-size: var(--grid-size) var(--grid-size);
  background-position: center center;

  pointer-events: none;
  z-index: -10;
}

header {
  padding: 24px;
}

.banner {
  padding-top: 50px;
  margin-right: 76px;
  position: relative;

  .h1 {
    margin-top: 14px;
  }
}

@media (min-width: 1500px) {
  .banner {
    padding-top: 100px;
  }
}

.banner__desc {
  position: absolute;
  top: 320px;
  bottom: 0;
  right: 120px;
  z-index: 5;
  color: #DADADD;
}

.neon-deco-wrapper {
  position: relative;
  width: 100%;
  top: 20px;
}

.neon-deco {
  width: 100%;
  position: absolute;
  top: 24px;
  z-index: 2;
  filter: blur(10px);
  opacity: 0.9;
}

.neon-deco-down {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin-top: 60px;
  filter: blur(20px);
  opacity: 0.9;
}

.why-us {
  .container-bigger {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  position: relative;
  padding-top: 400px;

  .h2 {
    text-align: center;
  }
  .why-us__cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 16px;

    .why-us__cards__card {
      position: relative;
      z-index: 5;
      background-color: #141519;
      border-radius: 32px;
      height: auto;
      min-height: 180px;
      width: 100%;
      box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px #2e2f36;
      font-size: 16px;
      font-weight: 400;
      padding: 0 24px 20px 24px;

      .why-us__cards__card__img {
        height: 76px;
        width: 76px;
        display: block;
        margin-bottom: -2px;
      }
    }
  }
}

.why-us__decor {
  position: absolute;
  right: 97px;
  bottom: -120px;
}

.have-traffic {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 148px;
  padding-bottom: 80px;

  .h2 {
    margin-bottom: -24px;
  }
}

/* .glow-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.glow-svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  filter: blur(24px);
  height: 265px; /* Висота самої дуги */

svg {
  width: 100%;
}

.blur-line-wrap {
  position: relative;
  z-index: 50;
}

.no-blur-svg {
  filter: blur(2px);
  margin-top: 10px;
  position: absolute;
  z-index: 50;
}

.blur-svg {
  filter: blur(10px);
  position: absolute;
  top: 5px;
  z-index: 50;
}

.blur-line-wrap.tablet {
  left: 1000%;
}

.blur-line-wrap.tabletMedium {
  left: 1000%;
}

.blur-line-wrap.mobile {
  left: 1000%;
  padding-bottom: 50px;
}

.who-we-work-with {
  clip-path: ellipse(85% 155% at 50% 153%);
  padding-top: 371px;
  padding-bottom: 164px;
  background-color: #08080a;
  /* background: radial-gradient(circle at center, #121214 0%, #08080a 100%); */
  .h2 {
    text-align: center;
    margin-bottom: 32px;
  }
}

.who-we-work-with__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.who-we-work-with__content__card {
  max-width: 370px;
  width: 100%;
  border-radius: 32px;
  background-color: #141519;
  padding: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.2),
    /* Верхній шар: чорний 20% */ inset 0 0 0 1px #2e2f36;

  .h2 {
    text-align: left;
    text-transform: none;
    margin-bottom: 24px;
    color: white;
  }
}

.brands-we-work-with__bg {
  background-color: #08080a;
}

.events-swiper {
  transition-timing-function: ease-in-out;
}

.brands-we-work-with {
  padding-right: 76px;
  padding-bottom: 110px;

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brands-we-work-with__right {
    display: flex;
    align-items: center;
    margin-left: 10px;
    gap: 16px;

    .img-wrap {
      background-color: #fff;
      padding: 15px 20px;
      border-radius: 24px;
    }
  }
}

.brands-slider {
  width: 90%;
}

.events-section__bg {
  background-color: #08080a;
}

.events-section {
  color: white;
  overflow-x: hidden;

  .container {
    padding-right: 76px;
  }
}

.events-wrapper {
  display: flex;
  gap: 48px;
}

.events-left {
  flex: 0 0 250px;
}

.events-left .h2 {
  margin-bottom: 16px;
}

.events-left p {
  font-size: 16px;
  font-weight: 400;
  color: #dadadd;
}

.events-right {
  flex: 1;
  min-width: 0;
  margin-right: calc(-50vw + 50% - 15px);
}

.swiper {
  width: 100%;
}

.event-card {
  display: block;
  background: #111;
  border-radius: 24px;
  padding: 24px;
  height: auto;
  max-width: 414px;

  .event-card__link {
    text-align: center;
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: start;
  }

  .h3 {
    text-transform: none;
    margin-bottom: 24px;
    margin-right: auto;
    color: #f2f2f4;
  }

  .date {
    color: #DADADD;
  }
}

.event-card__img {
  width: 100%;
  /* aspect-ratio: 16 / 9; */
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.card-content .h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-content .date {
  font-size: 13px;
  opacity: 0.6;
}

.title-arrow-wrap {
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: start;

  .event-card__arrow-img {
    display: block;
    height: 24px;
    width: 24px;
  }
}

.hiring__bg {
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, 1) 0%,
    rgba(8, 8, 10, 0) 100%
  );
}

.hiring {
  text-align: center;
  padding-top: 180px;
  padding-bottom: 107px;

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

  .global__subtitle {
    margin: 16px 0 32px 0;
  }

  .global__subtitle.card__subtitle {
    margin: 0;
    text-align: left;
    font-weight: 400;
    margin-top: 24px;
  }

  .who-we-work-with__content__card {
    text-align: left;
    margin-bottom: 32px;
  }

  .global__buttons__button {
    margin: 0;
  }

  .global__buttons__button.hiring__gmail-btn {
    transition: background-color 0.3s;
  }

  .global__buttons__button.hiring__gmail-btn:hover {
    background-color: #1b1bff;
  }
}

.why-us {
  .swiper,
  .mySwiper,
  .why-us-swiper {
    display: none;
    padding-left: 24px;
  }
}

.brands-we-work-with {
  .swiper,
  .mySwiper,
  .brands-slider {
    display: none;
  }
}

.global__buttons__button.hiring__gmail-btn {
  background-color: transparent;
  border: 2px solid #1b1bff;
  /* margin-top: 16px; */
  width: 175px;
}

.footer {
  color: #b0b0b4;

  padding-bottom: 27px;
  .container-bigger {
    display: flex;
    flex-direction: column;
    gap: 17px;
  }
}

.footer__row:nth-child(1) {
  text-align: left;
}

.footer__row:nth-child(2) {
  text-align: right;
}

.footer__row {
  display: flex;
  justify-content: space-between;

  .footer__link {
    text-decoration: none;
    color: #b0b0b4;
    transition: color 0.3s;
  }

  .footer__link:hover {
    color: #1b1bff;
  }
}

.gmail-wrap__telegram.mobile {
  display: none;
}

.geo-wrap,
.number-wrap,
.gmail-wrap {
  display: flex;
  align-items: center;
  gap: 11px;

  .footer__row__img {
    height: 24px;
    width: 24px;
  }
}

.gmail-wrap {
  .footer__row__img {
    margin-top: 5px;
  }
}

.number-wrap {
  .footer__row__img {
    margin-top: 3px;
  }
}

.email-and-number {
  display: flex;
  align-items: center;
  gap: 16px;

  .geo-wrap.mobile {
    display: none !important;
  }
}

.geo-wrap__link {
  text-decoration: none;
  display: block;
}

.iGaming.mobile {
  display: none;
}
