/* ================================================================
   PLAYBILL — Anastasia
   Two stylesheets in one file: screen view + print view.
   Print is optimized for booklet/letter-size pages.
   ================================================================ */

/* Local web fonts — files live in ./fonts/ so the playbill works offline
   and without depending on Google Fonts or any S3/CDN. */

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 800;       /* variable file covers 400 / 600 / 800 */
  font-display: swap;
  src: url('fonts/cinzel.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;       /* variable file covers 400 / 600 */
  font-display: swap;
  src: url('fonts/cormorant-garamond.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/great-vibes.woff2') format('woff2');
}

/* ---------------- BASE ---------------- */
:root {
  --ink: #1a1410;
  --paper: #f5efe3;
  --paper-edge: #e9dcb8;
  --gold: #b8923a;
  --gold-deep: #8c6a1f;
  --crimson: #6b1b2c;
  --shadow: rgba(60, 30, 0, 0.18);
  /* Readable warm text — darker than --gold-deep, still ties to the
     gold/crimson palette. Used for scene heads, singer names, role labels. */
  --accent-text: #3d2510;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #2b2622;
  color: var(--ink);
  font-family: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.55;
}

body {
  padding: 30px 0 60px;
}

/* ---------------- TOOLBAR (screen only) ---------------- */
.toolbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.toolbar button {
  cursor: pointer;
  padding: 8px 14px;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  transition: background .15s;
}
.toolbar button:hover { background: #4d111e; }
.toolbar .hint { color: #555; flex: 1 1 100%; font-style: italic; }

/* ---------------- PAGE (the playbill "leaf") ---------------- */
.page {
  position: relative;
  width: 800px;
  min-height: 1050px;
  margin: 0 auto 24px;
  padding: 70px 70px 80px;
  background: #ffffff; /*var(--paper);*/
  /* background-image:
    radial-gradient(ellipse at top left, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(140,90,30,.08), transparent 60%); */
  /* border: 1px solid var(--paper-edge);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 0 0 8px var(--paper),
    0 0 0 9px var(--gold-deep),
    0 14px 40px var(--shadow); */
}

/* paper grain */
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* background:
    repeating-linear-gradient(0deg, rgba(120,80,30,.025) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(90deg, rgba(120,80,30,.02) 0 2px, transparent 2px 6px); */
  mix-blend-mode: multiply;
}

/* Decorative inner border */
.page:not(.cover)::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid var(--gold);
  border-image: linear-gradient(135deg, var(--gold), var(--gold-deep), var(--gold)) 1;
  pointer-events: none;
  opacity: .55;
}

/* ---------------- COVER ---------------- */
/* Anastasia theme: midnight-blue "Once Upon a December" night sky
   with shimmering star-light and rich gold accents. */
.cover {
  /* background:
    radial-gradient(ellipse at 30% 20%, rgba(120, 160, 220, .35), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(80, 50, 140, .45), transparent 60%),
    radial-gradient(ellipse at center, #1a2b5c 0%, #0f1a3d 55%, #060a1f 100%); */
  color: #f4e3a8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: 
  radial-gradient(ellipse at 30% 20%, rgba(120, 160, 220, .35), transparent 55%), 
  radial-gradient(ellipse at 70% 80%, rgba(80, 50, 140, .45), transparent 60%), 
  radial-gradient(ellipse at center, #742993 0%, #3d0f35 55%, #08061f 100%)
}

/* faint starfield */
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,240,200,.9), transparent 60%),
    radial-gradient(1px 1px at 28% 42%, rgba(255,240,200,.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 47% 12%, rgba(255,240,200,.85), transparent 60%),
    radial-gradient(1px 1px at 62% 30%, rgba(255,240,200,.75), transparent 60%),
    radial-gradient(2px 2px at 78% 18%, rgba(255,240,200,.95), transparent 60%),
    radial-gradient(1px 1px at 88% 48%, rgba(255,240,200,.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 18% 62%, rgba(255,240,200,.8), transparent 60%),
    radial-gradient(1px 1px at 38% 78%, rgba(255,240,200,.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 56% 88%, rgba(255,240,200,.85), transparent 60%),
    radial-gradient(1px 1px at 72% 70%, rgba(255,240,200,.7), transparent 60%),
    radial-gradient(2px 2px at 92% 82%, rgba(255,240,200,.9), transparent 60%);
  opacity: .9;
}

.cover-frame {
  width: 100%;
  height: 880px;
  padding: 50px 40px;
  border: 4px double #d4af52;
  outline: 1px solid #b8923a;
  outline-offset: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(180, 200, 255, .08), transparent 60%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .35);
}


.cover-top .presents {
  font-family: 'Cinzel', serif;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 14px;
  color: #e8c878;
  margin-top: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

.cover-title h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 130px;
  margin: 0;
  color: var(--crimson);
  text-shadow: 2px 2px 0 rgba(255,255,255,.4), 4px 4px 8px rgba(60,20,0,.3);
  line-height: 1;
}

.cover-title .cover-logo {
  display: block;
  width: 60%;
  max-width: 480px;
  height: auto;
  margin: 0 auto 18px;
  filter:
    drop-shadow(0 0 18px rgba(255, 220, 140, .35))
    drop-shadow(2px 4px 8px rgba(0, 0, 0, .55));
}

.cover-title .subtitle {
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--ink);
  margin: 14px 0 22px;
}

