/* Custom Styles for Neo-Brutalism */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise overlay */
.noise-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: multiply;
}

/* Base custom scrollbar */
::-webkit-scrollbar {
    width: 16px;
}
::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-left: 4px solid #000000;
}
::-webkit-scrollbar-thumb {
    background: #FF4D00;
    border: 4px solid #000000;
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* Utility animation classes */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}
.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

/* Custom interactive classes */
.magnetic-btn {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    overflow: hidden;
}

.magnetic-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.magnetic-btn:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
}

/* timeline line */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 32px;
    bottom: -64px;
    width: 4px;
    background-color: #000000;
}
.timeline-item:last-child::before {
    display: none;
}
