/* MATRIZ DE ALTA INGENIERÍA 8x8 PARA EL ÁLBUM DE MU INSTINTO */
#mu-album-grid-matrix {
    display: grid !important;
    /* Fuerza 8 columnas de tamaño exactamente igual en pantallas de PC */
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    gap: 5px !important; /* Separación limpia entre cartas */
}

/* Reducimos los contenedores de las tarjetas para que quepan de forma compacta en una sola pantalla */
.card-album-cromo {
    transition: all 0.2s ease-in-out;
    background: #0d0f13 !important;
    border-color: #2d3238 !important;
    padding: 2px 1px !important; 
    /* 🔴 MEJORA: Bajamos la altura mínima de 95px a 70px para achicar los cuadros drásticamente */
    min-height: 70px !important; 
}

/* Ajuste proporcional de las miniaturas de los GIF de las mascotas */
.card-album-cromo img {
    max-height: 35px !important; /* Reduce el tamaño para que la tarjeta sea simétrica */
    object-fit: contain !important;
    margin-top: 1px !important;
    margin-bottom: 1px !important;
}

/* Mini tipografía ultra compacta para los nombres de los Muuns */
.card-album-cromo .text-truncate {
    font-size: 0.58rem !important;
    line-height: 1.1 !important;
    margin-top: 1px !important;
    padding: 0 2px !important;
}

/* Desktop: 8 columnas (8x8 = 64) */
@media (min-width: 992px) {
    #mu-album-grid-matrix {
        grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    }
}

/* Tablet: 4 columnas (4x16 = 64) */
@media (min-width: 576px) and (max-width: 991px) {
    #mu-album-grid-matrix {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* Mvil: 2 columnas (2x32 = 64) */
@media (max-width: 575px) {
    #mu-album-grid-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ==========================================================================
   BOTONES DE PREMIOS - DISEÑO COMPACTO Y UNIFORME
   ========================================================================== */
.mu-claim-buttons-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

/* Botón Base Compacto */
.mu-claim-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 0;
}

.mu-claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mu-claim-btn:hover::before {
    opacity: 1;
}

.mu-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Icono Compacto */
.mu-claim-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.mu-claim-btn:hover .mu-claim-btn-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Contenido Compacto */
.mu-claim-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    min-width: 0;
    flex: 1;
}

