.site-footer {
  background: linear-gradient(90deg, #1a001f, #2e0050);
  border-top: 3px solid #ff00ff;
  padding: 40px 20px;
  color: #0ff;
}

.footer-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 30px;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h3 {
  color: #ff00ff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-shadow:
    0 0 8px #ff00ff,
    0 0 20px #ff00ff;
  user-select: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #0ff;
  text-decoration: none;
  font-size: 1rem;
  text-shadow:
    0 0 6px #0ff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  user-select: none;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus {
  color: #ff00ff;
  text-shadow:
    0 0 12px #ff00ff,
    0 0 25px #ff00ff;
  outline: none;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #33004f;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aa00ff;
  text-shadow: 0 0 5px #aa00ff;
  user-select: none;
}

#cookie-popup {
  display: none;
  box-sizing: border-box;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  border: 2px solid #00fff7;
  box-shadow:
    0 0 5px #00fff7,
    0 0 15px #00fff7,
    0 0 30px #00fff7;
  padding: 20px 30px;
  max-width: 400px;
  border-radius: 12px;
  z-index: 9999;
  text-align: center;
  backdrop-filter: blur(6px);
}

#cookie-popup p {
  font-size: 1rem;
  margin-bottom: 15px;
  text-shadow:
    0 0 5px #00fff7,
    0 0 10px #00fff7;
}

#cookie-accept-btn {
  background: #00fff7;
  color: #1b1b2f;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  box-shadow:
    0 0 10px #00fff7,
    0 0 20px #00fff7 inset;
  transition: background 0.3s ease, color 0.3s ease;
}

#cookie-accept-btn:hover {
  background: #00c9b1;
  color: #000;
  box-shadow:
    0 0 15px #00c9b1,
    0 0 25px #00c9b1 inset;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .footer-column {
    min-width: 100%;
  }

  #cookie-popup {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
  }
}
