/* Cookie Consent Banner Styles */

@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-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  animation: cookieSlideUp 0.4s ease-out;
}
#cookie-consent-banner.closing {
  animation: cookieSlideDown 0.3s ease-in forwards;
}
#cookie-consent-banner a {
  color: #60a5fa;
  text-decoration: none;
}
#cookie-consent-banner a:hover {
  text-decoration: underline;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-consent-text {
  flex: 1;
  min-width: 250px;
}
.cookie-consent-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
}
.cookie-consent-desc {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}
.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.cookie-btn-accept {
  background: #0066ff;
  color: white;
}
.cookie-btn-accept:hover {
  background: #0055dd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}
.cookie-btn-decline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 16px;
  }
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-consent-buttons {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
  }
}
