/* Modern Dark Theme */
#cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  border-top: 1px solid #333;
  opacity: 0;
  transition: all 0.4s ease-out;
}

#cookie-banner.show {
  bottom: 0;
  opacity: 1;
}

#cookie-banner h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 500;
}

#cookie-banner p {
  margin: 0 auto 15px;
  max-width: 800px;
  line-height: 1.5;
  font-size: 0.95rem;
  opacity: 0.9;
}

#cookie-banner a {
  color: #4dabf7;
  text-decoration: none;
  transition: opacity 0.2s;
}

#cookie-banner a:hover {
  opacity: 0.8;
}

#cookie-banner .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

#cookie-banner button {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}

#accept-cookies {
  background: #4dabf7 !important;
  border-color: #4dabf7;
}

#cookie-banner button:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 8px white;
  transition: all 0.3s ease-in-out;
}

#cookie-banner button:active {
  transform: translateY(0);
}

#reject-cookies {
  background: transparent;
  color: white;
  border: 1px solid #e53e3e;
}

#reject-cookies:hover {
  background: rgba(229, 62, 62, 0.1);
}

