.footer {
  margin-top: 12px;
}
@media (max-width: 1024px) {
  .footer {
    margin-top: 5px;
  }
}
.footer__inner {
  background: linear-gradient(180deg, rgba(27, 26, 31, 0.72) 0%, rgba(33, 32, 39, 0.72) 100%);
  border-radius: 16px 16px 0px 0px;
  padding: 32px 24px;
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  .footer__inner {
    flex-wrap: wrap;
    border-radius: 0;
    padding: 23px 24px;
  }
}
@media (max-width: 1024px) {
  .footer .wrap {
    padding: 0;
  }
}
.footer .menu-title {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #EBEBEB;
  opacity: 0.48;
  margin-bottom: 13px;
}
.footer__warning {
  display: flex;
  color: #EBEBEB;
  margin-top: 20px;
  gap: 8px;
}
.footer__link {
  font-family: "Play";
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #EBEBEB;
  display: flex;
  align-items: center;
  margin-left: 48px;
  margin-top: 8px;
  gap: 8px;
}
@media (max-width: 1024px) {
  .footer__link {
    margin-top: 3px;
  }
}
.footer__item {
  width: 100%;
  max-width: 317px;
}
@media (max-width: 1024px) {
  .footer__item {
    max-width: 100%;
  }
}
.footer-menu {
  width: 100%;
  max-width: 342px;
}
.footer-menu a {
  font-family: "Play";
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #EBEBEB;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-menu a:hover {
  color: #72F037;
}
.footer-menu li {
  list-style: none;
}
.footer__others {
  max-width: 320px;
}
.footer .footer-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1024px) {
  .footer__main {
    width: calc(50% - 12px);
  }
}
@media (max-width: 1024px) {
  .footer__links {
    width: calc(50% - 12px);
    order: 2;
  }
}
@media (max-width: 1024px) {
  .footer__others {
    width: calc(50% - 12px);
  }
}

.social-links {
  margin-top: 32px;
  gap: 16px;
  display: flex;
}
@media (max-width: 1024px) {
  .social-links {
    justify-content: space-between;
    padding: 0 5px;
    max-width: 500px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1a1d26;
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  max-width: 400px;
  margin: auto;
  font-size: 0.95rem;
}

.cookie-banner button {
  background: linear-gradient(90deg, #7f5eff, #a985ff);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
}