body {
    font-family: 'Inter', sans-serif;
    color: #e5e7eb;
}

.bg-blur {
    backdrop-filter: blur(5px);
    background-color: rgba(17, 24, 39, 0.8);
}

.tech-stack, .about-section {
    transition: all 0.3s ease;
}

.tech-stack:hover, .about-section:hover {
    transform: translateY(-5px);
}

.project-card, .experience-card {
    transition: all 0.3s ease;
    background-color: rgba(31, 41, 55, 0.7);
}

.project-card:hover, .experience-card:hover {
    transform: translateY(-5px);
    background-color: rgba(31, 41, 55, 0.9);
}

.connecting-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#mobileMenu {
    transition: all 0.3s ease-in-out;
}

.mobile-menu-open {
    background-color: rgba(17, 24, 39, 0.95);
}

#menuBtn:hover {
    opacity: 0.8;
}

#mobileMenu a {
    transition: all 0.2s ease;
    padding: 0.5rem 0;
}

#mobileMenu a:active {
    transform: scale(0.98);
}