.ornament {
  color: var(--gold-deep);
  letter-spacing: 14px;
  font-size: 14px;
}

.cover .ornament {
  color: #d4af52;
  text-shadow: 0 0 8px rgba(255, 215, 140, .4);
}

.cover-credits {
  font-size: 19px;
  /* line-height: 2; */
  color: #f4e3a8;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.cover-credits p { margin: 0; }
.cover-credits span {
  font-style: italic;
  color: #c9b079;
  display: inline-block;
  /* min-width: 110px; */
  text-align: right;
  margin-right: 10px;
}
.cover-credits strong {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: .04em;
  color: #f6e4a8;
}
.cover-credits .based-on {
  margin-top: 18px;
  font-style: italic;
  font-size: 13px;
  color: #c9b079;
  line-height: 1.55;
}
.cover-credits .directors {
  margin-top: 22px !important;
  font-size: 18px;
}
.cover-credits .directors span {
  font-style: italic;
  color: #c9b079;
}
.cover-credits .directors strong {
  color: #f6e4a8;
}
.cover-footer .licensing {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: #b89c66;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.cover-footer .licensing .lic-url {
  font-style: normal;
  letter-spacing: .05em;
}

.cover-footer .dates {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: .15em;
  font-weight: 600;
  color: #f4d77a;
  text-shadow: 0 0 12px rgba(255, 215, 140, .35), 0 1px 2px rgba(0,0,0,.6);
}
.cover-footer .venue {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 8px;
  color: #d8c180;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

/* ---------------- INTERIOR PAGES ---------------- */
.section-title {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 32px;
  letter-spacing: .12em;
  color: var(--crimson);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.section-title.small {
  font-size: 22px;
  margin-top: 36px;
}
.section-sub {
  text-align: center;
  font-style: italic;
  color: var(--accent-text);
  margin: 0 0 28px;
}

/* Director / synopsis paragraphs */
.director-note p,
.synopsis p {
  text-indent: 1.5em;
  margin: 0 0 14px;
}
.director-note p:first-of-type { text-indent: 0; font-variant: small-caps; }
.signature {
  text-indent: 0 !important;
  text-align: right;
  font-style: italic;
  margin-top: 20px;
  /* font-family: 'Great Vibes', cursive; */
  font-size: 28px;
  color: var(--crimson);
}
.synopsis h3 {
  font-family: 'Cinzel', serif;
  color: var(--crimson);
  font-size: 18px;
  letter-spacing: .15em;
  margin: 22px 0 10px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.synopsis h3:first-child { margin-top: 0; }

/* Cast list */
.cast-list { margin-top: 10px; }
.cast-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  font-size: 18px;
}
.cast-row .role {
  flex: 0 0 auto;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
}
.cast-row .actor {
  flex: 0 0 auto;
  font-style: italic;
  font-size: 17px;
}
.cast-row .dots {
  flex: 1 1 auto;
  border-bottom: 2px dotted var(--gold-deep);
  margin: 0 4px 5px;
  opacity: .6;
}
.cast-subhead {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 18px;
  letter-spacing: .2em;
  color: var(--crimson);
  margin: 28px 0 10px;
}
.ensemble {
  text-align: center;
  font-style: italic;
  line-height: 1.9;
}

/* Musical numbers (scene-based) */
.acts .act h3 {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 22px;
  letter-spacing: .25em;
  color: var(--crimson);
  margin: 10px 0 14px;
}

.acts .scene {
  margin: 0 0 12px;
  page-break-inside: avoid;
  break-inside: avoid;
}
.acts .scene-head {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 0 0 4px;
  border-bottom: 1px solid rgba(140, 90, 30, .35);
  padding-bottom: 3px;
}
.acts .song {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 2px 6px 2px 14px;
  font-size: 15px;
}
.acts .song .song-title {
  flex: 0 0 auto;
  font-style: italic;
  color: var(--ink);
}
.acts .song .song-title::before {
  content: "\201C"; /* opening curly quote */
}
.acts .song .song-title::after {
  content: "\201D"; /* closing curly quote */
}
.acts .song .dots {
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  min-width: 30px;
  align-self: baseline;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold-deep);
  opacity: .65;
  margin: 0 4px;
}
/* Real dot characters as the leader, so the separation appears in the
   text content too (so copy/paste and screen-readers still get a gap). */
.acts .song .dots::before {
  content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
}
.acts .song em {
  flex: 0 0 auto;
  font-style: italic;
  color: var(--accent-text);
  font-size: 13px;
  text-align: right;
}
/* Visually-hidden em-dash so copy/paste reads "Title — Singers". */
.acts .song em::before {
  content: " — ";
  font-size: 0;          /* hides visually */
  letter-spacing: 0;
}

.intermission {
  text-align: center;
  font-family: 'Cinzel', serif;
  letter-spacing: .35em;
  color: var(--crimson);
  margin: 22px 0;
  font-size: 14px;
  text-transform: uppercase;
}

/* Crew list */
.crew { margin-top: 12px; }
.crew-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(140,90,30,.35);
  font-size: 16px;
}
.crew-row span {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.crew-row strong {
  font-weight: 600;
  font-style: italic;
}
.orchestra {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-top: 8px;
}
.orchestra strong {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--crimson);
}

/* Crew groups (department rosters) */
.crew-groups {
  margin-top: 14px;
}
.crew-group {
  margin-bottom: 16px;
  page-break-inside: avoid;
  break-inside: avoid;
}
.crew-group h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 0 0 6px;
  border-bottom: 1px solid rgba(140, 90, 30, .35);
  padding-bottom: 3px;
}
.crew-group p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
.crew-group .crew-note {
  margin-top: 5px;
  font-size: 13px;
  color: var(--accent-text);
}
.crew-group .crew-note em {
  color: #6b4a1f;
}

