#cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: #1a1b1e;
  border: 2px solid #ff6b6b;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  animation: slideIn 0.3s ease-out;
}

#cookie-consent-banner.show {
  display: block;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#cookie-consent-banner h3 {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 700;
}

#cookie-consent-banner p {
  margin: 0 0 15px 0;
  color: #b8b9c1;
  font-size: 0.9em;
  line-height: 1.5;
}

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

#cookie-consent-banner .button-group {
  display: flex;
  gap: 10px;
}

#cookie-consent-banner button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9em;
}

#cookie-consent-accept {
  background: linear-gradient(135deg, #ff6b6b 0%, #f7b731 100%);
  color: #ffffff;
}

#cookie-consent-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

#cookie-consent-reject {
  background: #16161e;
  color: #ffffff;
  border: 1px solid #333;
}

#cookie-consent-reject:hover {
  background: #1f1f2e;
}
