html,
body {
    height: 100%;
    margin: 0;
}

body {
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 60px;
}

.gameid-clubes {
    background-color: var(--color-pw-3);
}

.gameid-about {
    background-color: var(--back-session);
}

.gameid,
.gameid-download,
.gameid-clubes,
.gameid-about {
    min-height: calc(100vh - 60px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;

    img {
        max-height: 60vh;
        max-width: 100%;
        object-fit: contain;
    }
}

.gameid-download {
    width: 100%;
    background-image: url('/assets/images/gameid/gameid-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    .container {
        width: 100% !important;
    }
}

.titulo {
    font-size: 4.5rem !important;
    font-weight: 900;
}

.gameid-about {
    .container {
        width: 100%;
    }

    .row {
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    p {
        font-size: 18px !important;
        font-weight: 600;
        line-height: 1.1;
    }

    i {
        font-size: 2rem !important;
        line-height: 1;
        font-weight: 900;
    }

    .gameid-features {
        margin-top: 2.5rem;

        .row {
            margin-bottom: 1.5rem !important;
        }

        .col-auto {
            padding-right: 1rem;
        }
    }
}

.icon-flip i {
    display: inline-block;
    transition: transform 0.2s ease;
}

.icon-flip:hover i {
    transform: scaleX(-1);
}

.stat-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    height: 100%;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-pw-1);
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.gameid-clubes .stat-card {
    padding: 20px 20px 10px !important;
}

.form-control{
  border: none!important;
}

label {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}