/* Bios */
.bios {
  margin-top: 14px;
  column-count: 2;
  column-gap: 28px;
  column-rule: 1px solid rgba(140, 90, 30, .25);
}
.bio {
  margin-bottom: 14px;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.bio h4 {
  font-family: 'Cinzel', serif;
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: .08em;
  color: var(--crimson);
}
.bio h4 .bio-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
  letter-spacing: 0;
}
.bio p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

/* Acknowledgments */
.thanks ul {
  margin: 14px 0;
  padding-left: 22px;
}
.thanks ul li { margin: 4px 0; }
.thanks-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
}
.thanks-table th {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--crimson);
  text-align: left;
  padding: 6px 10px;
  border-bottom: 2px solid var(--gold-deep);
}
.thanks-table td {
  padding: 6px 10px;
  border-bottom: 1px dotted rgba(140, 90, 30, .35);
  vertical-align: top;
}
.thanks-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 40%;
}
.thanks-table td:last-child {
  font-style: italic;
  color: var(--accent-text);
}
.thanks h3 {
  font-family: 'Cinzel', serif;
  letter-spacing: .15em;
  color: var(--crimson);
  margin: 24px 0 8px;
  font-size: 16px;
}
.closing { text-align: center; margin-top: 28px; }
.closing .enjoy {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: var(--crimson);
  margin: 0 0 10px;
  line-height: 1;
}

/* Edit-mode */
.editing [contenteditable="true"] {
  outline: 1px dashed var(--crimson);
  outline-offset: 3px;
  background: rgba(255, 255, 200, .35);
}

/* ================================================================
   SHOUT-OUTS PAGE
   ================================================================ */
