/* =========================================================================
 * ESTILOS RECONSTRUIDOS PARA EL MODAL DE OFERTA DEL SEÑUELO
 * MODIFICADO: Reestructurado para una imagen principal a la izq. y comparativa a la der.
 * ========================================================================= */

.modal--decoy-offer .modal__content {
    flex-direction: column;
    max-width: 850px;
    width: 90vw;
    height: 90vh;
    max-height: 600px;
    padding: 0;
    overflow: hidden;
    background: #1a202c;
    border: 2px solid #a78bfa; /* Borde Morado del Señuelo */
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.5);
    gap: 0;
}

/* --- Estructura de Columnas (Copiada de Falsa Victoria) --- */
.modal--decoy-offer .fv-visual-col, 
.modal--decoy-offer .fv-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.modal--decoy-offer .fv-text-col {
    flex-grow: 1;
    gap: 1.5vh;
    height: 50%;
    padding: clamp(15px, 3vh, 25px);
}
.modal--decoy-offer .fv-visual-col { 
    height: 50%; 
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #3c1742, #1e1b4b); /* Fondo Morado */
    align-self: stretch;
}
.modal--decoy-offer .fv-text-col .modal__footer {
    width: 100%;
    margin-top: auto;
    padding-top: 2vh;
}

/* ===== INICIO DE LA MODIFICACIÓN: Nuevos estilos ===== */
.dco-main-image {
    width: 80%;
    max-height: 40vh;
    object-fit: contain;
    z-index: 2;
    animation: prize-reveal-animation 4s ease-in-out infinite; /* Animación principal */
}

.dco-vs-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
    width: 100%;
    margin-top: 2vh; /* Espacio respecto al texto */
}
.dco-vs-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5vh;
}
.dco-vs-side h4 {
    margin: 0;
    font-size: clamp(0.6rem, 1.8vh, 0.7rem);
    text-transform: uppercase;
    color: #9ca3af;
    font-weight: bold;
}
.dco-vs-item {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5vh;
}
.dco-vs-item.is-reward {
    border-color: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}
.dco-vs-item img {
    width: clamp(60px, 10vh, 80px);
    height: clamp(60px, 10vh, 80px);
    object-fit: contain;
}
.dco-vs-symbol {
    font-size: clamp(1.5rem, 4vh, 2rem);
    font-weight: 900;
    color: #a78bfa;
    text-shadow: 0 0 10px #000;
}
/* ===== FIN DE LA MODIFICACIÓN ===== */

.modal--decoy-offer .modal__title {
    color: #c4b5fd; /* Color Lavanda */
    font-size: clamp(1.5rem, 4vh, 2rem);
    text-shadow: 0 0 10px #8b5cf6;
}
.modal--decoy-offer .modal__text {
    font-size: clamp(0.9rem, 2.2vh, 1rem);
    opacity: 0.9;
    margin: 1vh auto 0 auto; /* Reducido margen inferior */
    max-width: 45ch;
    flex-grow: 0; /* Ya no necesita crecer */
    color: #e5e7eb;
}

/* --- Botón Principal con Animación --- */
#budi-dco-accept-btn {
    position: relative;
    overflow: hidden;
    width: auto;
    padding: clamp(12px, 2vh, 15px) clamp(20px, 3vw, 30px);
    font-size: clamp(0.9rem, 2.2vh, 1.1rem);
    animation: button-pulse-glow 2s infinite ease-in-out;
}
#budi-dco-accept-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 20px;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(25deg);
    animation: gleam-effect 3s infinite linear;
}

/* --- Media Query para Vista Horizontal --- */
@media (orientation: landscape) {
    .modal--decoy-offer .modal__content {
        flex-direction: row;
        height: 80vh;
        max-height: 550px;
    }
    .modal--decoy-offer .fv-visual-col {
        flex: 0 0 45%;
        height: auto;
    }
    .modal--decoy-offer .fv-text-col {
        flex: 1 1 55%;
        text-align: left;
        height: auto;
        justify-content: center; /* Centra todo el contenido verticalmente */
    }
    .modal--decoy-offer .fv-text-col .modal__footer {
        align-items: flex-start;
    }
    .modal--decoy-offer .fv-footer-stacked {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
}

/* --- Animaciones (Copiadas de Falsa Victoria) --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes prize-reveal-animation {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.6));
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 1));
  }
}

@keyframes button-pulse-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(245, 158, 11, 0.8); }
}
@keyframes gleam-effect {
    0% { left: -100%; }
    100% { left: 150%; }
}