html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

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

.animate-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #1e293b; /* Warna garis tidak aktif */
}
.timeline-item.active::before {
    background: #10b981; /* Garis aktif (emerald) */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.font-mono {
    font-family: 'JetBrains Mono', monospace;
}
.font-display {
    font-family: 'Space Grotesk', sans-serif;
}
/* Grid background lines effect */
.cyber-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
}
@keyframes pulse-slow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}
.pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090d16;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}
