* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@supports (-webkit-touch-callout: none) {
    .mib-neuralyzer {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
    }
}

@font-face {
    font-family: 'Chakra Petch';
    src: url('https://d1.endata.cx/data/games/80726/ChakraPetch-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

#mib-scanner-root {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 1vh 0;
    overflow: visible;
}

.mib-root {
    width: 95%;
    max-width: 1500px;
    min-width: 400px;
    aspect-ratio: 1500 / 800;
    height: auto;
    border-radius: 50%;
    border: 0.2vw solid #00ff88;
    box-shadow: 0 0 2.5vw rgba(0,255,136,0.6), inset 0 0 5vw rgba(0,255,136,0.3);
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 30, 60, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 20, 40, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #05080c, #0f1419);
    font-family: 'Chakra Petch', sans-serif;
    position: relative;
    color: #00ff88;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ovalPulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.mib-root::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.15) 1px, transparent 1px);
    background-size: clamp(30px, 4vw, 50px) clamp(30px, 4vw, 50px);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(clamp(30px, 4vw, 50px)); }
}

@keyframes ovalPulse {
    0%, 100% {
        box-shadow: 0 0 2.5vw rgba(0,255,136,0.6), inset 0 0 5vw rgba(0,255,136,0.3);
    }
    50% {
        box-shadow: 0 0 3.5vw rgba(0,255,136,0.8), inset 0 0 6.5vw rgba(0,255,136,0.4);
    }
}

.mib-root:hover {
    animation: ovalPulse 1s ease-in-out infinite;
    border-color: #00ffff;
}

.mib-root.disabled {
    opacity: 0.7;
    pointer-events: none;
}

.mib-particle {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10%, 90% { opacity: 0.8; }
    100% { transform: translateY(-20px) translateX(20px); opacity: 0; }
}
@keyframes floatDown {
    0% { transform: translateY(-100px) translateX(0); opacity: 0; }
    10%, 90% { opacity: 0.8; }
    100% { transform: translateY(100vh) translateX(-20px); opacity: 0; }
}
@keyframes floatDiagonal {
    0% { transform: translateY(100vh) translateX(-50px); opacity: 0; }
    10%, 90% { opacity: 0.8; }
    100% { transform: translateY(-20px) translateX(50px); opacity: 0; }
}
@keyframes floatReverse {
    0% { transform: translateY(100vh) translateX(100vw); opacity: 0; }
    10%, 90% { opacity: 0.8; }
    100% { transform: translateY(-20px) translateX(calc(100vw - 50px)); opacity: 0; }
}

.mib-scan {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88 20%, #00ff88 80%, transparent);
    box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88;
    animation: scan 3s ease-in-out infinite;
    z-index: 50;
    pointer-events: none;
    border-radius: 50%;
}

@keyframes scan {
    0%, 100% { top: 10%; opacity: 0; }
    10%, 90% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

.mib-oval {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26.6vw;
    height: 16vw;
    min-width: 150px;
    min-height: 90px;
    border: 0.13vw solid rgba(0, 255, 136, 0.5);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,40,80,0.6) 0%, rgba(0,10,20,0.8) 100%);
    box-shadow: inset 0 0 4vw rgba(0,255,136,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: hidden;
}

.mib-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mib-avatar {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0,10,20,0.9);
    box-shadow:
        inset 0 0 30px rgba(0,255,136,0.3),
        0 0 20px rgba(0,255,136,0.2);
}

.mib-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.95);
}

.mib-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(80px, 15vw, 180px);
    color: rgba(0,255,136,0.4);
}

.mib-hint,
.mib-greeting-overlay {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translate(-50%, 0);
    z-index: 20;
}

