:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07110d;
  color: #f6f0df;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  padding: 2rem;
  background: #07110d;
}

.preview {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.7) blur(8px);
  transform: scale(1.04);
}

.recovery {
  position: relative;
  width: min(42rem, 100%);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(205, 255, 226, 0.28);
  border-radius: 1.5rem;
  background: rgba(4, 15, 10, 0.9);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #a8ecc6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
}

.artist {
  margin: 0.8rem 0 2rem;
  color: #b9c9bf;
}

.notice {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

a {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(205, 255, 226, 0.28);
  border-radius: 999px;
  color: #d8ffe7;
  text-decoration: none;
}

a:hover {
  border-color: #a8ecc6;
  background: rgba(168, 236, 198, 0.09);
}
