/* Cookie Consent Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d15;
  border-top: 1px solid #1e1e2f;
  padding: 20px 30px;
  z-index: 9999;
  animation: cookieBannerSlideUp 0.3s ease-out;
}

.cookie-banner.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-banner-text {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  flex: 1 1 300px;
}

.cookie-banner-text a {
  color: #6366f1;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #8b5cf6;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.cookie-banner-btn:active {
  transform: scale(0.97);
}

.cookie-btn-accept {
  background: #6366f1;
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #8b5cf6;
}

.cookie-btn-decline {
  background: transparent;
  color: #888;
  border: 1px solid #333;
}

.cookie-btn-decline:hover {
  color: #ccc;
  border-color: #555;
}

@media (max-width: 600px) {
  .cookie-banner.visible {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
