body {
    font-family: 'Inter', sans-serif;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6) blur(2px);
    transition: opacity 1s ease-in-out;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 10px #ffffff, 0 0 20px #00aaff, 0 0 30px #00aaff;
    }
    50% {
        text-shadow: 0 0 15px #ffffff, 0 0 30px #0056ff, 0 0 45px #0056ff;
    }
}

.animated-text {
    animation: text-glow 3s infinite alternate;
}

#fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

#welcome-notification {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transform: translateY(100%);
    opacity: 0;
}
#welcome-notification.show {
    transform: translateY(0);
    opacity: 1;
}
