body {
    /* background-image: url(./images/background.avif);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; */
    background-color: #000000;
    color: #ffffff;
}

body.home-page {
    background-image: none;
    background-color: #000000;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.hero {
    background-image: none;
    background-size: cover;
    background-position: center;
}
.nav-link {
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #60a5fa; /* Light blue hover effect */
}
.paper-link {
    transition: all 0.3s ease;
}
.paper-link:hover {
    background-color: rgba(96, 165, 250, 0.2);
    transform: translateX(5px);
}
.typing {
    display: flex;
    align-items: center;
    gap: 6px;
}

.typing-dot {
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    animation: typingAnimation 1s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

html.lenis {
        height: auto;
    }

.lenis.lenis-smooth {
        scroll-behavior: auto;
    }

.lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

.lenis.lenis-stopped {
        overflow: hidden;
    }

.lenis.lenis-scrolling iframe {
        pointer-events: none;
    }
