@charset "UTF-8";
/* CSS Document */
body {
  background: radial-gradient(ellipse at 60% 10%, #24242b 65%, #181a1e 100%);
  color: #e0e2e8;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.screening-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3vw 0 5vw 0;
}

.screening-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #eaeaea;
  margin-bottom: 0.25em;
  margin-top: 1.3em;
  letter-spacing: 0.02em;
}

.screening-logline {
  font-family: 'Playfair Display', serif;
  font-size: 1.11rem;
  color: #bfc6d9;
  text-align: left;
  margin: 0 0 2.1em 0;
  font-style: italic;
  opacity: 0.92;
  letter-spacing: 0.01em;
  max-width: 680px;
}

.screening-frame {
   width: 95vw;
  max-width: 1100px;
  margin: 2rem auto 1.5rem auto;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screening-frame iframe, .screening-frame video {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 320px;
  max-width: 1100px;
  max-height: 68vh;     /* <--- Add this! */
  border-radius: 14px;
  border: none;
  box-shadow: 0 8px 36px 0 rgba(24,28,34,0.13);
  background: #0e0f11;
  display: block;
}

@media (max-width: 900px) {
  .screening-frame {
    width: 100vw;
    max-width: 100vw;
    margin: 1.1rem 0;
    padding: 0;
  }
  .screening-frame iframe,
  .screening-frame video {
    min-height: 190px;
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 700px) {
  .screening-frame iframe,
  .screening-frame video {
    max-height: 32vh;
    min-height: 180px;
  }
}

.back-btn {
  display: inline-block;
  margin: 2.7rem auto 0 auto;
  padding: 0.65em 2.1em;
  border-radius: 30px;
  background: rgba(38,40,55,0.82);
  color: #ced5e7;
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  border: 1.2px solid #262938;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.17s, color 0.15s, box-shadow 0.14s;
  text-align: center;
}
.back-btn:hover {
  background: #24253a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,144,255,0.07);
}
