.classique-modale-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.classique-modale-overlay.active {
    opacity: 1;
}

.classique-modale-overlay.active .classique-modale {
    transform: scale(1);
}

.classique-modale {
    background: rgb(52, 52, 52);
    border-radius: 12px;
    border: 2px solid var(--color-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.classique-modale-header {
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.classique-modale-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: var(--color-gold);
}

.btn-close-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    color: #6b7280;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-icon:hover {
    background: #f3f4f6;
    color: #111827;
}


/* body */
.classique-modale-body {
    padding: 28px;
    overflow-y: auto;
    max-height: calc(90vh - 180px);
}

.classique-modale-body p {
    margin: 0;
    line-height: 1.6;
    color: white;
    font-size: 16px;
}

.classique-modale-footer {
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-primary {
    background: var(--color-gold);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--color-gold-hover);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.98);
}