/* Consent Banner Styles */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f5f5f5;
  padding: 1.5rem;
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  font-family: 'Inter', sans-serif;
}

#consent-banner.show {
  transform: translateY(0);
}

.consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.consent-text {
  flex: 1;
}

.consent-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.consent-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #a0aec0;
  line-height: 1.5;
}

.consent-text a {
  color: #38b2ac;
  text-decoration: underline;
}

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

.btn-consent {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-accept {
  background: #38b2ac;
  color: #fff;
}

.btn-accept:hover {
  background: #319795;
  transform: translateY(-1px);
}

.btn-reject {
  background: transparent;
  color: #a0aec0;
  border: 1px solid #4a5568;
}

.btn-reject:hover {
  background: #2d3748;
  color: #fff;
}

/* Desktop layout */
@media (min-width: 768px) {
  .consent-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .consent-actions {
    flex-wrap: nowrap;
  }
}
