/* Cookie Banner - Simple, non-intrusive design */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 1px solid #333;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  animation: slide-up 0.3s ease-out;
}

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

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

.cookie-banner-text {
  flex: 1;
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.cookie-banner-text a:hover {
  color: #818cf8;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-banner-btn-primary {
  background: #6366f1;
  color: white;
}

.cookie-banner-btn-primary:hover {
  background: #4f46e5;
}

.cookie-banner-btn-secondary {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid #444;
}

.cookie-banner-btn-secondary:hover {
  background: #2a2a2a;
  border-color: #555;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.25rem;
  }

  .cookie-banner-container {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-banner-text {
    text-align: center;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-btn {
    width: 100%;
  }
}

/* Hidden state */
.cookie-banner.hidden {
  display: none;
}
