.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.consent-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.consent-banner-text {
  flex: 1;
  min-width: 300px;
}

.consent-banner-title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.consent-banner-message {
  margin-bottom: 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

.consent-link {
  color: #7dd3fc;
  text-decoration: underline;
}

.consent-link:hover {
  color: #fff;
}

.consent-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.consent-banner-actions .btn {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .consent-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .consent-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .consent-banner-actions .btn {
    flex: 1;
    min-width: 100px;
  }
}
