/* Cookie Consent Banner Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  animation: slideUp 0.4s ease-out;
  border-top: 2px solid #3a86ff;
}

@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;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-accept {
  background: linear-gradient(135deg, #3a86ff 0%, #2870ed 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(58, 134, 255, 0.3);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #2870ed 0%, #1e5dd6 100%);
  box-shadow: 0 4px 12px rgba(58, 134, 255, 0.4);
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: #b0b0b0;
  border: 1px solid #4a4a5e;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: #6a6a7e;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 16px;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-consent-content p {
    font-size: 14px;
    min-width: auto;
  }

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

  .cookie-btn {
    flex: 1;
    max-width: 140px;
    padding: 12px 20px;
  }
}