.mib-hint {
    font-size: 1vw;
    min-font-size: 8px;
    color: rgba(0,255,136,0.7);
    letter-spacing: 0.1em;
    animation: blink 2s ease-in-out infinite;
    background: rgba(0, 20, 10, 0.85);
    padding: 0.7vw 1.7vw;
    min-padding: 3px 15px;
    border-radius: 1.3vw;
    min-border-radius: 5px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.mib-hint:hover {
    background: rgba(0, 40, 20, 0.95);
    border-color: #00ffff;
    color: #00ffff;
    box-shadow: 0 0 30px rgba(0,255,136,0.5);
    transform: translate(-50%, 0) scale(1.05);
}

.mib-hint:active {
    transform: translate(-50%, 0) scale(0.98);
}

.mib-greeting-overlay { display: none; }

.mib-greeting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(3px, 1vw, 12px);
    white-space: nowrap;
    background: rgba(0, 20, 10, 0.85);
    padding: clamp(3px, 1vh, 12px) clamp(10px, 2.5vw, 30px);
    border-radius: clamp(10px, 2.5vw, 30px);
    border: clamp(1px, 0.1vw, 1px) solid rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 clamp(15px, 2vw, 20px) rgba(0,255,136,0.3);
    transition: all 0.3s ease;
}

.mib-text {
    font-size: 1.2vw;
    min-font-size: 8px;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 0.7vw #00ff88;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mib-letter {
    font-size: 1.8vw;
    min-font-size: 10px;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 1vw #00ffff;
    text-align: center;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.mib-verify {
    position: absolute;
    inset: 0;
    background: rgba(0,10,20,0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 50%;
}

.mib-verify.active {
    display: flex !important;
}

.mib-verify-item {
    font-size: 1vw;
    min-font-size: 8px;
    color: #00ff88;
    margin: 0.2vh 0;
    text-align: center;
    letter-spacing: 0.1em;
    opacity: 1;
    line-height: 1;
}

.mib-verify-item.success {
    color: #00ff88;
}

.mib-verify-item.error {
    color: #ff4444;
}

.mib-loader {
    width: clamp(24px, 3vw, 40px);
    height: clamp(24px, 3vw, 40px);
    border: clamp(2px, 0.25vw, 4px) solid rgba(0,255,136,0.3);
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: clamp(5px, 1.2vh, 15px);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.mib-btn { display: none !important; }

.mib-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: min(45%, 75%);
    max-width: 700px;
    min-width: clamp(240px, 70vw, 400px);
    height: auto;
    max-height: 500px;
    min-height: auto;
    padding: clamp(10px, 1.5vw, 30px);
    background: rgba(0,20,40,0.95);
    border: clamp(2px, 0.2vw, 3px) solid #00ff88;
    border-radius: clamp(10px, 1vw, 15px);
    font-size: clamp(8px, 1.2vw, 14px);
    line-height: 1.2;
    letter-spacing: 0.05em;
    z-index: 200;
    opacity: 0;
    transition: all 0.4s ease;
    overflow-y: auto;
    pointer-events: none;
}

.mib-panel.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.mib-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(8px, 1em, 15px);
    padding-bottom: clamp(8px, 1em, 15px);
    border-bottom: 2px solid rgba(0,255,136,0.5);
    flex-wrap: wrap;
    gap: clamp(5px, 1vw, 10px);
}

.mib-panel-title {
    font-size: clamp(8px, 1.2vw, 16px);
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 clamp(5px, 1vw, 15px) #00ff88;
    letter-spacing: 0.1em;
}

.mib-panel-close {
    width: clamp(15px, 2.6vw, 40px);
    height: clamp(15px, 2.6vw, 40px);
    min-width: 24px;
    min-height: 24px;
    font-size: clamp(10px, 1.2vw, 16px);
    border: 2px solid #00ff88;
    border-radius: 50%;
    background: rgba(0, 20, 10, 0.9);
    color: #00ff88;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 250;
    position: relative;
    pointer-events: auto;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mib-panel-close:hover {
    background: rgba(0,255,136,0.2);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 clamp(10px, 2vw, 20px) rgba(0,255,136,0.5);
}

.mib-panel-content {
    color: #fff;
    line-height: 1.2;
    font-size: clamp(8px, 1.2vw, 14px);
    letter-spacing: 0.05em;
    user-select: text;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mib-panel-content p {
    margin: clamp(5px, 0.5em, 10px) 0;
}

.mib-panel-content p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.mib-panel-content .highlight {
    color: #00ffff;
    font-weight: 700;
}

.mib-panel-content ul {
    margin: clamp(5px, 0.5em, 10px) 0 clamp(5px, 0.5em, 10px) clamp(15px, 1.5em, 25px);
}

.mib-panel-content ul:last-child {
    margin-bottom: 0;
}

.mib-panel-content li {
    margin: clamp(2px, 0.25em, 5px) 0;
}

.mib-panel-content a {
    cursor: pointer;
    color: #00ffff;
    text-decoration: none;
    font-size: inherit;
}

.mib-panel-content a:hover {
    text-decoration: underline;
}

.mib-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 150;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mib-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    cursor: default;
}

.mib-error {
    width: 30vw;
    max-width: 450px;
    min-width: 200px;
    padding: 2vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(40,0,0,0.95);
    border: 3px solid #ff4444;
    border-radius: 15px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    z-index: 300;
    display: none;
}

.mib-error.active { display: block; animation: shake 0.5s ease; }

@keyframes shake {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-50%, -50%) translateX(-8px); }
    75% { transform: translate(-50%, -50%) translateX(8px); }
}

