#mobile-blocker {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: radial-gradient(circle at 50% 50%, #0a0a0f 0%, #050507 100%);
    padding: 2rem;
    overflow: hidden;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: portrait) {
    #mobile-blocker {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Ensure no scrolling on body when blocked */
    body {
        overflow: hidden !important;
    }
}

.blocker-container {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.blocker-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    background: var(--flux-color, #7c3aed);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: orbPulse 4s infinite alternate ease-in-out;
}

@keyframes orbPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.blocker-icon-wrap {
    padding: 1.5rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
}

.blocker-icon-wrap svg {
    width: 40px !important;
    height: 40px !important;
    stroke: #ffffff !important;
    opacity: 0.8;
}

.blocker-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #fff;
    margin: 0;
}

.blocker-desc {
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.blocker-divider {
    width: 40px;
    height: 2px;
    background: var(--flux-color, #7c3aed);
    opacity: 0.5;
}

.blocker-status {
    font-size: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--flux-color, #7c3aed);
    opacity: 0.6;
}
