/* Living Background Animation */
@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes drift {
    0% { background-position: 50% 50%; }
    25% { background-position: 51% 51%; }
    50% { background-position: 50% 52%; }
    75% { background-position: 49% 51%; }
    100% { background-position: 50% 50%; }
}

body {
    background-color: var(--bg-dark);
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-size: 110% 110%; /* Allow space for movement */
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    animation: drift 30s infinite ease-in-out alternate;
}
