/* dvd/dvd.css — Bouncing logo page.
   All color variables come from core/theme.css. */

* {
  box-sizing: border-box;
}

html {
  background-color: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.back-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 8px 10px;
  background: rgba(7, 26, 58, 0.8);
}

.logo {
  position: absolute;
  width: min(220px, 40vw);
  max-width: 280px;
  user-select: none;
  pointer-events: none;
  transition: filter 140ms linear;
  filter: var(--logo-filter);
  will-change: transform, filter;
}

@media (max-width: 480px) {
  .logo {
    width: min(180px, 55vw);
  }
}
