
/* Animations for MB Theme */
@keyframes mbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes mbSpinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes mbPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes mbFadeInScale {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Animation Classes */
.animate-mb-spin {
    animation: mbSpin 30s linear infinite;
}

.animate-mb-spin-reverse {
    animation: mbSpinReverse 40s linear infinite;
}

.animate-mb-pulse {
    animation: mbPulse 4s ease-in-out infinite;
}

/* =========================================
   Desktop Centered HUD (Inside Abstract Art)
   ========================================= */
.mb-hero-stats-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    
    width: 280px;
    height: 280px;
    border-radius: 50%;
    
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 40px rgba(0,0,0,0.3);
    
    animation: mbFadeInScale 1s ease-out forwards;
    pointer-events: none; /* Let clicks pass through if needed, though buttons are elsewhere */
}

.mb-stat-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mb-stat-value {
	font-weight: 300;
    font-size: 1.85rem;
    line-height: 1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mb-stat-value.primary {
    color: #FF5E14;
    text-shadow: 0 0 25px rgba(255, 94, 20, 0.4);
}

.mb-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.mb-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Mobile Stacked Stats (Below Text)
   ========================================= */
.mb-hero-stats-mobile {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    backdrop-filter: blur(5px);
}

.mb-hero-stats-mobile .mb-stat-value {
    font-size: 2rem;
}

/* Hide/Show logic handled by Tailwind classes (lg:hidden, hidden lg:block) in HTML */
