* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0F172A;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: #ecf3f8;
    line-height: 1.7;
}

/* Solidarity M Styling */
.solidarity-m {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #F59E0B 0%, #ffffff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 8px #F59E0B);
}

/* Marquee Animations */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marqueeReverse {
    animation: marqueeReverse 30s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .animate-marquee,
    .animate-marqueeReverse {
        animation-duration: 20s;
    }
}

/* Mobile sticky nav */
.mobile-sticky-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Tech stack glass effect */
.tech-stack-glass {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
}

/* AOS fix for mobile - ensure animations trigger properly */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Fix for images on mobile */
img {
    max-width: 100%;
    height: auto;
}