.nav-active {
    color: #fff;
}

.gradient-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(124, 58, 237, 0.3), transparent);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(124, 58, 237, 0.2);
}

.glow-violet {
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.text-gradient {
    background: linear-gradient(135deg, #a78bfa, #7c3aed, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 40%,
        rgba(10, 10, 10, 0.6) 100%
    );
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #7c3aed, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover::before {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

.prose h2 {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    color: #e5e5e5;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.prose p {
    color: #a3a3a3;
    line-height: 1.8;
}

.prose a {
    color: #a78bfa;
    text-decoration: underline;
}

.prose a:hover {
    color: #8b5cf6;
}

.prose ul, .prose ol {
    color: #a3a3a3;
}

.prose strong {
    color: #d4d4d4;
}
