/* WR Lichtbalk — LED Pixel Display v1.0 */

.wr-lichtbalk-outer {
    width: 100%;
    margin: 0 auto;
}

.wr-lichtbalk-wrap {
    background: #080808;
    border: 2px solid #1c1c1c;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* LED pixel grid overlay */
.wrlb-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.18) 3px,
            rgba(0, 0, 0, 0.18) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.12) 3px,
            rgba(0, 0, 0, 0.12) 4px
        );
    pointer-events: none;
    z-index: 2;
}

/* Ambient glow */
.wrlb-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(232, 98, 10, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Inner scrolling container */
.wrlb-inner {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    will-change: transform;
    flex-shrink: 0;
}

/* LED tekst */
.wrlb-text {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    letter-spacing: 2px;
    padding-right: 60px;
    display: inline-block;
    flex-shrink: 0;
    line-height: 1;
}

/* Fade-randen links en rechts */
.wr-lichtbalk-wrap::before,
.wr-lichtbalk-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 4;
    pointer-events: none;
}
.wr-lichtbalk-wrap::before {
    left: 0;
    background: linear-gradient(to right, #080808 0%, transparent 100%);
}
.wr-lichtbalk-wrap::after {
    right: 0;
    background: linear-gradient(to left, #080808 0%, transparent 100%);
}
