/*
 * Footer real de novenretro.com aislado para /nrchannel/.
 * Se carga DESPUÉS de la hoja original del prototipo v0.7 para que el
 * micrositio conserve exactamente su identidad visual y sólo comparta footer.
 */
.site-footer {
  --footer-yellow: #fbeb04;
  --footer-pink: #fb4dd0;
  --footer-cyan: #0cc0df;
  --footer-red: #ed1d52;
  --footer-muted: rgba(255,255,255,.72);
  --footer-maxw: 1260px;
  position: relative;
  margin-top: 56px;
  padding: 36px 24px 20px;
  overflow: hidden;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  border-top: 1px solid rgba(251, 235, 4, 0.24);
  background:
    radial-gradient(circle at 15% 10%, rgba(251, 235, 4, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(251, 77, 208, 0.14), transparent 28%),
    linear-gradient(180deg, #080204 0%, #030102 100%);
}

.site-footer * { box-sizing: border-box; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer .footer-glow {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--footer-yellow), var(--footer-pink), var(--footer-cyan), var(--footer-red));
  opacity: .85;
}

.site-footer .footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--footer-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.site-footer .footer-brand-block,
.site-footer .footer-links-block {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
}

.site-footer .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer .footer-logo-row img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  object-fit: contain;
  border-radius: 18px;
}

.site-footer .footer-logo-row h2 {
  margin: 0;
  color: #fff !important;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: normal;
}

.site-footer .footer-logo-row p {
  margin: 4px 0 0;
  color: var(--footer-yellow);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 800;
}

.site-footer .footer-bio {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--footer-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer .footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
}

.site-footer .footer-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 0;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
  border-width: 1px;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-footer .footer-actions .btn:hover { transform: translateY(-2px); }

.site-footer .footer-actions .btn-youtube {
  background: #ff0033 !important;
  color: #fff !important;
  border-color: rgba(255,0,51,.6) !important;
  box-shadow: 0 12px 26px rgba(255,0,51,.22) !important;
}
.site-footer .footer-actions .btn-youtube:hover { background: #ff2a4f !important; }

.site-footer .footer-actions .btn-donate {
  background: #0070ba !important;
  color: #fff !important;
  border-color: rgba(0,112,186,.65) !important;
  box-shadow: 0 12px 26px rgba(0,112,186,.22) !important;
}
.site-footer .footer-actions .btn-donate:hover { background: #009cde !important; }

.site-footer .footer-links-block {
  display: block;
}

.site-footer .footer-links-block h3 {
  margin: 0 0 14px;
  color: var(--footer-yellow);
  font-size: 1.15rem;
  line-height: 1.05;
  letter-spacing: normal;
}

.site-footer .footer-links-block a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: .9rem;
  line-height: 1.2;
  font-weight: 800;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.site-footer .footer-links-block a:hover {
  transform: translateX(3px);
  color: var(--footer-yellow);
  border-color: rgba(251,235,4,.38);
  background: rgba(251,235,4,.07);
}

.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--footer-maxw);
  margin: 18px auto 0;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.58);
  font-size: .92rem;
  line-height: 1.4;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 900px) {
  .site-footer .footer-inner { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .site-footer { padding: 28px 12px 18px; }
  .site-footer .footer-brand-block,
  .site-footer .footer-links-block { padding: 20px; border-radius: 20px; }
  .site-footer .footer-logo-row img { width: 58px; height: 58px; max-width: 58px; }
  .site-footer .footer-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .site-footer .footer-actions .btn { width: 100%; }
  .site-footer .footer-links-block a { min-height: 32px; padding: 6px 8px; font-size: .85rem; }
}
