.page--stub {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;

  background: radial-gradient(
      circle at 30% 40%,
      #1c1f2b,
      #0f1118 60%,
      #07080c
  );

  color: #d9dde7;
}

.dead-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dead-text {
  margin-left: 12%;
  max-width: 520px;
}

.dead-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #f0d27a;
}

.dead-text p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.dead-gif {
  margin-right: 20%;
  width: 340px;
  image-rendering: auto;
}
:root {
  --bg: #050509;
  --bg-elevated: #0b0b12;
  --bg-soft: #101018;
  --accent: #f5e06b;
  --accent-soft: rgba(245, 224, 107, 0.08);
  --accent-strong: #ffe87a;
  --text: #f5f5f7;
  --text-soft: #a3a3b4;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.65);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --blur-soft: 20px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: #f5f5f7;
  background: #07080c;
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  z-index: 0;
}

.page::before {
  content: "";
  position: fixed;
  inset: -120px;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(82, 70, 145, 0.65) 0, transparent 32%),
    radial-gradient(circle at 78% 72%, rgba(52, 96, 118, 0.55) 0, transparent 30%),
    radial-gradient(circle at 55% 45%, rgba(31, 36, 58, 0.75) 0, transparent 42%),
    linear-gradient(135deg, #161625 0%, #0d1018 45%, #08090d 100%);
  filter: blur(55px);
  transform: scale(1.08);
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}