/* ====== Il Sigillo di Enoch — stile narrativo ====== */

.game-shell {
    min-height: 100vh;
    background: radial-gradient(ellipse at top, #1a1410 0%, #0a0807 70%);
    color: #d6cfc1;
    font-family: "Georgia", "Times New Roman", serif;
    display: flex;
    flex-direction: column;
}

/* ---- Status bar ---- */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.55);
    border-bottom: 1px solid #6b4a1a;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status-left {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.status-name {
    color: #efb350;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.status-chapter {
    color: #a89578;
    font-style: italic;
    font-size: 0.85rem;
}

.status-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.status-item {
    background: #3b2a14;
    color: #efc491;
    border: 1px solid #6b4a1a;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.status-empty {
    color: #5a513f;
    font-size: 0.8rem;
    font-style: italic;
}

/* ---- Main / Scene ---- */
.game-main {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    flex: 1;
}

.scene-title {
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: 1.9rem;
    color: #f0d3a3;
    border-bottom: 1px solid #6b4a1a;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.scene p {
    line-height: 1.75;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    color: #d6cfc1;
}

.scene p:first-of-type::first-letter {
    font-size: 2.2rem;
    color: #efb350;
    float: left;
    line-height: 1;
    padding-right: 0.4rem;
}

.scene-ending {
    margin-top: 1.5rem;
    padding: 0.6rem 1rem;
    border-left: 3px solid #c0392b;
    background: rgba(120, 30, 30, 0.18);
    color: #f0a09a;
    font-style: italic;
    letter-spacing: 0.04em;
}

/* ---- Choices ---- */
.choice-panel {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
}

.choice-button {
    text-align: left;
    background: rgba(40, 28, 14, 0.6);
    color: #ecdcb8;
    border: 1px solid #6b4a1a;
    padding: 0.85rem 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.05s ease;
    border-radius: 2px;
}

.choice-button:hover {
    background: rgba(99, 56, 6, 0.55);
    border-color: #efb350;
    color: #fff3d6;
}

.choice-button:active {
    transform: translateY(1px);
}

.restart-button {
    margin-top: 1.6rem;
    background: #791f1f;
    color: #f7c1c1;
    border: 1px solid #f09595;
    padding: 0.6rem 1.2rem;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 2px;
}

.restart-button:hover {
    background: #9b2a2a;
    color: #ffe;
}
