body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

.glitch-text {
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #FF5E00;
    z-index: -1;
    text-shadow: -2px 0 #FF5E00;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #00B2FF;
    z-index: -1;
    text-shadow: 2px 0 #00B2FF;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(33% 0 33% 0); transform: translate(-2px); }
    40% { clip-path: inset(66% 0 0 0); transform: translate(2px); }
    60% { clip-path: inset(0 0 66% 0); transform: translate(1px); }
    80% { clip-path: inset(25% 0 50% 0); transform: translate(-1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(50% 0 25% 0); transform: translate(2px); }
    40% { clip-path: inset(0 0 75% 0); transform: translate(-2px); }
    60% { clip-path: inset(75% 0 0 0); transform: translate(-1px); }
    80% { clip-path: inset(40% 0 40% 0); transform: translate(1px); }
}



//



/* User Photo Ticker */
.user-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.user-ticker {
    display: flex;
    gap: 1rem;
    animation: scrollRTL 30s linear infinite;
    padding: 1rem 0;
}

.user-ticker:hover {
    animation-play-state: paused;
}

.user-ticker-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #FF5E00;
    transition: all 0.3s ease;
}

.user-ticker-img:hover {
    transform: scale(1.1);
    border-color: #00B2FF;
    box-shadow: 0 0 15px rgba(0, 178, 255, 0.7);
}

@keyframes scrollRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Tooltip for user info */
.tooltip-inner {
    background-color: #333;
    color: #fff;
    border-radius: 0.25rem;
    padding: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}
