
.modal-container {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* État initial : Caché */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-container.is-open {
    /* État final : Visible */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    height: 100%;
    padding: 3rem 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-btn {
	align-self: flex-end;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;

	transition: all 0.2s ease;
}

.close-btn:hover {
	transform: rotate(90deg);
}
