footer {
  background: #1a0022;
  color: #ff8edb;
  text-align: left;
  padding: 48px 8vw 24px;
  font-size: 1em;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 24px #ff3fa455;
  margin-top: 40px;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.02,.67,1.01);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 18px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3em;
  font-weight: bold;
  color: #ff8edb;
}
.footer-title {
  color: #ff8edb;
  font-size: 1.1em;
}
.footer-links, .footer-games, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-games a {
  color: #ff8edb;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer-links a:hover, .footer-games a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff8edbcc;
}
.footer-contact {
  color: #ff8edb;
  font-size: 1em;
}
.footer-contact .footer-social {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
.footer-social a img {
  filter: drop-shadow(0 0 8px #ff8edb88);
  transition: transform 0.2s;
}
.footer-social a:hover img {
  transform: scale(1.2) rotate(-8deg);
}
.footer-copy {
  margin-top: 24px;
  color: #ff8edb99;
  font-size: 0.95em;
  text-align: center;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .footer-logo-col, .footer-links, .footer-games, .footer-contact {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
    margin-bottom: 8px;
  }
  .footer-logo {
    justify-content: center;
    margin-bottom: 10px;
  }
  .footer-desc {
    margin: 0 auto 12px;
    max-width: 90vw;
    font-size: 1.08em;
  }
  .footer-links, .footer-games, .footer-contact {
    gap: 8px;
    margin-bottom: 18px;
  }
  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 32px 2vw 16px;
    font-size: 1em;
  }
  .footer-main {
    gap: 20px;
  }
  .footer-desc {
    font-size: 1em;
  }
  .footer-copy {
    font-size: 0.92em;
    padding-bottom: 8px;
  }
} 