@import url('https://fonts.cdnfonts.com/css/iceberg');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;600;700;900&display=swap');

body {
    background: linear-gradient(173.93deg, #001932 0%, #000000 95.19%);
    text-align: center;
    color: white;
    font-family: 'Inter';
    margin-bottom: 170px;
    margin-top: 10px;
}

.menu {
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(173.93deg, #001932 0%, #000000 95.19%);
    padding: 12px 0;
}

.menu img {
    background: #081119;
    border-radius: 10px;
    padding: 20px;
}

.menu img.home {
    background: #00b994;
    border-radius: 10px;
    padding: 20px;
}

.ml25 img {
    width: 280px;
}

.container .topo {
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
}

.container .topo button {
    background: #FFE600;
    border-radius: 25px;
    padding: 10px 17px;
    font-weight: bold;
    border: none;
    color: black;
}

.container .topo img {
    margin-top: -5px;
}

.container .jogos {
    margin-top: 30px;
}

.container .jogos .jogo {
    margin: 10px 0;
}

.container .jogos .jogo .acao {
    margin: -100px 0px 0px 22px;
    width: 300px;
    text-align: right;
    height: 139px;
}

.container .jogos .jogo .acao h2 {
    font-family: 'iceberg';
    font-size: 28px;
}

.container .jogos .jogo .acao .jogar {
    background: #00b994;
    border-radius: 12.5px;
    border: none;
    padding: 8px 12px;
    font-weight: bold;
    font-family: 'Inter';
    color: black;
}

/* PÁGINA TOP JOGOS */

.flex {
    display: flex;
}

.w100 {
    width: 100%;
}

.top_jogos {
    margin-top: 20px;
}

.top_jogos .titulo {
    align-items: center;
    justify-content: center;
    margin: 38px 0;
}

.top_jogos .lista_jogos {
    align-items: center;
    justify-content: space-between;
    background: #081119;
    border-radius: 14px;
    margin: 10px 0;
}

.top_jogos .lista_jogos h3 {
    margin-left: 4px;
    font-size: 20px;
    text-align: left;
    color: white;
}

.top_jogos .lista_jogos .estatisticas .btn-success {
    background-color: #229735;
    border-color: #229735;
}

.top_jogos .lista_jogos .estatisticas .btn-danger {
    background-color: #972222;
    border-color: #972222;
}

.top_jogos .lista_jogos .estatisticas .btn-warning {
    background-color: #AA6600;
    border-color: #AA6600;
}

.top_jogos .lista_jogos .estatisticas button {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 5px;
    margin: 2.5px;
    color: white;
}

.top_jogos .lista_jogos .carrega-conteudo {
    background: #00b994;
    border-radius: 50%;
    font-size: 28px;
    color: black;
    margin-top: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
a {
    text-decoration: none;
}

.top_jogos .lista_jogos .estatisticas {
    justify-content: space-around;
}

/* FINAL TOP JOGOS */

/* ULTIMOS SINAIS */ 

.top_jogos .titulo {
    justify-content: center;
}

.ultimos_sinais {
    margin-top: 40px;
}

.ultimos_sinais .titulo {
    align-items: end;
    justify-content: center;
    margin-bottom: 30px;
}

.ultimo_sinal {
    margin: 30px 0;
}

.ultimo_sinal .flex {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #060F17;
    border: 1px solid #1A242D;
    border-radius: 8px;
    padding: 10px 16px;
    margin: 10px 0;
}

.ultimo_sinal .flex p {
    margin-bottom: 0;
}

.ir {
    background: #229735;
    border-radius: 13px;
    color: white;
    border: none;
    padding: 14px 14px;
    font-weight: bold;
    margin-top: -6px;
    margin-bottom: 20px;
}

.iframe_casa {
    width: 94%;
    box-shadow: 0px 0px 10px #000;
    border-radius: 20px;
    background: #060F17;
    z-index: 999;
    border: 1px solid #1A242D;
    position: sticky;
}

.iframe_jogo {
    width: 98%;
    padding: 18px;
}

.dir img {
    margin: -3px 5px 0px 0px;
}

.titulo img {
    margin-right: 25px;
}

.box-roleta {
    margin: 40px 0px;
}

.pulsar-geston {
    background: #1ee800;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(154 239 166);
    margin: 10px 3px 0px 8px;
    height: 10px;
    width: 10px;
    transform: scale(1);
    animation: pulse-black 1s infinite;
    margin-top: 0px;
    display: inline-flex;
    margin-right: 6px;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(133 230 80 / 70%);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}