/* GravityTeknoloji - Simple Bold Diagonal 3D Space Perspective 01 Pattern */
.binary-divider {
    position: relative;
    width: 100%;
    height: clamp(380px, 50vh, 560px);
    z-index: 1;
    overflow: hidden;
    background: #05070c;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.binary-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 1;
}

/* Degrade Kaplama - Tamamen Koyu Uzay Siyahı Geçişi (Beyaz Blur Yoktur) */
.binary-divider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        #0a0e17 0%,
        rgba(5, 7, 12, 0.1) 25%,
        rgba(5, 7, 12, 0.1) 75%,
        #05070c 100%
    );
    pointer-events: none;
}

@media (max-width: 768px) {
    .binary-divider {
        height: clamp(260px, 40vh, 380px);
    }
}
