/* =============================================================
   base.css — Fonts, Body, Reset, Global Utilities
   ============================================================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111111;
    color: #d1d5db;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: -31px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 4px #0a0a0a;
}

.typing-line,
.typing-line2,
.typing-line3 {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 2px solid currentColor;
}

.typing-line {
    animation:
        typing 2s steps(40, end) forwards,
        blink .8s infinite;
}

.typing-line2 {
    animation:
        typing 2s steps(40, end) forwards 2.2s,
        blink .8s infinite 2.2s;
}

.typing-line3 {
    animation:
        typing 2s steps(40, end) forwards 4.4s,
        blink .8s infinite 4.4s;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {

    0%,
    50% {
        border-color: currentColor;
    }

    51%,
    100% {
        border-color: transparent;
    }
}
