/* ================================
   PITIUPI PRESENTATION - SLIDE 11 STYLES
   Simulador Personal (Todo Visible)
   ================================ */

   .slide[data-slide="11"] {
    padding: 1rem !important;
}

.slide-11-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 2rem;
    gap: 1rem;
}

.money-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(51, 204, 0, 0.4);
}

/* ================================
   CONTENEDOR CALCULADORA
   ================================ */
.calculator-container {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 950px;
    align-items: stretch;
    margin-top: 1rem;
}

/* --- Panel Izquierdo: Inputs --- */
.calc-inputs {
    flex: 0.9;
    background: rgba(3, 0, 46, 0.7);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(51, 204, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-group { display: flex; flex-direction: column; gap: 0.4rem; }
.input-group label { font-size: 0.8rem; color: var(--accent); font-weight: 700; text-transform: uppercase; }

/* Inputs generales */
input[type="number"], select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.6rem;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    width: 100%;
}
input[type="range"] { width: 100%; accent-color: var(--neon); }

/* --- BLOQUE SIMULACIÓN PERSONAL --- */
.player-sim-group {
    background: rgba(57, 255, 20, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px dashed var(--neon);
    margin-top: 0.5rem;
}

.sim-header {
    font-size: 0.9rem;
    color: var(--neon);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
}

.sim-row { display: flex; gap: 1rem; }
.sim-col { flex: 1; }

/* --- Panel Derecho: Resultados --- */
.calc-results {
    flex: 1.1;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.95));
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Bote Total */
.total-pot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-bottom: 1rem;
}
.res-label { font-size: 0.9rem; color: #aaa; font-weight: 700; }
.money-glow { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; font-weight: 900; color: #fff; text-shadow: 0 0 20px var(--neon); }

/* Caja de "Mi Ganancia" (Destacada) */
.my-profit-card {
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.1), rgba(57, 255, 20, 0.2));
    border: 2px solid var(--neon);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.2); } 50% { box-shadow: 0 0 25px rgba(57, 255, 20, 0.5); } }

.mp-header { color: var(--neon); font-weight: 900; letter-spacing: 2px; font-size: 1rem; margin-bottom: 0.5rem; }
.mp-amount { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 900; color: #fff; text-shadow: 0 0 20px var(--neon); line-height: 1; }
.mp-details { margin-top: 0.8rem; color: #ccc; font-size: 0.9rem; }

/* Desglose General (Texto pequeño) */
.fee-breakdown { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; padding: 0 0.5rem; }
.fee-item { display: flex; justify-content: space-between; color: #888; font-size: 0.9rem; }
.good-text { color: #fff; font-family: 'Orbitron', sans-serif; }

/* Selector de Modo */
.calc-mode-selector { display: flex; gap: 1rem; background: rgba(0,0,0,0.4); padding: 0.4rem; border-radius: 50px; }
.mode-btn { background: transparent; border: 1px solid transparent; color: #aaa; padding: 0.6rem 1.5rem; border-radius: 40px; cursor: pointer; transition: all 0.3s; font-family: 'Orbitron', sans-serif; }
.mode-btn.active { background: var(--primary); color: #000; font-weight: 700; box-shadow: 0 0 15px rgba(51, 204, 0, 0.4); }

/* Extras */
.divider { height: 1px; background: rgba(255,255,255,0.1); margin: 1rem 0; }
.antifraud-msg { opacity: 0.8; text-align: center; margin-top: 1rem; font-size: 0.9rem; color: #888; }
.radio-options { display: flex; gap: 1rem; }
.radio-btn { cursor: pointer; color: #ccc; display: flex; align-items: center; gap: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .calculator-container { flex-direction: column; }
    .mp-amount { font-size: 2.5rem; }
}