body { 
    font-family: 'Public Sans', sans-serif; 
    background-color: #faf9fc; 
    color: #1a1c1e; 
}
.material-symbols-outlined { 
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24; 
}
.ghost-border { 
    border: 1px solid rgba(195, 198, 207, 0.2); 
}
.navy-gradient { 
    background: linear-gradient(135deg, #002444 0%, #1a3a5c 100%); 
}
.shadow-ambient { 
    box-shadow: 0 32px 32px -16px rgba(26,28,30,0.06); 
}
.text-editorial { 
    letter-spacing: -0.02em; 
    line-height: 1.1; 
}
.overlap-1 { 
    transform: translate(2rem, -2rem); 
    z-index: 10; 
}
.overlap-2 { 
    transform: translate(-1rem, 1rem); 
    z-index: 5; 
}
.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.hide-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Animations */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-\\[marquee_30s_linear_infinite\\] {
    animation: marquee 30s linear infinite;
}
.hover\\:pause:hover {
    animation-play-state: paused;
}

