.gdpr-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: rgba(13, 22, 37, 0.95);
  border: 1px solid rgba(46, 230, 214, 0.3);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(4, 10, 20, 0.6);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: #d8e3f6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gdpr-banner.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.gdpr-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gdpr-content h4 {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.gdpr-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #a9b6ca;
}

.gdpr-content p a {
  color: #2ee6d6;
  text-decoration: underline;
}

.gdpr-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.gdpr-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.gdpr-btn-accept {
  background: linear-gradient(135deg, #3f7cff, #2ee6d6);
  color: #06101f;
}

.gdpr-btn-accept:hover {
  background: linear-gradient(135deg, #2ee6d6, #3f7cff);
  transform: translateY(-1px);
}

.gdpr-btn-decline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(179, 199, 229, 0.16);
  color: #d8e3f6;
}

.gdpr-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .gdpr-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }
}
