/* Footer-specific styles for Norvix Play */

.site-footer {
  font-size: var(--font-size-sm);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.footer-logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at 30% 20%, #fef9c3 0, var(--color-accent-gold) 40%, #ea580c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  color: #cbd5f5;
}

.footer-description {
  max-width: 26rem;
  color: #cbd5f5;
}

.footer-links-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-links-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links-list a {
  font-size: var(--font-size-sm);
  color: #e5e7eb;
}

.footer-links-list a:hover,
.footer-links-list a:focus-visible {
  color: var(--color-accent-gold);
}

.footer-responsible-text {
  color: #e5e7eb;
}

.footer-responsible-text-small {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: var(--space-2);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  padding: var(--space-3) var(--space-4);
  pointer-events: none;
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.96));
  color: #e5e7eb;
  border-radius: var(--radius-xl);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.7);
  padding: var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transform: translateY(110%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  pointer-events: auto;
}

.cookie-banner-title {
  font-size: 1rem;
  margin-bottom: var(--space-1);
}

.cookie-banner-description {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.cookie-banner-link {
  display: inline-block;
  margin-top: var(--space-1);
  font-size: 0.85rem;
  color: #bfdbfe;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.btn-cookie {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-cookie-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-purple));
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.6);
}

.btn-cookie-primary:hover,
.btn-cookie-primary:focus-visible {
  background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-gold));
}

.btn-cookie-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.8);
}

.btn-cookie-secondary:hover,
.btn-cookie-secondary:focus-visible {
  background: rgba(15, 23, 42, 0.5);
}

.cookie-banner-visible .cookie-banner-inner {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 640px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner-text {
    max-width: 60%;
  }
}
