.binary-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.binary-scroll {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: transform;
    transform: translateY(0);
}

.binary-item {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
    white-space: nowrap;
    user-select: none;
    transition: none;
    opacity: 0.5;
    font-weight: bold;
    font-size: 1rem;
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    .binary-item {
        font-size: 0.9rem;
        opacity: 0.7;
    }
}

@media (max-width: 992px) {
    .binary-item {
        font-size: 0.8rem;
        opacity: 0.65;
    }
}

@media (max-width: 768px) {
    .binary-item {
        font-size: 0.7rem;
        opacity: 0.6;
    }
}

@media (max-width: 576px) {
    .binary-item {
        font-size: 0.6rem;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .binary-item {
        font-size: 0.5rem;
        opacity: 0.4;
    }
}

@media (max-width: 360px) {
    .binary-item {
        font-size: 0.4rem;
        opacity: 0.3;
    }
}
