/* MBK Glow Divider - Multi-layer Neon Effect */
.mbk-glow-divider {
    position: relative;
    width: 100%;
    height: 96px;
    overflow: visible;
}

/* Main glow line */
.mbk-glow-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        hsla(210, 100%, 50%, 0.3) 20%,
        hsl(195, 100%, 50%) 50%,
        hsla(210, 100%, 50%, 0.3) 80%,
        transparent 100%
    );
}

/* Center glow */
.mbk-glow-divider .mbk-glow-center {
    position: absolute;
    inset: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 64px;
    background: radial-gradient(
        ellipse 60% 100% at center,
        hsla(195, 100%, 50%, 0.4) 0%,
        hsla(210, 100%, 50%, 0.2) 40%,
        transparent 70%
    );
    filter: blur(24px);
    opacity: 0.6;
}

/* Intense glow */
.mbk-glow-divider .mbk-glow-intense {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 32px;
    background: radial-gradient(
        ellipse at center,
        hsla(195, 100%, 50%, 0.8) 0%,
        hsla(210, 100%, 50%, 0.4) 50%,
        transparent 80%
    );
    filter: blur(32px);
    opacity: 0.4;
}

/* Sharp highlight */
.mbk-glow-divider .mbk-glow-highlight {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 10px;
    background: linear-gradient(90deg, transparent 0%, hsl(195, 100%, 50%) 30%, hsl(0, 0%, 100%) 50%, hsl(195, 100%, 50%) 70%, transparent 100%);
    filter: blur(4px);
    opacity: 0.9;
}