.shoutouts {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shoutout {
  position: relative;
  padding: 28px 36px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: linear-gradient(180deg, #fffaee 0%, #f8efd6 100%);
  box-shadow: 0 2px 8px rgba(60,30,0,.08);
  page-break-inside: avoid;
  break-inside: avoid;
}
.shoutout::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 14px;
  font-family: 'Great Vibes', cursive;
  font-size: 80px;
  line-height: 1;
  color: var(--crimson);
  opacity: .3;
}
.shoutout-body {
  margin: 0 0 10px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}
.shoutout-from {
  margin: 0;
  text-align: right;
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  color: var(--crimson);
  line-height: 1.2;
}

/* ================================================================
   ADVERTISEMENTS PAGE — community partners + summer camp
   ================================================================ */
.ads {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ad {
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 22px 26px;
  background: #fff;
  page-break-inside: avoid;
  break-inside: avoid;
  display: flex;
  gap: 22px;
  align-items: center;
}
.ad-logo {
  flex: 0 0 200px;
  text-align: center;
}
.ad-logo img {
  max-width: 100%;
  max-height: 110px;
  height: auto;
}
.ad-body { flex: 1 1 auto; }
.ad-body-full { flex: 1 1 100%; text-align: center; }
.ad-tag {
  margin: 0 0 10px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--crimson);
}
.ad-shows {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.ad-shows li {
  padding: 6px 0;
  border-bottom: 1px dotted rgba(140,90,30,.35);
  font-size: 15px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.ad-shows li:last-child { border-bottom: none; }
.ad-shows .ad-month {
  flex: 0 0 auto;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  min-width: 130px;
}
.ad-shows strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 17px;
  font-style: italic;
}
.ad-shows em {
  flex: 1 1 100%;
  margin-left: 130px;
  font-size: 13px;
  color: var(--accent-text);
}
.ad-url {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--gold-deep);
  text-align: right;
}

/* Stingray Summer Stage — bigger, more "ad-like" */
.ad-stingray {
  /* background:
    radial-gradient(ellipse at top, rgba(120, 200, 220, .2), transparent 60%),
    linear-gradient(180deg, #f0f8fb 0%, #ddeef3 100%); */
  border-color: #6fb3c4;
  text-align: center;
  padding: 32px 28px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ad-shda-badge {
  flex: 0 0 auto;
}
.ad-shda-badge img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 60, 80, .25);
  border: 3px solid #fff;
}
.ad-eyebrow {
  margin: 0 0 6px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #2d6f80;
}
.ad-title {
  margin: 0 0 12px;
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: var(--crimson);
  line-height: 1;
}
.ad-lede {
  margin: 0 0 12px;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
}
.ad-detail {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.ad-cta {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #2d6f80;
}

/* ================================================================
   PRINT — booklet-like single-sided letter pages
   Each .page becomes a sheet with proper page breaks.
   ================================================================ */
@media print {
  @page {
    size: letter;
    margin: 0.5in;
  }

  html, body {
    background: #fff !important;
    color: #000;
    font-size: 12pt;
  }

  body { padding: 0; }

  .no-print { display: none !important; }

  .page {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 0.25in 0.4in;
    box-shadow: none;
    border: none;
    background: #fff !important;
    page-break-after: always;
    break-after: page;
  }

  .page:last-of-type {
    page-break-after: auto;
    break-after: auto;
  }

  .page::before,
  .page::after { display: none; }

  /* keep gold/crimson but ensure printers honor them */
  .section-title,
  .cover-title h1,
  .cover-footer .dates,
  .closing .enjoy,
  .signature,
  .acts .act h3,
  .cast-subhead,
  .intermission,
  .synopsis h3,
  .bio h4,
  .thanks h3 {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Cover sized for full first page */
  .cover {
    background:
      radial-gradient(ellipse at 30% 20%, rgba(120, 160, 220, .35), transparent 55%),
      radial-gradient(ellipse at 70% 80%, rgba(80, 50, 140, .45), transparent 60%),
      radial-gradient(ellipse at center, #1a2b5c 0%, #0f1a3d 55%, #060a1f 100%) !important;
    color: #f4e3a8 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    min-height: 10in;
    display: flex;
  }
  .cover-frame { height: 9.5in; }
  .cover-title h1 { font-size: 110pt; }
  .cover-title .cover-logo {
    width: 70%;
    max-width: 4.8in;
  }

  /* Avoid awkward breaks */
  .cast-row,
  .crew-row,
  .acts ol li,
  .bio,
  .thanks ul li {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  h2.section-title,
  h3 {
    page-break-after: avoid;
    break-after: avoid-page;
  }
}
