.footer {
  background: #030305;
  margin-top: auto;
}

.footer__top {
  padding: 12px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1e1e1e;
}

.footer__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  color: #fff;
  transition: 200ms;
  border: 1px solid #2e2e2f;
  font-size: 24px;
}

.footer__social-link img,
.footer__social-link svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer__social-link:hover {
  background: #0b0b0b;
}

.footer__social-link.social--vk:hover {
  color: #5181b8;
}

.footer__social-link.social--discord:hover {
  color: #5865f2;
}

.footer__social-link.social--telegram:hover {
  color: #0088cc;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 104px;
  flex-direction: column;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__link {
  cursor: pointer;
  transition: 200ms;
  color: #b1afac;
  text-transform: uppercase;
}

.footer__link:hover {
  color: #fff;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
}

.footer__between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.rating {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  color: #fff;
  transition: 200ms;
  border: 1px solid #1e1e1e;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .footer__links {
    gap: 12px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__bottom {
    gap: 32px;
  }
  .footer__copy {
    font-size: 12px;
  }
}
