* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #03070b;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #d8e8f0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 179, 190, 0.12), transparent 38rem),
    linear-gradient(180deg, #06121b 0%, #03070b 58%, #010305 100%);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: clamp(12px, 2vw, 28px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.poster {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(160, 218, 230, 0.18);
  border-radius: 4px;
  background: #02070b;
  box-shadow:
    0 0 0 1px rgba(0, 179, 190, 0.08),
    0 22px 80px rgba(0, 0, 0, 0.42);
  image-rendering: auto;
}

@media (max-width: 768px) {
  .page {
    padding: 0;
  }

  .poster {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
}

@media print {
  body {
    background: #fff;
  }

  .page {
    padding: 0;
  }

  .poster {
    border: 0;
    box-shadow: none;
  }
}
