.fixed-bg {
    background-image: url("background.png");
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.device-message {
    background-color: red;
    color: white;
    font-size: 24px;
    text-align: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.main-content {
    display: block;
}

@media (max-width: 1024px) {
    .main-content {
        display: none;
    }

    .device-message {
        display: flex;
    }
}

#infoMarquee {
    color: red;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 5px 0;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}

body.hide-cursor {
    cursor: none;
}