:root {
  --ink: #f5f5f0;
  --ink-soft: rgba(245, 245, 240, 0.8);
  --panel: rgba(10, 10, 10, 0.9);
  --line: rgba(245, 245, 240, 0.35);
  --surface: rgba(8, 8, 8, 0.95);
  --bg: #000000;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--ink);
  background: url('../background2.gif') center/cover no-repeat;
  background-color: var(--bg);
  background-attachment: fixed;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.88);
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.2rem 3rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.mono-title {
  font-family: 'Cinzel Decorative', serif;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

.mono-link {
  color: var(--ink);
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.16em;
}

.button-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  touch-action: manipulation;
}

.text-muted {
  opacity: 0.75;
}

.text-center {
  text-align: center;
}

@media (max-width: 700px) {
  body {
    background-attachment: scroll;
  }
}
