
/************************************************/
Dark Deep Black          #0a0a0f       
Dark Gray                #16161f
Light Gray (Text)        #e0e0e0
Navy Blue (buttons)      #102345
DeepBlue                 #0d6efd
Light blue / Cyan glow   #00d4ff
border-slate-800         #1e293b
hover:border-slate-500   #64748b
Glow effect              rgba(0, 212, 255, 0.8)
/************************************************/

body {
    font-family: 'Heebo', sans-serif;
}

@keyframes marquee-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.marquee-content-wrapper {
    display: flex;
    flex-direction: column;
    animation: marquee-up 14s linear infinite;
}

.description-marquee-container {
    height: 180px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.text-eye-blue {
    color: #0d6efd;
}

.video-marker-glow {
    background-color: #0d6efd;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    animation: eye-glow 2s infinite ease-in-out;
    border: 1px solid #00d4ff;
}

/* Card eye marker — 30% smaller than the default 40px marker */
.video-marker-glow.eye-card {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 0.7rem;
}



@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes eye-glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.4);
        transform: scale(1);
    }
}

input:focus,
select:focus {
    outline: none;
    border-color: #00d4ff !important;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}