/* Reset de estilos */
body, h1, h2, h3, p, ul, ol, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background: #000000;;
}

#visitCounter {
    text-align: center;
    margin: 20px 0;
}

#notClickableButton {
    background-color: #ff5400;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: not-allowed;
}

.login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.login-box {
    background-color: #ff0000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.message {
    margin-top: 10px;
}

.col-6 {
    display: flex;
    flex-direction: column;
    width: 33.33%;
    gap: 20px; /* Espaçamento entre os jogos verticalmente */
    margin-right: 90px; /* Espaçamento entre os jogos horizontalmente */
}

/* Adicione esta parte para remover a margem direita do último jogo em cada coluna */
.col-6:last-child {
    margin-right: 0;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col {
    width: 33.33%;
    padding: 10px;
}

.play-button {
    background-color: #8a0000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.play-button:hover {
    background-color: #ff5400;
}

.game {
    background-color: #1f1f1f;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.hot-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    opacity: 0; /* Começa invisível */
}

.game:hover {
    transform: translateY(-5px);
}

.game img {
    max-width: 100%;
    height: auto;
    width: 160px;
    border: 3px solid #ffffff;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.game .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transition: opacity 0.2s;
    box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 60px #ff0000, 0 0 80px #ff0000;
}


.game:hover .background-image {
    opacity: 0.5;
}

.game .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.gamePercentage {
    font-size: 24px;
    font-weight: bold;
    margin-top: 5px;
}

.progress-bar-container {
    width: 100%;
    height: 20px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}
.highlighted {
    font-weight: bold;
    color: #ffffff; /* Esta é uma cor laranja como exemplo, mas você pode escolher qualquer cor que desejar */
}

.progress-bar {
    height: 100%;
    background-color: #8a000000;
    width: 0;
    transition: width 0.3s;
}

.progress-bar.progress-bar-green {
    background-color: green !important;
}

.progress-bar.progress-bar-red {
    background-color: red !important;
}


@keyframes fall {
    0% { top: -100%; }
    100% { top: 110%; }
}

body {
    background-color: black;
}

.matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: #00ff0052;
    z-index: -1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    left: 0;
    animation: matrixDrop linear infinite;
}

@keyframes matrixDrop {
    to {
        transform: translateY(100vh);
        opacity: 80;
    }
}


.matrix-column span {
    display: block;
    opacity: 0.3;
    animation: glow 1.5s infinite alternate;
}





.login-container {
    text-align: center;
    margin-top: 50px;
}

#emailInput {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}

#loginButton {
    background-color: #8a0000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

#loginButton:hover {
    background-color: #ff5400;
}


.mobile-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000;
    padding: 10px 0;
    box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-top: 2px solid #ff0000; /* Borda verde neon */
}

.mobile-menu a {
    color: #ff0000; /* Verde neon */
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    margin-bottom: 5px;
    border-radius: 5px;
}

.mobile-menu a:hover {
    background-color: rgba(0, 255, 0, 0.1); /* Efeito de hover com fundo verde claro */
    opacity: 0.8;
}

.mobile-menu i {
    font-size: 24px;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

.mobile-menu a:hover i {
    transform: scale(1.1); /* Efeito de zoom no ícone ao passar o mouse */
}

.header {
    background-image: url('../speedbot.store/thayslots/caminho/para/sua/imagem.html');
    background-size: cover;
    background-position: center;
    height: 200px; /* Altura desejada para o cabeçalho */
}
/* Adicione estas regras de estilo para centralizar a imagem verticalmente no cabeçalho */
.header-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.mobile-menu a i {
    font-size: 24px;
    margin-bottom: 5px;
}

.mobile-menu a:hover {
    opacity: 0.7;
}

.mobile-content {
    display: none;
}

@media (max-width: 868px) {
    .mobile-content {
        display: block;
    }

    .container {
        max-width: 2000px;
        margin: 20 auto;
        padding: 5px;
        display: flex; /* Adicione isso */
        flex-direction: row; /* Adicione isso */
        flex-wrap: wrap; /* Adicione isso */
    }

    .col-6 {
        gap: 0; /* Remova o gap */
        margin-right: 0; /* Remova a margem direita */
        width: 50%; /* Ajuste a largura */
        max-width: 50%; /* Ajuste a largura máxima */
        margin-bottom: 20px;
    }

    .game {
        max-width: 100%; /* Ajuste a largura máxima */
        padding: 10px;
        margin-bottom: 10px;
    }

    .mobile-menu {
        top: auto;
        bottom: 0;
    }
}