:root {
    --bg: #f6f3ee;
    --text: #2a2a2a;
    --muted: #6a6a6a;
    --accent: #4f5f73;
    --max-width: 820px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Source Serif 4", serif;
    font-size: 22px;
    line-height: 1.42;
}

/* --- LAYOUT --- */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 28px 72px;
}

/* --- TITLE BLOCK --- */

.title {
    text-align: center;
    font-family: "Bangers", cursive;
    font-size: clamp(3.6rem, 6.5vw, 5.4rem);

    letter-spacing: 0.11em;

    margin: 0 0 10px 0;
    color: var(--accent);

    white-space: nowrap;        /* prevents ugly wrapping */
}

.subtitle {
    text-align: center;
    font-family: "Bangers", cursive;

    font-size: 2.2rem;   /* roughly +100% */
    letter-spacing: 0.08em;

    margin: 8px 0 34px 0;  /* tighten above, expand below */
    color: var(--accent);
}

.cast {
    text-align: center;
    margin-bottom: 32px;
}

.cast-title {
    font-family: "Bangers", cursive;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    color: var(--accent);
}

.cast div:not(.cast-title) {
    font-size: 1.2rem;
    margin: 2px 0;
}

/* --- IMAGE --- */

.visual {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 28px auto 48px auto;
}

/* --- PLAY TEXT --- */

.play {
    margin: 0;
}

/* speaker */

.speaker {
    font-family: "Bangers", cursive;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin: 0 0 4px 0; /* tight */
    color: var(--accent);
}

/* spoken lines */

.line {
    margin: 0 0 14px 1.8em; /* indentation + spacing */
}

/* stage directions */

.stage {
    margin: 0 0 12px 0;   /* ONLY bottom spacing */
    font-style: italic;
    color: var(--muted);
    font-size: 0.96em;
}

/* tighten stage after dialogue */
.line + .stage {
    margin-top: -6px;
}

/* ensure space AFTER stage before next speaker */
.stage + .speaker {
    margin-top: 6px;
}

/* --- SIGNATURE --- */

.signature {
    text-align: center;
    margin-top: 70px;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: lowercase;
}

.signature a {
    text-decoration: none;
    color: var(--muted);
}

/* --- MOBILE --- */

@media (max-width: 700px) {
    body {
        font-size: 20px;
        line-height: 1.4;
    }

    .container {
        padding: 30px 18px 56px;
    }

    .title {
        white-space: normal;      /* allow wrapping */
        line-height: 0.9;         /* tighten gap between lines */
        letter-spacing: 0.08em;   /* slightly reduced for better fit */
    }

    .subtitle {
        font-size: 1.8rem;        /* scaled but still clearly secondary */
        margin: 10px 0 30px;
    }

    .line {
        margin-left: 1.4em;
        margin-bottom: 12px;
    }

    .stage {
        margin-bottom: 10px;
        font-size: 0.95em;
    }

    .speaker {
        font-size: 1.4rem;
        letter-spacing: 0.045em;
    }

    .visual {
        margin: 24px auto 40px;
    }

    .signature {
        margin-top: 60px;
        letter-spacing: 0.18em;
    }
}
