.feux-artifice-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.feux-artifice-overlay.feux-artifice-visible {
    display: flex;
}

.feux-artifice-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feux-artifice-contenu {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.feux-artifice-texte h2,
.feux-artifice-texte h3,
.feux-artifice-texte p {
    margin: 0 0 12px 0;
}

.feux-artifice-texte p:last-child {
    margin-bottom: 0;
}

.feux-artifice-texte a {
    color: #ffffff;
    text-decoration: underline;
}

.feux-artifice-fermer {
    margin-top: 18px;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.feux-artifice-fermer:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .feux-artifice-contenu {
        padding: 20px;
    }
}
