.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #021b35, #000e1c);
  color: #F5F5F5;
  padding: 20px;
  z-index: 9999;
  border-top: 4px solid #D4AF37;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
  backdrop-filter: blur(10px);
}

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

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

.consent-content {
  flex: 1;
}

.consent-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #D4AF37;
}

.consent-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

.consent-content a {
  color: #D4AF37;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.consent-content a:hover {
  color: #FFD700;
}

.consent-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.consent-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.consent-btn--primary {
  background: #D4AF37;
  color: #021b35;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.consent-btn--primary:hover {
  background: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.consent-btn--secondary {
  background: transparent;
  color: #F5F5F5;
  border: 2px solid rgba(245, 245, 245, 0.3);
  transition: all 0.3s ease;
}

.consent-btn--secondary:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .consent-banner {
    padding: 15px;
  }

  .consent-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .consent-buttons {
    flex-direction: column;
  }

  .consent-btn {
    width: 100%;
  }
}
