body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
h1, h2, h3, .navbar-brand {
    font-weight: 700;
    letter-spacing: -0.02em;
}
.card-subtitle, .card-text ul li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}
:root {
    --bs-body-bg: #0b0e14;
    --bs-body-color: #f8fafc;
    --bs-tertiary-bg: #161b22; 
    --bs-primary: #7c3aed;
    --bs-primary-rgb: 124, 58, 237;
    --bs-link-color: #2dd4bf;
    --bs-link-hover-color: #5eead4;
}
.card {
    background-color: var(--bs-tertiary-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.text-body-secondary {
    color: #94a3b8 !important;
}
.btn-primary {
    --bs-btn-bg: #7c3aed;
    --bs-btn-border-color: #7c3aed; 
    --bs-btn-hover-bg: #6d28d9;
    --bs-btn-hover-border-color: #6d28d9;
    --bs-btn-focus-shadow-rgb: 124, 58, 237; 
}
.btn-primary:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}
footer a.text-decoration-none {
    color: #7c3aed !important; 
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
footer a.text-decoration-none:hover {
    color: #2dd4bf !important; 
    transform: translateY(-3px); 
}
footer a svg {
    fill: #7c3aed !important; 
    transition: fill 0.3s ease, transform 0.3s ease;
}
footer a:hover svg {
    fill: #2dd4bf !important; 
    transform: translateY(-3px);
}
footer a:focus, 
footer a:active {
    outline: none !important;
    box-shadow: none !important;
    color: #2dd4bf !important;
}
a {
    --bs-link-color-rgb: 45, 212, 191; 
    --bs-link-hover-color-rgb: 94, 234, 212;
}
.bi-github, .bi-linkedin {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}
.bi-github:hover, .bi-linkedin:hover {
    color: var(--bs-link-color); 
}
[id^="scroll"] { 
    scroll-margin-top: 75px; 
}
#text::after {
content: "|";
animation: blink 0.7s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out; 
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}