/* Cookie Prime Main Styles */
.prime-dark-blue {
    background-color: #1e3a8a;
}

.prime-light-bg {
    background-color: #f8fafc;
}

.prime-gold {
    color: #f59e0b;
}

/* Navigation Styles */
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    color: #d1d5db;
    transition: color 0.2s;
    text-decoration: none;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: white;
    font-weight: 500;
    border-bottom: 2px solid #f59e0b;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-initial {
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-scanning {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .7;
    }
}