        :root {
           
            --accent: #0060c4;
            --secondary: #ff00ff;
            /* Neon magenta */
         
            --easing: cubic-bezier(0.165, 0.84, 0.44, 1);
        }

 

    
      
        /* Running Text Tape */
        .tape-wrapper {
            position: absolute;
            bottom: 5vh;
            left: -30%;
            width: 160%;
            background: var(--accent);
            color: #fff;
            transform: rotate(-2deg);
            padding: 10px 0;
            border-top: 3px solid #000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .tape-text {
            font-family: 'Syncopate';
            font-size: 2rem;
            font-weight: 800;
            white-space: nowrap;
            animation: tapeScroll 20s linear infinite;
        }

        @keyframes tapeScroll {
            to {
                transform: translateX(-80%);
            }
        }

      