.footer {
  background: var(--color-bg-dark);
  padding: 80px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.footer-logo {
  width: 87px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav ul,
.footer-nav .menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 15px;
  font-weight: 400;
  color: #ad6ef9;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  max-width: 800px;
  text-align: center;
}

.disclaimer-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-white);
}

.responsible-gaming {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.responsible-gaming-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-white);
}

.responsible-gaming-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.responsible-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gradient-start);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.responsible-link:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 23px;
  align-items: center;
}
.footer-social img {
  height: 26px;
}
.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-text-white);
  opacity: 0.7;
  text-align: center;
}

@media (max-width: 1024px) {
  .footer-nav {
    gap: 60px;
  }

  .footer-nav ul,
  .footer-nav .menu {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }

  .footer-nav {
    justify-content: center;
    gap: 12px;
  }

  .footer-nav ul,
  .footer-nav .menu {
    gap: 20px;
  }

  .footer-nav a {
    font-size: 16px;
  }
}
