
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

body {
    font-family: 'Fira Code', monospace;
    background-color: #0a0a1a;
    color: #c0c0ff;
}

.bg-primary {
    background-color: #0a0a1a;
}

.bg-secondary {
    background-color: #1a1a3a;
}

.border-accent {
    border-color: #4d4dff;
}

.text-accent {
    color: #8a8aff;
}

.text-glow {
    text-shadow: 0 0 5px #8a8aff, 0 0 10px #8a8aff;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8a8aff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(77, 77, 255, 0.2);
}

.header-underline {
    border-bottom: 2px solid #4d4dff;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
