body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Georgia', 'Times New Roman', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  transition: background-color 0.8s ease, color 0.8s ease;
  text-shadow: var(--bloom);
}
[data-theme="light"] body {
  text-shadow: 0 0 0.6px var(--text-color), 1.2px 0 0 rgba(255,0,0,0.3), -1.2px 0 0 rgba(0,0,255,0.3), 0 0 8px rgba(255,255,255,0.8);
}
[data-theme="light"] body::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.8) 0%, transparent 50%);
  pointer-events: none; z-index: 10; mix-blend-mode: screen;
}
.view {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.view.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.container {
  text-align: center;
  max-width: 1000px;
  padding: 40px;
  border-left: 1px solid var(--sep-color);
  border-right: 1px solid var(--sep-color);
  position: relative;
  z-index: 20;
}