.mu-claim-btn-title {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-claim-btn-subtitle {
    font-size: 0.6rem;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Efecto de brillo animado */
.mu-claim-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.mu-claim-btn:hover .mu-claim-btn-shine {
    left: 100%;
}

/* ===== BOTÓN BRONCE ===== */
.mu-claim-btn-bronze {
    border-color: #cd7f32;
    color: #cd7f32;
}

.mu-claim-btn-bronze .mu-claim-btn-icon {
    background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
    color: #fff;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.4);
}

.mu-claim-btn-bronze:hover {
    border-color: #da914a;
    color: #da914a;
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

/* ===== BOTÓN PLATA ===== */
.mu-claim-btn-silver {
    border-color: #c0c0c0;
    color: #c0c0c0;
}

.mu-claim-btn-silver .mu-claim-btn-icon {
    background: linear-gradient(135deg, #e8e8e8 0%, #a8a8a8 100%);
    color: #000;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.mu-claim-btn-silver:hover {
    border-color: #d4d4d4;
    color: #d4d4d4;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

/* ===== BOTÓN ORO ===== */
.mu-claim-btn-gold {
    border-color: #ffd700;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0,0,0,0.8) 100%);
}

.mu-claim-btn-gold .mu-claim-btn-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: goldPulse 2s ease-in-out infinite;
}

.mu-claim-btn-gold:hover {
    border-color: #ffe44d;
    color: #ffe44d;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

/* ===== BOTÓN TIENDA ===== */
.mu-claim-btn-shop {
    border-color: #a855f7;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    min-width: 140px;
    flex: 0 0 auto;
}

.mu-claim-btn-shop .mu-claim-btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.mu-claim-btn-shop:hover {
    border-color: #c084fc;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.6);
}

/* ===== BOTÓN INTERCAMBIO ===== */
.mu-claim-btn-exchange {
    border-color: #ff6b35;
    color: #fff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    min-width: 140px;
    flex: 0 0 auto;
}

.mu-claim-btn-exchange .mu-claim-btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

.mu-claim-btn-exchange:hover {
    border-color: #ff8c5a;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
}

/* ===== ESTADO DISABLED ===== */
.mu-claim-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.7);
    transform: none !important;
}

.mu-claim-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mu-claim-btn:disabled .mu-claim-btn-icon {
    animation: none !important;
    box-shadow: none !important;
}

.mu-claim-btn:disabled .mu-claim-btn-shine {
    display: none;
}

/* ===== BADGES ===== */
.mu-claimed-badge,
.mu-locked-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.mu-claimed-badge {
    background: #28a745;
    color: #fff;
}

.mu-locked-badge {
    background: rgba(0, 0, 0, 0.85);
    color: #ffc107;
    border: 1px solid #ffc107;
}

/* Badge de Tienda Activa */
.mu-shop-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: rgba(255, 255, 255, 0.9);
    color: #a855f7;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Badge de Canjear (Intercambio) */
.mu-exchange-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ff0000 0%, #ff6b35 100%);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 900;
    animation: pulse-badge 1.5s ease-in-out infinite;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.4);
    z-index: 10;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Badge de cantidad disponible */
.exchange-count-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.65rem;
    margin-left: 0.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .mu-claim-buttons-container {
        flex-wrap: wrap;
    }
    
    .mu-claim-btn {
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    .mu-claim-btn-shop,
    .mu-claim-btn-exchange {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .mu-claim-btn {
        flex: 1 1 100%;
        padding: 0.6rem 0.75rem;
    }
    
    .mu-claim-btn-shop,
    .mu-claim-btn-exchange {
        flex: 1 1 100%;
    }
    
    .mu-claim-btn-title {
        font-size: 0.75rem;
    }
    
    .mu-claim-btn-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .mu-claim-btn-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .mu-claim-btn-title {
        font-size: 0.7rem;
    }
    
    .mu-claim-btn-subtitle {
        font-size: 0.6rem;
    }
}

/* Efecto de brillo animado */
.mu-claim-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.mu-claim-btn:hover .mu-claim-btn-shine {
    left: 100%;
}

/* ===== BOTÓN BRONCE (Reclamar #1) ===== */
.mu-claim-btn-bronze {
    border-color: #cd7f32;
    color: #cd7f32;
}

.mu-claim-btn-bronze .mu-claim-btn-icon {
    background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
    color: #fff;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
}

.mu-claim-btn-bronze:hover {
    border-color: #da914a;
    color: #da914a;
    box-shadow: 
        0 8px 25px rgba(205, 127, 50, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mu-claim-btn-bronze:not(:disabled):hover .mu-claim-btn-icon {
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.6);
}

/* ===== BOTÓN PLATA (Reclamar #2) ===== */
.mu-claim-btn-silver {
    border-color: #c0c0c0;
    color: #c0c0c0;
}

.mu-claim-btn-silver .mu-claim-btn-icon {
    background: linear-gradient(135deg, #e8e8e8 0%, #a8a8a8 100%);
    color: #000;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.mu-claim-btn-silver:hover {
    border-color: #d4d4d4;
    color: #d4d4d4;
    box-shadow: 
        0 8px 25px rgba(192, 192, 192, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mu-claim-btn-silver:not(:disabled):hover .mu-claim-btn-icon {
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.6);
}

/* ===== BOTÓN ORO (Reclamar #3) ===== */
.mu-claim-btn-gold {
    border-color: #ffd700;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0,0,0,0.8) 100%);
}

.mu-claim-btn-gold .mu-claim-btn-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: goldPulse 2s ease-in-out infinite;
}

.mu-claim-btn-gold:hover {
    border-color: #ffe44d;
    color: #ffe44d;
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mu-claim-btn-gold:not(:disabled):hover .mu-claim-btn-icon {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: goldPulseIntense 1s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

@keyframes goldPulseIntense {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 1);
    }
}

/* ===== ESTADO DISABLED ===== */
.mu-claim-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.7);
    transform: none !important;
}

.mu-claim-btn:disabled:hover {
    transform: none !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mu-claim-btn:disabled .mu-claim-btn-icon {
    animation: none !important;
    box-shadow: none !important;
}

.mu-claim-btn:disabled .mu-claim-btn-shine {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mu-claim-buttons-container {
        flex-direction: column;
        width: 100%;
    }
    
    .mu-claim-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mu-claim-btn {
        padding: 0.6rem 1rem;
    }
    
    .mu-claim-btn-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .mu-claim-btn-title {
        font-size: 0.8rem;
    }
    
    .mu-claim-btn-subtitle {
        font-size: 0.65rem;
    }
}
/* ?? CURSOR PERSONALIZADO PARA CROMOS BLOQUEADOS */
.open-cromo-trigger {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E") 16 16, pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo al pasar el cursor */
.open-cromo-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 193, 7, 0.15),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.open-cromo-trigger:hover::before {
    left: 0%;
}

/* Efecto de escala y brillo al hover */
.open-cromo-trigger:hover {
    transform: scale(1.05);
    border-color: var(--mu-primary, #ffc107) !important;
    box-shadow: 
        0 0 15px rgba(255, 193, 7, 0.4),
        0 0 30px rgba(255, 193, 7, 0.2),
        inset 0 0 10px rgba(255, 193, 7, 0.1);
    z-index: 10;
}

/* Animacin sutil de pulsacin para indicar interactividad */
.open-cromo-trigger {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
    }
}

/* Detener animacin al hover para no interferir con el efecto de escala */
.open-cromo-trigger:hover {
    animation: none;
	overflow: visible !important; /*  CLAVE: permite que el tooltip se vea */
}


/* Tooltip visual con "Clic para desbloquear" */
.open-cromo-trigger::after {
    content: attr(data-name) ' - Clic para desbloquear';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--mu-primary, #ffc107);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 20;
    border: 1px solid var(--mu-primary, #ffc107);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.open-cromo-trigger:hover::after {
    opacity: 1;
    bottom: -30px;
}

/* Ajuste para que el tooltip no se corte en los bordes */
.mu-album-grid-matrix .col {
    overflow: visible;
    position: relative;
}

/* Cursor personalizado para el candado overlay */
.cromo-overlay-lock {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E") 16 16, pointer;
    transition: all 0.3s ease;
}

.cromo-overlay-lock:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.8));
}

/* Efecto de sacudida al hacer clic (feedback tctil) */
.open-cromo-trigger:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Cursor de carga mientras se procesa el AJAX */
.open-cromo-trigger.loading {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-6.219-8.56'%3E%3C/path%3E%3C/svg%3E") 16 16, wait !important;
    pointer-events: none;
    opacity: 0.7;
}
/* ============================================
   ?? ESTADOS PROGRESIVOS DE PREMIOS
   ============================================ */

/* Estado: CANJEADO */
.mu-claim-btn-claimed {
    opacity: 0.6;
    background: linear-gradient(135deg, #1a1f24 0%, #2a2f35 100%) !important;
    border: 1px solid #28a745 !important;
    cursor: not-allowed !important;
    position: relative;
}

.mu-claim-btn-claimed .mu-claim-btn-title {
    color: #28a745 !important;
}

.mu-claimed-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #28a745;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
    animation: badgePop 0.4s ease-out;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Estado: BLOQUEADO (progresivo) */
.mu-claim-btn-locked {
    opacity: 0.35;
    filter: grayscale(0.8);
    cursor: not-allowed !important;
    position: relative;
}

.mu-claim-btn-locked .mu-claim-btn-title {
    color: #6c757d !important;
}

.mu-locked-badge {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #ffc107;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #ffc107;
    z-index: 10;
	opacity:70%;
}

/* Efecto de brillo en botn disponible */
.mu-claim-btn:not(.mu-claim-btn-claimed):not(.mu-claim-btn-locked):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

/* Botn de Recompensas (Mini Shop) - siempre activo */
.mu-claim-btn-shop {
    background: linear-gradient(135deg, #1a1f24 0%, #2a2f35 100%);
    border: 1px solid #ffc107;
    opacity: 1 !important;
}

.mu-claim-btn-shop:hover {
    background: linear-gradient(135deg, #2a2f35 0%, #3a3f45 100%);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .mu-claimed-badge,
    .mu-locked-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
}

/* ==========================================================================
   ?? BOTN DE TIENDA - DISE?O VIOLETA PREMIUM
   ========================================================================== */

.mu-claim-btn-shop {
    position: relative;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    border: 2px solid #a855f7;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.4),
        0 0 20px rgba(168, 85, 247, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 200px;
    min-height: 80px;
}

/* Efecto de brillo animado */
.mu-claim-btn-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.mu-claim-btn-shop:hover::before {
    left: 100%;
}

/* Efecto de pulso sutil */
.mu-claim-btn-shop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.mu-claim-btn-shop:hover::after {
    width: 300px;
    height: 300px;
}

/* Icono de la tienda */
.mu-claim-btn-shop .mu-claim-btn-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mu-claim-btn-shop .mu-claim-btn-icon i {
    font-size: 1.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Contenido del botn */
.mu-claim-btn-shop .mu-claim-btn-content {
    display: flex;
    flex-direction: column;
    padding: 12px 15px 12px 75px;
    text-align: left;
}

.mu-claim-btn-shop .mu-claim-btn-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-claim-btn-shop .mu-claim-btn-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 5px;
}

.mu-claim-btn-shop .mu-claim-btn-subtitle i {
    font-size: 0.9rem;
    color: #ffd700;
}

/* Efecto de brillo */
.mu-claim-btn-shop .mu-claim-btn-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    pointer-events: none;
}

/* Badge de estado */
.mu-shop-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* ==========================================================================
   ?? EFECTOS HOVER
   ========================================================================== */

.mu-claim-btn-shop:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(168, 85, 247, 0.4),
        0 0 40px rgba(192, 132, 252, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #c084fc;
}

.mu-claim-btn-shop:hover .mu-claim-btn-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) rotate(5deg);
}

.mu-claim-btn-shop:hover .mu-claim-btn-icon i {
    transform: scale(1.1);
}

.mu-claim-btn-shop:active {
    transform: translateY(-1px) scale(0.98);
}

/* ==========================================================================
   ?? ANIMACIN DE ENTRADA
   ========================================================================== */

@keyframes shopButtonAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mu-claim-btn-shop {
    animation: shopButtonAppear 0.5s ease-out;
}

/* ==========================================================================
   ?? RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .mu-claim-btn-shop {
        min-width: 180px;
        min-height: 70px;
    }
    
    .mu-claim-btn-shop .mu-claim-btn-icon {
        width: 40px;
        height: 40px;
        left: 10px;
    }
    
    .mu-claim-btn-shop .mu-claim-btn-icon i {
        font-size: 1.2rem;
    }
    
    .mu-claim-btn-shop .mu-claim-btn-content {
        padding: 10px 10px 10px 60px;
    }
    
    .mu-claim-btn-shop .mu-claim-btn-title {
        font-size: 0.95rem;
    }
    
    .mu-claim-btn-shop .mu-claim-btn-subtitle {
        font-size: 0.75rem;
    }
    
    .mu-shop-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* ==========================================================================
   ?? VARIANTES DE COLOR (Opcional)
   ========================================================================== */

/* Variante ms oscura */
.mu-claim-btn-shop-dark {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
    border-color: #7c3aed;
}

/* Variante ms clara */
.mu-claim-btn-shop-light {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #ddd6fe 100%);
    border-color: #c4b5fd;
}

.mu-claim-btn-shop-light .mu-claim-btn-title,
.mu-claim-btn-shop-light .mu-claim-btn-subtitle {
    color: #1e1b4b;
}

.mu-claim-btn-shop-light .mu-claim-btn-icon i {
    color: #1e1b4b;
}
/* Banner de lbum Completado */
.mu-album-complete-banner {
    position: relative;
    background: linear-gradient(135deg, #0a0c0f 0%, #1a1f24 50%, #0a0c0f 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(255, 193, 7, 0.3),
        inset 0 0 30px rgba(255, 193, 7, 0.1);
    animation: bannerSlideIn 0.6s ease-out;
}

@keyframes bannerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mu-complete-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Icono de Trofeo */
.mu-trophy-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mu-trophy-icon i {
    font-size: 3.5rem;
    color: #ffc107;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
    animation: trophyPulse 2s ease-in-out infinite;
}

.mu-trophy-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.4) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes trophyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Texto Principal */
.mu-complete-text {
    flex: 1;
}

.mu-complete-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffc107;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mu-complete-title i {
    font-size: 1.2rem;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.mu-complete-title i:last-child {
    animation-delay: 0.5s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.mu-complete-subtitle {
    font-size: 1rem;
    color: #adb5bd;
    margin: 0;
    font-weight: 500;
}

.mu-complete-subtitle strong {
    color: #ffc107;
    font-weight: 700;
}

/* Stats */
.mu-complete-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

.mu-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mu-stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mu-stat-icon i {
    font-size: 1.25rem;
    color: #000;
}

.mu-stat-info {
    display: flex;
    flex-direction: column;
}

.mu-stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mu-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffc107;
    line-height: 1;
    margin: 0.25rem 0;
}

.mu-stat-currency {
    font-size: 0.7rem;
    color: #adb5bd;
    font-weight: 500;
}

.mu-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 193, 7, 0.3);
}

/* Partculas Decorativas */
.mu-complete-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.mu-complete-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.mu-complete-particles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mu-complete-particles span:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.5s;
}

.mu-complete-particles span:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 1s;
}

