/* ---------- Reset & base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #6fd83a;
  --green-dark: #4fae1f;
  --bg-dark: #14171a;
  --bg-darker: #0b0d0f;
  --text-light: #f5f5f5;
  --text-muted: #c9c9c9;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-darker);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Poster shell ---------- */
.poster {
  /* width: 100%;
  max-width: 1080px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #1c2024 0%, #101315 45%, #0b0d0f 100%);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,0.6); */
}

.poster a {
  display: block;
  width: 100%;

}

.poster img {
  width: 100%;
  height: 100dvh;
}

.mobile-img {
  display: none;
}


@media only screen and (max-width: 530px) {
  .mobile-img {
    display: block;
  }

  .desktop-img {
    display: none;
  }
}