body.proximamente #content{
    display: flex;
}

body.proximamente #primary{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

/* Prevent scrolling on body */
html, body.proximamente {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
}

body.proximamente .background-image-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

body.proximamente .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    animation: backgroundAnimation 100s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes backgroundAnimation {
    0% {
        transform: scale(1.35) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

body.proximamente .background-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #313131;
}

body.proximamente .bootscore-footer{
    display: none !important;
}

body.proximamente h1{
    margin: 0 0 50px;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
}

body.proximamente h1 strong{
    color: #FC393F;
}

body.proximamente h2{
    margin: 0 0 50px;
    display: flex;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

body.proximamente .app-logos-container{
    margin: 30px 0 0;
    display: flex;
    flex-direction: row;
    column-gap: 24px;
}

body.proximamente .app-logos-container a{
    display: flex;
    transition: all 0.3s ease;
}

body.proximamente a:hover{
    text-decoration: none;
    filter: invert(1);
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 820px) {

    body.proximamente h1 {
        margin: 0 0 28px;
        font-size: 40px;
    }

    body.proximamente h2 {
        font-size: 22px;
    }
    
    body.proximamente .background-image-wrapper {
        overflow: hidden;
    }
    
    body.proximamente .background-image {
        width: 100%;
        height: auto;
        left: 0;
        animation: mobilePan 40s linear infinite;
        object-fit: initial;
        transform-origin: top;
    }
    
    @keyframes mobilePan {
        0% {
            transform: translateX(-100%) scale(6);
        }
        50% {
            transform: translateX(0%) scale(6);
        }
        95% {
            transform: translateX(90%) scale(6);
        }
    }

    body.proximamente .app-logos-container{
        flex-direction: column;
        row-gap: 25px;
    }

    body.proximamente .app-logos-container a img{
        width: 240px;
    }
    
}