.mu-complete-particles span:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1.5s;
}

.mu-complete-particles span:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .mu-complete-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .mu-complete-title {
        justify-content: center;
        font-size: 1.5rem;
    }
    
    .mu-complete-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .mu-stat-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 576px) {
    .mu-album-complete-banner {
        padding: 1.5rem;
    }
    
    .mu-trophy-icon {
        width: 60px;
        height: 60px;
    }
    
    .mu-trophy-icon i {
        font-size: 2.5rem;
    }
    
    .mu-complete-title {
        font-size: 1.25rem;
    }
    
    .mu-stat-value {
        font-size: 1.25rem;
    }
}
/* ========================================================================== */
/*  INDICADOR DE ROUND */
/* ========================================================================== */
.mu-round-indicator {
    background: linear-gradient(135deg, #1a1f24 0%, #0a0c0f 100%);
    border: 1px solid #2a2f35;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mu-round-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.mu-round-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mu-round-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mu-round-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.mu-round-icon i {
    font-size: 1.5rem;
    color: #000;
    animation: rotateIcon 3s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mu-round-text {
    display: flex;
    flex-direction: column;
}

.mu-round-label {
    font-size: 0.7rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mu-round-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffc107;
    margin: 0;
    font-family: 'Courier New', monospace;
}

.mu-round-subtitle {
    font-size: 0.85rem;
    color: #adb5bd;
    font-weight: 500;
}

/* Progreso Circular */
.mu-round-progress {
    display: flex;
    align-items: center;
}

.mu-progress-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.mu-progress-bg {
    fill: none;
    stroke: #2a2f35;
    stroke-width: 6;
}

.mu-progress-fill {
    fill: none;
    stroke: #ffc107;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1s ease;
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.5));
}

