/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: linear-gradient(135deg, #1a0033 0%, #330066 100%);
  border: 3px solid #ff00ff;
  border-radius: 10px;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5),
              0 0 60px rgba(0, 255, 255, 0.3),
              inset 0 0 20px rgba(255, 0, 255, 0.2);
  font-family: 'Press Start 2P', monospace;
  animation: slideInLeft 0.5s ease-out;
}

#cookie-consent-banner.hidden {
  display: none;
}

#cookie-consent-banner h3 {
  color: #0ff;
  font-size: 14px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #0ff;
}

#cookie-consent-banner p {
  color: #fff;
  font-size: 8px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

#cookie-consent-banner a {
  color: #ff00ff;
  text-decoration: underline;
}

#cookie-consent-banner a:hover {
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.cookie-btn {
  flex: 1;
  padding: 10px 15px;
  border: 2px solid #ff00ff;
  background: linear-gradient(135deg, #330066 0%, #660099 100%);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  cursor: pointer;
  border-radius: 5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
  min-width: 120px;
}

.cookie-btn:hover {
  background: linear-gradient(135deg, #660099 0%, #990099 100%);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
  transform: translateY(-2px);
}

.cookie-btn-accept {
  border-color: #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.cookie-btn-accept:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.cookie-btn-decline {
  border-color: #ff0066;
  box-shadow: 0 0 10px rgba(255, 0, 102, 0.3);
}

.cookie-btn-decline:hover {
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.6);
}

/* Animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile responsive */
@media (max-width: 600px) {
  #cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    padding: 15px;
  }

  #cookie-consent-banner h3 {
    font-size: 12px;
  }

  #cookie-consent-banner p {
    font-size: 7px;
  }

  .cookie-btn {
    font-size: 7px;
    padding: 8px 12px;
    min-width: 100px;
  }
}
