* {
  box-sizing: border-box;
}

:root {
  --bg: #03030a;
  --footer-bg: rgba(5, 5, 15, 0.96);
  --footer-border: rgba(255, 90, 210, 0.34);
  --footer-text: rgba(255, 255, 255, 0.84);
  --footer-muted: rgba(255, 255, 255, 0.68);
  --footer-link: #ffd8ff;
  --footer-glow: rgba(255, 52, 210, 0.22);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 27, 99, 0.55), transparent 42%),
    linear-gradient(180deg, #010109 0%, var(--bg) 100%);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  background: #000;
}

.hero-card {
  width: 100%;
  background: #000;
  line-height: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

.site-footer {
  width: 100%;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  box-shadow:
    0 -12px 34px var(--footer-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 15px 0 18px;
  text-align: center;
}

.footer-line {
  margin: 5px 0;
  color: var(--footer-muted);
  font-size: clamp(11px, 1.25vw, 13px);
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.10);
}

.footer-links {
  color: var(--footer-text);
}

.footer-line a {
  color: var(--footer-link);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 216, 255, 0.38);
  text-shadow:
    0 0 10px rgba(255, 90, 220, 0.48),
    0 0 22px rgba(255, 90, 220, 0.22);
}

.footer-line a:hover,
.footer-line a:focus-visible {
  color: #ffffff;
  border-bottom-color: #ffffff;
  outline: none;
}

.footer-line span {
  display: inline-block;
}

@media (max-width: 700px) {
  .footer-inner {
    width: min(100% - 22px, 620px);
    padding: 13px 0 16px;
  }

  .footer-line {
    font-size: 11px;
    line-height: 1.5;
  }
}
