body {
  margin: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* CONTAINER */
.site-container {
  width: 420px;
  max-width: 100%;
  background: #0a0a12;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* TOPO */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 12px 15px;
}
.logo { font-size: 1.4em; font-weight: bold; color: #ffcc00; }
.logo span { color: #1e90ff; }
.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.btn-entrar, .btn-registrar {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85em;
}
.btn-entrar { background: #1e90ff; }
.btn-registrar { background: #00c853; }

/* ===== BLOCO DE BANNERS (sem espaço entre topo e linha) ===== */
.banners-grid{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0;           /* zera padding do grupo */
  margin:0;            /* zera margem do grupo */
}

/* banner grande de cima */
.banner-top{
  width:100%;
  background:#0f0f18;
  border-radius:10px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0;            /* sem espaço embaixo */
}
.banner-top img{
  width:100%;
  height:130px;
  object-fit:contain;
  border-radius:10px;
  display:block;       /* evita “espaço de baseline” */
}

/* linha inferior (3 banners) colada no de cima */
.banners-row{
  display:flex;
  width:100%;
  gap:6px;             /* só o espaçamento lateral/vertical entre os 3 */
  align-items:center;
  margin:0;            /* sem espaço em cima */
}

/* coluna esquerda (2 empilhados) */
.banners-left{
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
}

/* coluna direita (gif) */
.banners-right{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100%;
}

/* caixinha padrão de banner */
.banner-box{
  background:#0f0f18;
  border-radius:10px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:0;           /* tira acolchoamento que criava “vão” visual */
  box-shadow:0 2px 8px rgba(0,0,0,.3);
}
.banner-box img{
  width:100%;
  height:100%;
  object-fit:contain;  /* mostra imagem completa, sem corte */
  border-radius:8px;
  display:block;       /* evita “vão” embaixo da imagem */
}

/* altura do banner da direita para casar com os 2 da esquerda */
.banner-box.gif-centro{ height:240px; }
.banner-box.gif-centro img{
  max-height:240px;
  width:100%;
  object-fit:contain;
  display:block;
}

/* ======== FAIXA DE AVISO ROLANTE ======== */
.faixa-rolante {
  width: 95%;
  background: #0e1624;
  border-radius: 8px;
  margin: 12px auto;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
.faixa-rolante .icone img {
  width: 20px;
  height: 20px;
}
.faixa-rolante .texto {
  white-space: nowrap;
  animation: moverTexto 15s linear infinite;
}
.faixa-rolante p {
  font-size: 0.8em;
  color: #d0d8ff;
  margin: 0;
}
@keyframes moverTexto {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.mensagem-carrossel {
  overflow: hidden;
  white-space: nowrap;
  background: #0c1020;
  color: #ffffff;
  font-size: 13px;
  border-top: 1px solid #1a1f33;
  border-bottom: 1px solid #1a1f33;
  margin: 6px 0 2px;
}
.mensagem-carrossel .texto {
  display: inline-block;
  padding-left: 100%;
  animation: deslizar 18s linear infinite;
}
@keyframes deslizar {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* ======== ABAS ======== */
.abas-jogos {
  display: flex;
  justify-content: space-between;
  margin: 10px;
  background: #101423;
  border-radius: 6px;
  overflow: hidden;
}
.abas-jogos button {
  flex: 1;
  background: none;
  border: none;
  color: #aaa;
  font-weight: 600;
  padding: 10px 5px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.abas-jogos button.ativo {
  color: #1e90ff;
  border-bottom: 3px solid #1e90ff;
}
.abas-jogos button:hover {
  color: #fff;
}

/* LISTA DE JOGOS */
/* Grade dos jogos - estilo VIP345 */
.lista-jogos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 10px 90px;
  justify-items: center;
  align-items: start;
  box-sizing: border-box;
  background: #0f1220; /* 🔹 fundo azul escuro */
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.4);
}

/* Cada card do jogo */
.jogo {
  width: 85%; /* 🔹 tamanho compacto */
  background: #0c1120;
  border-radius: 8px;
  text-align: center;
  padding: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.jogo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(61,169,252,0.4);
}

/* Imagens dos jogos */
.jogo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

/* Nome do jogo */
.jogo p {
  font-size: 0.6em;
  margin-top: 3px;
  color: #c9d4f1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* RODAPÉ */
.menu-inferior {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  background: linear-gradient(180deg, #0a0a12 0%, #101020 100%);
  border-top: 2px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 8px;
  z-index: 999;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.4);
}
.menu-inferior a {
  text-decoration: none;
  color: #bfbfbf;
  text-align: center;
  font-size: 0.75em;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  transition: all 0.3s ease;
}
.menu-inferior img {
  width: 32px;
  height: 32px;
  display: block;
  margin-bottom: 4px;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}
.menu-inferior a.ativo img {
  filter: drop-shadow(0 0 8px #00bfff) brightness(1.2);
  transform: scale(1.1);
}
.menu-inferior a.ativo span {
  color: #00bfff;
  font-weight: 600;
}
.menu-inferior a:hover img {
  transform: scale(1.1);
  filter: brightness(1) drop-shadow(0 0 6px #009cff);
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, #0c0c14 0%, #141423 100%);
  color: #fff;
  z-index: 1000;
  padding: 20px 15px;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: left 0.3s ease;
  overflow-y: auto;
}
.sidebar.ativo { left: 0; }

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 15px;
}
.btn-fechar {
  background: none;
  border: none;
  color: #ccc;
  font-size: 20px;
  cursor: pointer;
}
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu li {
  margin: 12px 0;
  color: #ddd;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-menu li:hover {
  color: #1e90ff;
  transform: translateX(3px);
}
.sidebar-menu hr {
  border: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0;
}
.sidebar-suporte {
  position: relative;
  margin-top: 20px;
  background: #1b1b2b;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}
.sidebar-suporte a {
  color: #00bfff;
  font-weight: 600;
  text-decoration: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  display: none;
}
.overlay.ativo { display: block; }