.mu-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mu-progress-percent {
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffc107;
    font-family: 'Courier New', monospace;
}

/* Barra Lineal */
.mu-progress-linear {
    width: 100%;
    height: 6px;
    background: #2a2f35;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.mu-progress-linear-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107 0%, #ff8c00 100%);
    border-radius: 3px;
    transition: width 1s ease;
    position: relative;
}

.mu-progress-linear-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ========================================================================== */
/* ? ALERTA DE ROUND COMPLETADO */
/* ========================================================================== */
.mu-round-complete-alert {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mu-complete-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.mu-complete-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.mu-complete-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.mu-complete-icon i {
    font-size: 3rem;
    color: #28a745;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.5));
}

.mu-complete-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #28a745;
    border-radius: 50%;
    animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 200%; height: 200%; opacity: 0; }
}

.mu-complete-text {
    flex: 1;
}

.mu-complete-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #28a745;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
}

.mu-complete-subtitle {
    font-size: 0.9rem;
    color: #adb5bd;
    margin: 0;
}

/* Botn Nuevo Round */
.mu-btn-new-round {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.mu-btn-new-round:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.mu-btn-new-round:active {
    transform: translateY(0);
}

.mu-btn-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.mu-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mu-btn-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mu-btn-round {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.mu-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mu-btn-new-round:hover .mu-btn-shine {
    left: 100%;
}

/* ========================================================================== */
/* ?? HISTORIAL DE ROUNDS */
/* ========================================================================== */
.mu-round-history {
    background: linear-gradient(135deg, #1a1f24 0%, #0a0c0f 100%);
    border: 1px solid #2a2f35;
    border-radius: 12px;
    overflow: hidden;
}

.mu-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 193, 7, 0.05);
    border-bottom: 1px solid #2a2f35;
}

.mu-history-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mu-history-icon {
    font-size: 1.5rem;
    color: #ffc107;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.mu-history-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffc107;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mu-history-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.mu-history-body {
    padding: 1rem;
}

.mu-history-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mu-history-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(26, 31, 36, 0.5);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.mu-history-row:hover {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.mu-history-head {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #6c757d;
}

.mu-history-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.mu-col-round { flex: 0.8; }
.mu-col-prize { flex: 1.2; }
.mu-col-pets { flex: 1; justify-content: center; }
.mu-col-coins { flex: 1; justify-content: center; }
.mu-col-date { flex: 1; justify-content: flex-end; }

.mu-round-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
}

.mu-prize-name {
    color: #e9ecef;
    font-weight: 600;
}

.mu-pets-count {
    color: #adb5bd;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.mu-coins-earned {
    color: #ffc107;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mu-coins-earned i {
    font-size: 0.9rem;
}

.mu-date-text {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mu-round-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mu-complete-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mu-history-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .mu-history-col {
        flex: 1 1 50%;
    }
}
/* ========================================================================== */
/* ?? ALERTA DE INICIALIZACIN - PRIMERA VEZ */
/* ========================================================================== */
.mu-round-init-alert {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: slideInInit 0.6s ease-out;
}

@keyframes slideInInit {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mu-init-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mu-init-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.mu-init-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    animation: floatParticle 4s ease-in-out infinite;
}

.mu-init-particles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mu-init-particles span:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.5s;
}