.mib-error-title {
    font-size: 1.8vw;
    min-font-size: 14px;
    color: #ff4444;
    margin-bottom: 15px;
 }

.mib-error-text { color: #fff; margin-bottom: 20px; font-size: 1.2vw; min-font-size: 14px; line-height: 1.6; }

.mib-error-reload {
    padding: 10px 35px;
    background: rgba(255,68,68,0.2);
    border: 2px solid #ff4444;
    color: #ff4444;
    font-family: 'Chakra Petch', monospace;
    cursor: pointer;
    border-radius: 8px;
    font-size: clamp(14px, 2vw, 16px);
}
.mib-error-reload:hover { background: rgba(255,68,68,0.4); }

.mib-neuralyzer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100% !important;
    background: white !important;
    z-index: 9999999 !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    border-radius: 0 !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
}

.mib-neuralyzer.active {
    visibility: visible !important;
    opacity: 1 !important;
    animation: neuralyzeFlash 1.5s ease forwards !important;
    -webkit-animation: neuralyzeFlash 1.5s ease forwards !important;
}

@keyframes neuralyzeFlash {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

@-webkit-keyframes neuralyzeFlash {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.mib-pointer {
    width: 8.6vw;
    height: 8.6vw;
    min-width: 30px;
    min-height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0.2vw dashed #ff4444;
    border-radius: 50%;
    animation: pointerPulse 1s ease-in-out infinite;
    pointer-events: none;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pointerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

.mib-countdown {
    font-size: 4vw;
    min-font-size: 26px;
    font-weight: 900;
    color: #ff4444;
    text-shadow: 0 0 20px #ff4444;
    z-index: 401;
}

.mib-unauthorized-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3vw;
    min-font-size: 14px;
    font-weight: 700;
    color: #ff4444;
    text-shadow: 0 0 15px #ff4444;
    text-align: center;
    z-index: 350;
    background: rgba(40, 0, 0, 0.9);
    padding: 1.3vw 2.3vw;
    border-radius: 10px;
    border: 2px solid #ff4444;
    display: none;
    animation: messageFade 0.5s ease forwards;
    max-width: 70%;
    pointer-events: none;
}

@keyframes messageFade {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.orion-star.star-shape {
    background: transparent !important;
    box-shadow: none !important;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    background: radial-gradient(circle at 50% 50%, #ffd700, #ff8c00) !important;
    width: clamp(19px, 2vw, 27px) !important;
    height: clamp(19px, 2vw, 27px) !important;
    animation: starTwinkle 2s ease-in-out infinite !important;
}

.orion-star.star-shape:hover {
    transform: scale(1.2) rotate(15deg);
    background: radial-gradient(circle at 50% 50%, #ffffff, #ffd700, #ff8c00) !important;
    box-shadow: 0 0 15px #ffd700, 0 0 30px #ff8c00 !important;
    filter: drop-shadow(0 0 8px #ffd700);
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 4px #ffd700);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 10px #ffd700);
    }
}

.orion-constellation,
.orion-belt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.orion-constellation { z-index: 14; }
.orion-belt { z-index: 15; }
.orion-constellation.visible,
.orion-belt.visible { opacity: 1; }

.orion-line {
    stroke: rgba(255, 215, 0, 0.4);
    stroke-width: 0.1vw;
    min-stroke-width: 1px;
    stroke-dasharray: 5, 5;
    animation: lineGlow 4s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes lineGlow {
    0%, 100% { stroke: rgba(255, 215, 0, 0.3); stroke-width: 0.07vw; opacity: 0.5; }
    50% { stroke: rgba(255, 215, 0, 0.7); stroke-width: 0.17vw; opacity: 1; }
}

.orion-star {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 0 clamp(5px, 1vw, 10px) currentColor;
    animation: starTwinkle 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.orion-star.star-1,
.orion-star.star-3,
.orion-star.star-5,
.orion-star.star-7 {
    width: 1.8vw;
    height: 1.8vw;
    min-width: 14px;
    min-height: 14px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #ffd700, #ff8c00);
    color: #ffd700;
    box-shadow: 0 0 1vw #ffd700, 0 0 2vw #ff8c00;
    animation: starTwinkle 2.5s ease-in-out infinite;
}

.orion-star.star-1:hover,
.orion-star.star-3:hover,
.orion-star.star-5:hover,
.orion-star.star-7:hover {
    transform: scale(1.3);
    box-shadow: 0 0 25px #ffd700, 0 0 50px #ff8c00, 0 0 75px #ffffff;
}

.orion-star.star-2,
.orion-star.star-6 {
    width: 0.9vw;
    height: 0.9vw;
    min-width: 10px;
    min-height: 10px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #ffffaa);
    color: #ffffaa;
    box-shadow: 0 0 0.5vw #ffffaa;
    animation: starTwinkle 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.orion-star { pointer-events: none; cursor: not-allowed; opacity: 0.5; }
.orion-belt.visible .orion-star { pointer-events: auto; cursor: pointer; opacity: 1; }

.orion-star.star-1 { top: 45%; left: 10%; }
.orion-star.star-2 { top: 23%; left: 27%; }
.orion-star.star-3 { top: 9%; left: 40%; }
.orion-star.star-4 { top: 13%; left: 52%; }
.orion-star.star-5 { top: 15%; left: 62%; }
.orion-star.star-6 { top: 30%; left: 74%; }
.orion-star.star-7 { top: 41%; left: 90%; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); box-shadow: 0 0 0.7vw currentColor; }
    25% { opacity: 0.8; transform: scale(1.05); box-shadow: 0 0 1vw currentColor; }
    50% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 1.3vw currentColor, 0 0 2vw currentColor; }
    75% { opacity: 0.8; transform: scale(1.05); box-shadow: 0 0 1vw currentColor; }
}

.mib-panel::-webkit-scrollbar { width: 8px; }
.mib-panel::-webkit-scrollbar-track { background: rgba(0, 20, 10, 0.5); border-radius: 4px; }
.mib-panel::-webkit-scrollbar-thumb { background: #00ff88; border-radius: 4px; box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
.mib-panel::-webkit-scrollbar-thumb:hover { background: #00ffff; box-shadow: 0 0 15px rgba(0, 255, 255, 0.7); }
.mib-panel { scrollbar-width: thin; scrollbar-color: #00ff88 rgba(0, 20, 10, 0.5); }

@supports (-webkit-touch-callout: none) {
    .mib-root {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.mib-hint,
.mib-btn-star,
.mib-panel-close,
.mib-error-reload {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mib-root {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mib-panel-content {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.mib-panel {
    -webkit-overflow-scrolling: touch;
}

@supports (-webkit-touch-callout: none) {
    .mib-neuralyzer {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
    }

    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
}

@supports (-webkit-touch-callout: none) and (-webkit-appearance: none) {
    .mib-neuralyzer {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    .mib-neuralyzer {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-perspective: 1000 !important;
        perspective: 1000 !important;
    }
}

@media screen and (-o-min-device-pixel-ratio: 1/1),
       screen and (-webkit-min-device-pixel-ratio: 1/1) and (max-width: 768px) {
    .mib-neuralyzer {
        animation: none !important;
        -webkit-animation: none !important;
        transition: opacity 0.1s ease !important;
        -webkit-transition: opacity 0.1s ease !important;
    }

    .mib-neuralyzer.active {
        animation: none !important;
        -webkit-animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .mib-neuralyzer {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}