/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(42, 42, 62, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 132, 252, 0.3);
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc 0%, #e879f9 50%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f0abfc;
}

.nav-link.active {
    color: #e879f9;
}

@media print {
    .nav {
        display: none;
    }
}