:root {
    --accent-pink: #ff2e88;
    --bg-dark: #020202;
    --panel-bg: #111111;
}

/* Style de base des popups */
.musee-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--panel-bg);
    border: 1px solid var(--accent-pink);
    border-radius: 8px;
    color: white;
    font-family: sans-serif;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 46, 136, 0.2);
    z-index: 1000;
}

/* Instructions de départ */
#instructions {
    width: 300px;
    padding: 30px;
}

#instructions h3 {
    color: var(--accent-pink);
    text-transform: uppercase;
    margin-top: 0;
}

#project-popup {
    position: fixed;
    z-index: 10000;
    display: none;
    border: 2px solid #ff2e88;
    background: #000;
    margin: 0;
    padding: 0;
}

#popup-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Boutons */
.btn-primary {
    background: var(--accent-pink);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ff0073;
    box-shadow: 0 0 15px var(--accent-pink);
}

#close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--accent-pink);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}