.mu-init-particles span:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 1s;
}

.mu-init-particles span:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1.5s;
}

.mu-init-particles span:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 2s;
}

@keyframes floatParticle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
}

.mu-init-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.mu-init-icon {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mu-init-icon i {
    font-size: 3.5rem;
    color: #ffc107;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.6));
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-10px) rotate(-45deg); }
}

.mu-init-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

.mu-init-text {
    flex: 1;
}

.mu-init-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

.mu-init-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffc107;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.mu-init-subtitle {
    font-size: 0.9rem;
    color: #adb5bd;
    margin: 0;
    line-height: 1.4;
}

.mu-init-subtitle strong {
    color: #ffc107;
    font-weight: 700;
}

/* Botn de Inicializacin */
.mu-btn-init-round {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.mu-btn-init-round:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.mu-btn-init-round:active {
    transform: translateY(0);
}

.mu-btn-init-round .mu-btn-icon i {
    font-size: 1.5rem;
    color: #000;
    animation: none;
}

.mu-btn-init-round .mu-btn-label {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mu-btn-init-round .mu-btn-round {
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    font-family: 'Courier New', monospace;
}

.mu-btn-init-round .mu-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.mu-btn-init-round:hover .mu-btn-shine {
    left: 100%;
}

/* Badge para Round Completado */
.mu-complete-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .mu-init-content,
    .mu-complete-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mu-init-icon,
    .mu-complete-icon {
        margin-bottom: 1rem;
    }
    
    .mu-init-title,
    .mu-complete-title {
        font-size: 1.25rem;
    }
}


@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}

