
body {
    background: url(/public/images/v6/colored_body_top.png?v=2) center top no-repeat #1b2838;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.form-inline .form-control {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #ffffff;
}
.form-inline .btn-outline-success {
    color: #f0a500;
    border-color: #f0a500;
}
.form-inline .btn-outline-success:hover {
    background-color: #f0a500;
    color: #000;
}
.jumbotron {
    background: url('https://i.imgur.com/ihFEfFw.jpeg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    
    
    text-align: center;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}
.jumbotron h1 {
    font-size: 3rem;
    font-weight: bold;
}
.jumbotron p {
    font-size: 1.25rem;
    margin-top: 1rem;
}
.btn-custom {
    background-color: #f0a500;
    color: #000;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}
.btn-custom:hover {
    background-color: #d48806;
    color: #fff;
}
.container h2 {
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}
.game-card {
    background-color: #1c1c1c;
    border: none;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}
.game-card img {
    height: 150px;
    object-fit: cover;
    
}
.game-title {
    font-size: 1.0rem;
    color: #f0a500;
    margin-top: -1rem;
}
.game-description {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.5rem;
}
.card-body {
    padding: 1.5rem;
}
.footer {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}
.highlight-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}
.highlight-main {
    flex: 2;
    position: relative;
}
.highlight-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.highlight-main .highlight-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
}
.highlight-main .highlight-description {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    margin-top: 2.5rem; /* Espaço abaixo do título */
}
.highlight-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.highlight-small .card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #1c1c1c;
    border: none;
}
.highlight-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.status-bolinha {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #28a745; /* Cor verde para status ativo */
margin-left: 220px;
vertical-align: middle;
animation: piscar 2s infinite; /* Aplicar a animação */
}

@keyframes piscar {
0%, 100% {
    opacity: 1; /* Visvel */
}
50% {
    opacity: 0; /* Invisível */
}
}

/* Exemplo para um status inativo */
.status-bolinha.inativo {
background-color: #dc3545; /* Cor vermelha para status inativo */
}

/* Exemplo para um status de carregamento */
.status-bolinha.carregando {
background-color: #ffc107; /* Cor amarela para status de carregamento */
}
   /* Estiliza a barra de rolagem */
::-webkit-scrollbar {
    width: 10px; /* Largura da barra de rolagem */
    height: 10px; /* Altura da barra de rolagem horizontal */
}

/* Estilo do "track" (fundo) da barra de rolagem */
::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #2c3e50, #34495e); /* Gradiente escuro e sofisticado */
    border-radius: 20px; /* Arredondar os cantos */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); /* Sombra interna */
}

/* Estilo da "thumb" (ponta) da barra de rolagem */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3498db, #8e44ad); /* Gradiente vibrante */
    border-radius: 10px; /* Arredondar as extremidades */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); /* Sombra externa para profundidade */
    transition: background 0.3s ease, transform 0.3s ease; /* Transiçes suaves */
}

/* Efeito de hover na ponta (thumb) */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2980b9, #6f3ea3); /* Cor mais intensa ao passar o mouse */
    transform: scale(1.15); /* Aumenta o tamanho da ponta ao passar o mouse */
}

/* Estilo da barra de rolagem horizontal */
::-webkit-scrollbar-horizontal {
    height: 10px; /* Menor altura para a barra de rolagem horizontal */
}

/* Efeito de foco na ponta quando clicada */
::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #1c6ba0, #54268b); /* Cor mais intensa ao clicar */
    transform: scale(1.05); /* Aumenta um pouco a ponta */
}
.card.game-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.card.game-card:hover {
    transform: scale(1.05);
}

.card.game-card img {
    max-height: 200px;
    object-fit: cover;
}

/* Modal Responsivo */
.modal-body {
    flex-direction: column;
}

.categoria-item {
    width: 100%; /* Em dispositivos menores, cada item ocupa 100% */
}

/* Responsividade para Categoria */
@media (max-width: 768px) {
    .btn-group .btn {
        margin-bottom: 5px; /* Evita que os botões fiquem apertados */
    }
}

/* Responsividade Geral */
.container {
    padding: 15px;
}

.footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}
/* Menu de categorias responsivo */
.btn-group {
    display: flex; /* Flexbox para alinhar os botões */
    flex-wrap: nowrap; /* Impede quebra de linha */
    overflow-x: auto; /* Adiciona scroll horizontal */
    -webkit-overflow-scrolling: touch; /* Suaviza o scroll em dispositivos móveis */
    gap: 5px; /* Espaço entre os botões */
}

.btn-group .btn {
    white-space: nowrap; /* Evita quebra de texto */
    flex-shrink: 0; /* Garante que os botões não reduzam o tamanho */
}
