/* --- Styles de base --- */
body {
    background-color: #1a120b;
    color: #e0dacc;
    font-family: 'Lora', serif;
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
body.visible {
    opacity: 1;
}

h1, h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    text-align: center;
    border-bottom: 1px solid #4a3f35;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* --- Conteneur principal --- */
.interlude-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.interlude-header {
    width: 100%;
    margin-bottom: 2rem;
}

.interlude-header img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Contenu texte --- */
.interlude-content {
    padding: 0 2rem;
}

.intro-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #c7bda2;
    text-align: center;
    margin-bottom: 3rem;
}

.text-section {
    margin-bottom: 2.5rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid #d4af37;
}

strong {
    color: #d4af37;
    font-weight: bold;
}

/* --- Bouton pour continuer --- */
.call-to-action {
    text-align: center;
    margin-top: 3rem;
}

.proceed-button {
    display: inline-block;
    background-color: #d4af37;
    border: 2px solid #d4af37;
    color: #1a120b;
    padding: 15px 35px;
    margin-top: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.proceed-button:hover {
    background-color: transparent;
    color: #d4af37;
}