/* Mundomio Onboarding Styles v1.1.0 */

#mm-onboarding-outer {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #fdfbfb;
}

#mm-onboarding-container {
    width: 100%;
    max-width: 700px;
    min-height: 500px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
}

.mm-scene {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mm-scene.active {
    display: flex;
}

/* UI Elements */
.pizarra-magica {
    background: #2c3e50;
    border: 10px solid #8e44ad;
    padding: 30px;
    border-radius: 15px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.mm-btn-principal, .mm-btn-final {
    background: #ffcc00;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 0 #ccaa00;
    transition: all 0.2s;
    margin-top: 20px;
}

.mm-btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #ccaa00;
}

.mm-btn-principal:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #ccaa00;
}

input {
    width: 80%;
    padding: 15px;
    border-radius: 10px;
    border: 3px solid #ffcc00;
    font-size: 1.1rem;
    outline: none;
}

/* Escena 2: Palabra Mágica */
#palabra-magica {
    font-size: 3rem;
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    margin: 20px 0;
}

/* Escena 3: Pergamino */
.invitacion-pergamino {
    background: #f4e4bc;
    color: #5d4037;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    border-left: 15px solid #d7ccc8;
    border-right: 15px solid #d7ccc8;
}

.invitacion-header h3 {
    border-bottom: 2px solid #5d4037;
    padding-bottom: 10px;
}

#display-nombre {
    font-weight: bold;
    color: #d32f2f;
    font-size: 1.4rem;
}