#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  padding: 16px 24px;
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  font-family: inherit;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  max-width: 90%;
  width: 100%;
  border: 1px solid rgba(59, 130, 246, 0.3);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

#cookie-banner.show {
  display: flex !important;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#cookie-banner.hide {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
}

@media (min-width: 768px) {
  #cookie-banner {
    flex-direction: row;
    text-align: left;
    max-width: 600px;
    padding: 18px 28px;
  }
}

#cookie-banner-text {
  flex: 1;
  line-height: 1.5;
}

#cookie-banner a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  border-bottom: 1px dashed transparent;
}

#cookie-banner a:hover {
  color: #93c5fd;
  border-bottom-color: #93c5fd;
}

#cookie-banner button {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

#cookie-banner button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  transform: translateY(-1px);
}

#cookie-banner button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}