/* css/style.css */
/* Poster + visual layout only */

body {
  margin: 0;
  background: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

/* POSTER STRUCTURE */
.poster {
  max-width: 800px;
  margin: 50px auto;
  border: 3px solid #000;
  padding: 40px;
  background: #fff;
}

.logo-large {
  max-width: 220px;
  margin: 20px auto;
}

h1 {
  font-size: 2.6em;
  margin: 0 0 0.3em;
  border-bottom: 4px double #000;
  display: inline-block;
}

h2 {
  margin-top: 0.4em;
  text-transform: uppercase;
}

h3 {
  margin-top: 1.4em;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 0.1em;
}

.poster-arrow {
  position: fixed;
  top: 50%;
  right: 12px;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.4;
  user-select: none;
}

/* LIGHTBOX */
#card-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 6000;
}

#card-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
}