/* Footer styles scoped to .site-footer */
.site-footer { background: radial-gradient(1200px 600px at 10% -20%, rgba(0,229,255,0.18), transparent 50%), radial-gradient(900px 400px at 90% -10%, rgba(255,46,147,0.15), transparent 45%), #0b0e14; color: #cfe8ff; border-top: 1px solid rgba(0,229,255,0.18); }
.site-footer .footer-inner { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }

.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 2rem; align-items: start; }
.footer-brand .brand-link { font-family: 'Orbitron', system-ui, sans-serif; font-weight: 700; letter-spacing: .04em; color: #ffffff; text-decoration: none; text-shadow: 0 0 10px rgba(0,229,255,0.35); }
.footer-brand .brand-link:focus-visible { outline: 2px solid #00e5ff; outline-offset: 3px; border-radius: 4px; }
.footer-brand .brand-desc { margin-top: .5rem; color: #a8c7ff; max-width: 52ch; }

.social-list { display: flex; gap: .75rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.social-list a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 0.5rem; color: #e6f1ff; background: #101521; border: 1px solid rgba(0,229,255,0.18); text-decoration: none; transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease; }
.social-list a:hover { transform: translateY(-1px); background: #142036; box-shadow: 0 0 16px rgba(0,229,255,0.18); }
.social-list a:focus-visible { outline: 2px dashed #ff2e93; outline-offset: 3px; }

.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.footer-col h3 { font-family: 'Inter', system-ui, sans-serif; font-weight: 700; font-size: 1rem; color: #ffffff; margin: 0 0 .5rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.footer-col a { color: #cfe8ff; text-decoration: none; padding: .25rem 0; border-radius: .375rem; }
.footer-col a:hover { color: #ffffff; text-decoration: underline; }
.footer-col a:focus-visible { outline: 2px dashed #00e5ff; outline-offset: 3px; }

.footer-bottom { border-top: 1px solid rgba(0,229,255,0.15); margin-top: 2rem; padding-top: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom .copyright { margin: 0; color: #a8c7ff; font-size: .95rem; }

/* Cookie banner */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1001; display: grid; place-items: center; pointer-events: none; }
.cookie-banner .cookie-content { width: min(960px, calc(100% - 1rem)); margin: 0.5rem; background: #0e1422; color: #cfe8ff; border: 1px solid rgba(0,229,255,0.22); border-radius: 0.75rem; box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 24px rgba(0,229,255,0.12); padding: 1rem; transform: translateY(120%); opacity: 0; transition: transform .25s ease, opacity .25s ease; pointer-events: auto; }
.cookie-banner.is-visible .cookie-content { transform: translateY(0); opacity: 1; }
.cookie-banner.is-hiding .cookie-content { transform: translateY(120%); opacity: 0; }
.cookie-banner h2 { font-size: 1.1rem; margin: 0 0 .25rem; color: #ffffff; }
.cookie-banner p { margin: 0.25rem 0 0.75rem; color: #a8c7ff; }
.cookie-banner a { color: #7ee0ff; }

.banner-actions { display: flex; gap: .5rem; justify-content: flex-end; }
.btn { font-family: 'Inter', system-ui, sans-serif; font-weight: 600; border-radius: 0.5rem; padding: 0.6rem 0.9rem; cursor: pointer; border: 1px solid transparent; }
.btn:focus-visible { outline: 2px solid #ff2e93; outline-offset: 3px; }
.btn-primary { background: linear-gradient(90deg, #00e5ff, #ff2e93); color: #0b0e14; border-color: rgba(0,0,0,0.1); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary { background: #101521; color: #e6f1ff; border-color: rgba(0,229,255,0.25); }
.btn-secondary:hover { background: #142036; }

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .banner-actions { flex-direction: column-reverse; align-items: stretch; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner .cookie-content, .nav-toggle .bar { transition: none !important; }
}