.animate__animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.animate__faster {
    animation-duration: 0.3s;
}

.animate__zoomIn {
    animation-name: zoomIn;
}

.animate__zoomOut {
    animation-name: zoomOut;
}

/* Modal Base */
.mu-shop-modal {
    background: #14171a;
    border: 1px solid #2a2f35;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Header */
.mu-shop-header {
    position: relative;
    background: linear-gradient(135deg, #0a0c0f 0%, #1a1f24 100%);
    padding: 1.5rem;
    border-bottom: 2px solid #ffc107;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mu-shop-header-content { flex: 1; }

.mu-shop-header .modal-title {
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mu-shop-header .modal-title i { font-size: 1.75rem; }

.mu-shop-subtitle {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* Badge de Monedas */
.mu-shop-coins-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.mu-shop-coins-badge i { font-size: 1.25rem; }

.mu-shop-coins-badge small {
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Body */
.mu-shop-body {
    padding: 1.5rem;
    background: #14171a;
    color: #e9ecef;
    max-height: 75vh;
    overflow-y: auto;
}

/* Filtros */
.mu-shop-filters { margin-bottom: 1.5rem; }

.mu-filter-group { margin-bottom: 1.25rem; }

.mu-filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.mu-filter-label i { font-size: 1rem; }

.mu-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Pills */
.mu-pill {
    background: #1a1f24;
    border: 1px solid #2a2f35;
    color: #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mu-pill:hover {
    border-color: #ffc107;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.mu-pill.active {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border-color: #ffc107;
    color: #000;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.mu-pill i { font-size: 0.9rem; }

/*  FIX: Grid de Productos - Ancho mnimo correcto */
.mu-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    min-height: 250px;
}

/* Loading */
.mu-shop-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

/* Estado Vaco */
.mu-shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.mu-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: #1a1f24;
    border: 1px solid #2a2f35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6c757d;
}

.mu-shop-empty h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e9ecef;
}

.mu-shop-empty p { font-size: 0.9rem; margin: 0; }

/* ?? FIX: Card de Producto - Estructura correcta */
.mu-product-card {
    background: #1a1f24;
    border: 1px solid #2a2f35;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mu-product-card:hover {
    border-color: #ffc107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

.mu-product-card.disabled {
    opacity: 0.5;
}

.mu-product-card.disabled:hover {
    transform: none;
    border-color: #2a2f35;
    box-shadow: none;
}

/* ?? FIX: Imagen con tama?o fijo */
.mu-product-image {
    background: #0a0c0f;
    padding: 1rem;
    text-align: center;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #2a2f35;
}

.mu-product-image img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.mu-product-card:hover .mu-product-image img {
    transform: scale(1.1);
}

.mu-product-info {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mu-product-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e9ecef;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.mu-product-class {
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mu-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid #2a2f35;
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.mu-product-price {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffc107;
}

.mu-product-price i {
    color: #ffc107;
    font-size: 1rem;
}

.mu-product-stock {
    font-size: 0.65rem;
    color: #6c757d;
    font-weight: 600;
    background: #0a0c0f;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.mu-product-stock.text-danger {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.mu-buy-btn {
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.mu-buy-btn:hover {
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    transform: translateY(-1px);
}

.mu-buy-btn:disabled {
    background: #2a2f35;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Scrollbar */
.mu-shop-body::-webkit-scrollbar { width: 6px; }
.mu-shop-body::-webkit-scrollbar-track { background: #0a0c0f; }
.mu-shop-body::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .mu-shop-header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    .mu-shop-header .modal-title { font-size: 1.1rem; }
    .mu-shop-coins-badge {
        padding: 0.5rem 0.85rem;
        font-size: 0.95rem;
    }
    .mu-shop-body { padding: 1rem; }
    .mu-shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.75rem;
    }
    .mu-product-image { height: 90px; }
    .mu-product-image img { max-height: 70px; }
}

/* Badges de clases */
.mu-product-classes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.mu-class-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Sets de armadura */
.mu-set-card {
    border: 2px solid #ffc107;
}

.mu-set-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ffc107;
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
}

.mu-set-parts {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.mu-set-part {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #e9ecef;
    margin-bottom: 0.25rem;
}

.mu-set-part:last-child {
    margin-bottom: 0;
}

/* Badges de clases compatibles */
.mu-product-classes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    min-height: 20px;
}

.mu-class-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Sets de armadura */
.mu-set-card {
    border: 2px solid #ffc107;
    position: relative;
}

.mu-set-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.mu-set-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    z-index: 10;
}

.mu-set-parts {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.mu-set-part {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #e9ecef;
    margin-bottom: 0.25rem;
}

.mu-set-part:last-child {
    margin-bottom: 0;
}

.mu-set-part i {
    font-size: 0.8rem;
}

/* Badge para "Todas las razas" */
.mu-class-all {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.mu-class-all i {
    font-size: 0.8rem;
}

/* Badges de clases individuales */
.mu-class-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.1rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Contenedor de clases */
.mu-product-classes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    min-height: 24px;
}

/* Badges de stock */
.mu-product-stock {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.mu-product-stock.text-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}
.mu-seeds-preview {
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
}
.seed-slot {
    padding: 2px 0;
}
.text-purple {
    color: #d946ef !important;
}
/* ============================================ */
/* 🎨 INTERCAMBIADOR DE MASCOTAS - ESTILOS */
/* ============================================ */

.mu-exchange-modal .modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 12px;
    color: #e0e0e0;
}

.mu-exchange-modal .modal-header {
    border-bottom: 1px solid rgba(243, 156, 18, 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px 12px 0 0;
}

.mu-exchange-modal .modal-title {
    color: #f39c12;
    font-weight: 700;
    font-size: 1.3rem;
}

.mu-exchange-modal .modal-body {
    padding: 1.5rem;
}

.mu-exchange-modal .modal-footer {
    border-top: 1px solid rgba(243, 156, 18, 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 12px 12px;
}

/* Alerta informativa */
.mu-exchange-info {
    background: rgba(243, 156, 18, 0.1);
    border-left: 4px solid #f39c12;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.mu-exchange-info strong {
    color: #f39c12;
}

/* ============================================ */
/*  GRID DE MASCOTAS - LAYOUT CORREGIDO */
/* ============================================ */

.mu-pets-grid-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.mu-pets-grid-container::-webkit-scrollbar {
    width: 8px;
}

.mu-pets-grid-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.mu-pets-grid-container::-webkit-scrollbar-thumb {
    background: rgba(243, 156, 18, 0.5);
    border-radius: 4px;
}

.mu-pets-grid-container::-webkit-scrollbar-thumb:hover {
    background: rgba(243, 156, 18, 0.8);
}

/* ✅ GRID CORREGIDO CON ANCHO MÍNIMO */
.mu-pets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
    padding: 0.5rem;
}

/* ============================================ */
/* 🎴 TARJETA DE MASCOTA */
/* ============================================ */

.mu-pet-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mu-pet-card:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 156, 18, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mu-pet-card.selected {
    border-color: #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.15) 0%, rgba(243, 156, 18, 0.05) 100%);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

/* Checkbox personalizado */
.mu-pet-checkbox {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 2;
    accent-color: #f39c12;
}

/* ✅ IMAGEN DE MASCOTA CORREGIDA */
.mu-pet-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0.5rem auto;
    display: block;
    image-rendering: pixelated;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.mu-pet-card:hover .mu-pet-image {
    transform: scale(1.1);
}

/* ID de la mascota */
.mu-pet-id {
    color: #f39c12;
    font-weight: 700;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    margin-top: 0.25rem;
    white-space: nowrap;
}

/* Estado vacío */
.mu-pets-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
}

.mu-pets-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Loading */
.mu-pets-loading {
    text-align: center;
    padding: 3rem 1rem;
}

/* Botón confirmar */
.mu-btn-confirm {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border: 2px solid #f39c12;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.mu-btn-confirm:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.mu-btn-confirm:disabled {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #666;
    cursor: not-allowed;
}

.mu-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #e0e0e0;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mu-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}
/* Botón de Intercambio - Diseño Naranja */
.mu-claim-btn-exchange {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 2px solid #ff6b35;
}

.mu-claim-btn-exchange:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Badge de cantidad disponible */
.exchange-count-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Badge de "¡CANJEAR!" */
.mu-exchange-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff0000 0%, #ff6b35 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 900;
    animation: pulse-badge 1.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Selector de Baúles */
.mu-vault-selector {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.mu-vault-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.mu-vault-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.mu-vault-checkbox:hover {
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.5);
}

.mu-vault-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f39c12;
}

.mu-vault-checkbox label {
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}

.mu-vault-checkbox.checked {
    background: rgba(243, 156, 18, 0.2);
    border-color: #f39c12;
}

.mu-vault-checkbox.checked label {
    color: #f39c12;
}

/* Toolbar Principal Compacta */
.mu-exchange-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

/* Selector de Baúles Compacto */
.mu-vault-selector-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.mu-toolbar-label {
    font-size: 0.85rem;
    color: #f39c12;
    font-weight: 600;
    white-space: nowrap;
}

.mu-vault-options-inline {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mu-vault-checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.mu-vault-checkbox-inline:hover {
    background: rgba(243, 156, 18, 0.15);
    border-color: rgba(243, 156, 18, 0.5);
}

.mu-vault-checkbox-inline input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: #f39c12;
    cursor: pointer;
}

.mu-vault-buttons-inline {
    display: flex;
    gap: 0.25rem;
}

/* Botones de Acción Compactos */
.mu-action-buttons-inline {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.mu-btn-action-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    white-space: nowrap;
}

.mu-btn-select-all {
    border-color: #28a745;
    color: #28a745;
}

.mu-btn-select-all:hover {
    background: rgba(40, 167, 69, 0.2);
    transform: translateY(-1px);
}

.mu-btn-deselect-all {
    border-color: #dc3545;
    color: #dc3545;
}

.mu-btn-deselect-all:hover {
    background: rgba(220, 53, 69, 0.2);
    transform: translateY(-1px);
}

.mu-btn-refresh {
    border-color: #17a2b8;
    color: #17a2b8;
}

.mu-btn-refresh:hover {
    background: rgba(23, 162, 184, 0.2);
    transform: translateY(-1px);
}

.mu-btn-refresh i {
    transition: transform 0.3s ease;
}

.mu-btn-refresh:hover i {
    transform: rotate(180deg);
}

/* Contadores Inline */
.mu-counters-inline {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mu-counter-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.5rem 1rem;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 6px;
    min-width: 80px;
}

.mu-counter-compact .mu-counter-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.mu-counter-compact .mu-counter-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Botones Tiny para selección de baúles */
.mu-btn-tiny {
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mu-btn-tiny:hover {
    background: rgba(243, 156, 18, 0.3);
    border-color: #f39c12;
    color: #f39c12;
}

/* Responsive */
@media (max-width: 992px) {
    .mu-exchange-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mu-vault-selector-compact,
    .mu-action-buttons-inline,
    .mu-counters-inline {
        justify-content: center;
    }
    
    .mu-action-buttons-inline {
        flex-wrap: wrap;
    }
    
    .mu-btn-action-compact {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mu-vault-options-inline {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .mu-counters-inline {
        gap: 1rem;
    }
    
    .mu-counter-compact {
        min-width: 70px;
        padding: 0.4rem 0.75rem;
    }
    
    .mu-counter-compact .mu-counter-value {
        font-size: 1.25rem;
    }
}
.restock-curr-card:hover {
    background: rgba(13, 202, 240, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.2);
}
.restock-curr-card.active {
    background: rgba(13, 202, 240, 0.15) !important;
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.4);
}

/* 💍 Badge Pack Joyería */
.mu-jewelry-badge {
    /* background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%); */
    color: #fff;
}
.mu-pack-contents {
    /* border-color: rgba(168, 85, 247, 0.35); */
}

/* ==========================================================================
   CUENTA REGRESIVA - EVENTO ÁLBUM
   ========================================================================== */

.mu-countdown-container {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.15);
}

.mu-countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffed4e, #ffc107);
    animation: countdownGlow 3s ease-in-out infinite;
}

@keyframes countdownGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(255, 193, 7, 0.8); }
}

.mu-countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffc107;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mu-countdown-header i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.mu-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mu-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 70px;
    transition: all 0.3s ease;
}

.mu-countdown-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.mu-countdown-value {
    font-size: 2rem;
    font-weight: 900;
    color: #ffc107;
    font-family: 'Courier New', monospace;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.mu-countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.mu-countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    opacity: 0.6;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.mu-countdown-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.mu-countdown-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ffed4e);
    border-radius: 2px;
    transition: width 1s linear;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Estado Expirado */
.mu-countdown-expired {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border-color: rgba(220, 53, 69, 0.4);
    text-align: center;
}

.mu-countdown-expired .mu-countdown-header {
    color: #dc3545;
}

.mu-countdown-message {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mu-countdown-timer {
        gap: 0.5rem;
    }
    
    .mu-countdown-item {
        min-width: 55px;
        padding: 0.6rem 0.75rem;
    }
    
    .mu-countdown-value {
        font-size: 1.5rem;
    }
    
    .mu-countdown-label {
        font-size: 0.6rem;
    }
    
    .mu-countdown-separator {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .mu-countdown-container {
        padding: 1rem;
    }
    
    .mu-countdown-timer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .mu-countdown-item {
        min-width: calc(50% - 0.75rem);
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.5rem;
    }
    
    .mu-countdown-value {
        font-size: 1.25rem;
    }
    
    .mu-countdown-label {
        margin-top: 0;
    }
    
    .mu-countdown-separator {
        display: none;
    }
}

/* Animación de alerta cuando queda poco tiempo */
.mu-countdown-urgent {
    animation: urgentPulse 1s ease-in-out infinite;
}

.mu-countdown-urgent .mu-countdown-value {
    color: #dc3545;
    text-shadow: 0 0 10px rgba(220, 53, 69, 0.6);
}

@keyframes urgentPulse {
    0%, 100% { 
        border-color: rgba(220, 53, 69, 0.4);
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
    }
    50% { 
        border-color: rgba(220, 53, 69, 0.8);
        box-shadow: 0 0 30px rgba(220, 53, 69, 0.4);
    }
}