/* StreamChaosControls global footer: mirrors header link panels (static, no terminal animation) */

.scc-global-footer {
  width: 100%;
  margin-top: 40px;
  padding: 0 0 28px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.scc-global-footer .wrap {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.scc-footer-glow {
  height: 1px;
  margin: 0 0 16px;
  border: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 255, 178, 0.35) 20%,
    rgba(0, 225, 255, 0.45) 50%,
    rgba(124, 255, 178, 0.35) 80%,
    transparent
  );
  box-shadow: 0 0 12px rgba(0, 225, 255, 0.15);
}

.scc-footer-tagline {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(143, 180, 192, 0.72);
}

/* Outer shell: same visual language as .scc-terminal-banner, without scan lines */
.scc-footer-panel-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(124, 255, 178, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(0, 225, 255, 0.1), transparent 30%),
    radial-gradient(circle at top right, rgba(124, 255, 178, 0.08), transparent 28%),
    linear-gradient(180deg, #10141b 0%, #0b0f15 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 12px 40px rgba(0, 0, 0, 0.35);
  color: #eafcff;
}

.scc-footer-panel-body {
  position: relative;
  width: 100%;
  padding: 18px 20px 16px;
}

.scc-global-footer .scc-footer-links {
  margin-top: 0;
}

.scc-footer-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 12px 18px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(124, 255, 178, 0.12);
}

.scc-footer-meta__brand {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.scc-footer-meta__desc {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(234, 240, 255, 0.68);
  max-width: 22rem;
}

.scc-footer-meta__center {
  font-family: Consolas, Monaco, ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(234, 240, 255, 0.55);
  text-align: center;
  min-height: 1.2em;
}

.scc-footer-meta__right {
  font-size: 12px;
  color: rgba(234, 240, 255, 0.5);
  text-align: right;
}

@media (max-width: 900px) {
  .scc-footer-panel-body {
    padding: 16px 14px 14px;
  }

  .scc-footer-meta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .scc-footer-meta__desc {
    max-width: none;
  }

  .scc-footer-meta__right {
    text-align: center;
  }
}
