#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: rgba(17,17,17,0.8); /* fondo tipo glass */
  backdrop-filter: blur(10px); /* efecto vidrio */
  color: #eee;
  border: 2px solid #8A0100;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  z-index: 10000;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInUp 0.6s ease;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

#cookie-banner p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

#cookie-banner a {
  color: #8A0100;
  font-weight: bold;
  text-decoration: underline;
}

#accept-cookies, #decline-cookies {
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  transition: background 0.3s ease;
}

#accept-cookies {
  background: #8A0100;
  color: #fff;
}

#accept-cookies:hover {
  background: #b30200;
}

#decline-cookies {
  background: #555;
  color: #eee;
}

#decline-cookies:hover {
  background: #333;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 30px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
