/* Cookie Consent Banner - GaaS Aesthetic */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 8, 16, 0.98);
  backdrop-filter: blur(12px);
  color: #f0f4ff;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 170, 0.08);
  z-index: 10000;
  display: none;
  border-top: 1px solid rgba(0, 212, 170, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#cookie-consent-banner.show {
  display: block;
  animation: slideUp 0.4s ease-out;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-consent-text p {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f4ff;
}

.cookie-consent-text p:first-child {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cookie-consent-text a {
  color: #00d4aa;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 170, 0.3);
  transition: all 0.2s ease;
}

.cookie-consent-text a:hover {
  color: #00ffcc;
  border-bottom-color: rgba(0, 255, 204, 0.5);
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.cookie-consent-btn.accept {
  background: #00d4aa;
  color: #050810;
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.cookie-consent-btn.accept:hover {
  background: #00ffcc;
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.5), 0 4px 12px rgba(0, 212, 170, 0.3);
}

.cookie-consent-btn.decline {
  background: rgba(0, 212, 170, 0.08);
  color: #00d4aa;
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.cookie-consent-btn.decline:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.4);
  color: #00ffcc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 1.25rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    gap: 1.25rem;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-consent-btn {
    flex: 1;
    min-width: 120px;
  }
}
