/* Diagonal Animated Tapes */
.tape-container {
    position: fixed;
    width: 200%;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.tape-1 {
    top: 40%;
    left: -10%;
    transform: rotate(-15deg);
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.tape-2 {
    top: 60%;
    left: -10%;
    transform: rotate(-15deg);
    border-top: 2px solid #ef4444;
    border-bottom: 2px solid #ef4444;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.tape-text {
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.5);
    animation: scroll-left 20s linear infinite;
}

.tape-2 .tape-text {
    color: rgba(239, 68, 68, 0.1);
    -webkit-text-stroke: 1px rgba(239, 68, 68, 0.5);
    animation: scroll-right 25s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Mobile: Hide tapes for performance */
@media (max-width: 768px) {
    .tape-container {
        display: none;
    }
}