* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f5f1ed;
      font-family: 'Open Sans', sans-serif;
      color: #4a4a4a;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 2rem;
      text-align: center;
    }

    .poster-container {
      background: #fffaf6;
      border-radius: 1rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      overflow: hidden;
      max-width: 600px;
      width: 100%;
    }

    .poster-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    .text-content {
      padding: 2rem 1.5rem;
    }

    .tagline {
      font-size: 0.9rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #a29bfe;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    p {
      font-size: 1.1rem;
      color: #666;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .text-content {
        padding: 1.5rem 1rem;
      }

      h1 {
        font-size: 1.6rem;
      }

      p {
        font-size: 1rem;
      }
    }