* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #0f172a;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.5rem, 3vw, 2rem);
}

.poster {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.credit {
  color: #94a3b8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.credit a {
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.credit a:hover {
  color: #cbd5e1;
}
