/* Bottom-fixed cookie notice — single acknowledgement, not a fake consent manager. */
.lylib-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(15, 17, 40, 0.97);
  border: 1px solid var(--line-strong, rgba(255,255,255,0.15));
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  animation: lylib-cookie-in 0.35s ease;
}

@keyframes lylib-cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.lylib-cookie-text {
  flex: 1;
  min-width: 0;
  color: var(--text-muted, rgba(255,255,255,0.75));
  font-size: 0.82rem;
  line-height: 1.5;
}

.lylib-cookie-text a {
  color: var(--primary, #6366f1);
  text-decoration: underline;
}

.lylib-cookie-accept {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--primary, #6366f1) 0%, var(--accent, #ec4899) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.lylib-cookie-accept:hover {
  opacity: 0.9;
}

@media (max-width: 560px) {
  .lylib-cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .lylib-cookie-accept {
    width: 100%;
  }
}
