/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #181b20;
  border-top: 1px solid #2a2d34;
  padding: 1.25rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  animation: cookieSlideUp 0.3s ease-out;
}

#cookie-banner.cookie-hidden {
  animation: cookieSlideDown 0.3s ease-in forwards;
}

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

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

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

.cookie-content p {
  color: #9ca3af;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: #3b82f6;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: #60a5fa;
}

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

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #60a5fa;
}

.cookie-btn-deny {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #2a2d34;
}

.cookie-btn-deny:hover {
  background: #1a1d23;
  color: #e4e4e7;
  border-color: #3b82f6;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
