@import "tailwindcss";

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.1) 2px,
        rgba(255, 255, 255, 0.1) 4px
    );
    pointer-events: none;
    z-index: 1000;
}

.active {
    color: white;
    border-bottom: 2px solid white    
}

.status-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.logo:hover {
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% { text-shadow: 2px 2px #fff, -2px -2px #fff; }
    25% { text-shadow: -2px 2px #fff, 2px -2px #fff; }
    50% { text-shadow: 2px -2px #fff, -2px 2px #fff; }
    75% { text-shadow: -2px -2px #fff, 2px 2px #fff; }
    100% { text-shadow: 2px 2px #fff, -2px -2px #fff; }
}