* {
  margin: 0;padding: 0;border: none;box-sizing: border-box;font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
body {
  background-position: center;background-size: cover;background-attachment: fixed;
}
img {
  user-drag: none;user-select: none;pointer-events: none;-webkit-user-drag: none;-moz-user-select: none;-ms-user-select: none;
}
.verde {
  position: absolute;top: 61px;width: 180px;z-index: 50;
}
.azul {
  position: absolute;top: 40px;right: 0;height: 200px;z-index: 50;
}
.roxa {
  position: absolute;top: 50%;height: 150px;z-index: 50;
}
.amarela {
  position: absolute;top: 60%;right: 0;height: 300px;z-index: 50;
}
.rosa {
  display: none;position: fixed;top: 20%;height: 120px;z-index: 50;
}
@media screen and (max-width: 1024px) {
  .verde {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .verde {
    display: none;
  }
  .azul {
    display: none;
  }
  .roxa {
    position: fixed;top: 80%;height: 100px;
  }
  .amarela {
    position: fixed;top: 30%;height: 200px;
  }
  .rosa {
    display: block;
  }
}
.folha {
  pointer-events: none;
}

/* Recommendations */

.recommendation-container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recommendation-container {
      margin-top: 40px;
      margin-bottom: 40px;
  }
}
.title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .title {
      font-size: 40px;
  }
}
.box {
    
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
}
@media (min-width: 640px) {
  .grid {
      grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .grid {
      padding: 12px 48px;
      grid-template-columns: repeat(8, 1fr);
      gap: 32;
  }
}
.platform {
    animation: tilting 9s infinite ease-in-out;
  position: relative;
}
.platform a {
  display: block;
  width: 70px;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .platform a {
      width: 80px;
  }
}
.platform a:hover {
  transform: scale(1.1);
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
}
.image-wrapper img {
  width: 100%;
  display: block;
}
.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #22c55e;
  color: rgb(24, 24, 24);
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  animation: ofuscatin 2s infinite;
}

@keyframes ofuscatin{
    0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.9;
  }
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}



/* Casino Theme Styling */

/* Box and Grid Container */
.platform-box {
  background-color: #121212;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Platform Cards */
.platform-grid > div {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 0px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3a3a3a;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color); /* Gold accent on hover */
}

/* Image Sections - Fixed Height for All Image Wrappers */
.platform-box .image-wrapper {
  text-align: center;
  margin-bottom: 10px;
  height: 120px; /* Fixed height for all image wrappers */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  position: relative;
  width: 100%;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Maintains aspect ratio while fitting in container */
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px); /* Intensidade do desfoque */
  transform: scale(1.1); /* Evita bordas visíveis do blur */
  z-index: 0;
}

.platform-grid > div > div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  height: 50px; /* Fixed height for game icon/name section */
}

.platform-grid > div > div:nth-child(2) img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.platform-grid > div > div:nth-child(2) h3 {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loading-overlay {display:none !important;}

/* Table Styling */
.list {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.table-overlay {
  position: relative;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
  background-color: rgba(0, 0, 0, 0.2);
}

.table-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.winningsTable {
  width: 100%;
  border-collapse: collapse;
  color: #ffffff;
  font-size: 14px;
}

.winningsTable thead {
  background-color: var(--primary-color); /* Gold header */
}

.winningsTable th {
  padding: 10px;
  text-align: left;
  font-weight: 600;
  color: #121212;
  text-transform: uppercase;
  font-size: 12px;
}

.winningsTable tbody tr {
  transition: background-color 0.3s ease;
  animation: fadeIn 0.5s;
}

.winningsTable tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.winningsTable tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.1); /* Subtle gold highlight */
}

.winningsTable td {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ganhos column styling */
.winningsTable td:last-child {
  color: var(--secondary-color); /* Green for winnings */
  font-weight: 600;
}

/* Access Button */
.platform-grid > div > div:last-child {
  margin-top: auto;
  text-align: center;
  height: 50px; /* Fixed height for button container */
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-grid > div > div:last-child a {
  display: inline-block;
  background: var(--primary-color);
  color: #121212;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 212, 212, 0.3);
}

.platform-grid > div > div:last-child a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 212, 212, 0.4);
  background: var(--primary-color);
}

/* Animation for new rows */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make all cards have the same height by using grid template rows */
.platform-grid > div {
  display: grid;
  grid-template-rows: 120px 50px 160px 50px;
  gap: 15px;
}

/* Social media buttons */

#social-media-btns {
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

#social-media-btns h3 {
  margin-bottom: 12px;
}

#social-media-btns  div{
  display: flex;
  gap: 20px;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.social-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  padding: 5px;
}

.telegram {
  background: linear-gradient(45deg, #36aee2, #0088cc);
  padding: 5px;
}

svg {
  width: 100%;
  height: 100%;
}

/* Refined Mobile Responsive Styles */
@media screen and (max-width: 767px) {
  /* Adjust grid to show 2 items per row */
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  /* Make cards smaller for mobile */
  .platform-grid > div {
    grid-template-rows: 70px 35px 100px 35px;
    gap: 6px;
    padding: 8px;
  }
  
  /* Adjust image wrapper height */
  .platform-box .image-wrapper {
    height: 70px;
    margin-bottom: 3px;
  }
  
  /* Adjust game icon and title section */
  .platform-grid > div > div:nth-child(2) {
    height: 35px;
    padding: 4px;
    gap: 5px;
  }
  
  .platform-grid > div > div:nth-child(2) img {
    width: 20px;
    height: 20px;
  }
  
  .platform-grid > div > div:nth-child(2) h3 {
    font-size: 10px;
    max-width: calc(100% - 25px);
  }
  
  /* Reduce table height */
  .list {
    height: 100px;
  }
  
  /* Adjust table font sizes and alignment */
  .winningsTable {
    font-size: 9px;
  }
  
  .winningsTable th {
    padding: 4px;
    font-size: 8px;
  }
  
  .winningsTable td {
    padding: 4px;
  }
  
  /* Center align all data in the table */
  .winningsTable th,
  .winningsTable td {
    text-align: center;
  }
  
  /* Make table more compact */
  .winningsTable th:first-child,
  .winningsTable td:first-child {
    width: 35%;
  }
  
  .winningsTable th:nth-child(2),
  .winningsTable td:nth-child(2) {
    width: 30%;
  }
  
  .winningsTable th:last-child,
  .winningsTable td:last-child {
    width: 35%;
  }
  
  /* Adjust button section */
  .platform-grid > div > div:last-child {
    height: 35px;
  }
  
  .platform-grid > div > div:last-child a {
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 15px;
    letter-spacing: 0.5px;
  }
  
  /* Reduce platform box padding */
  .platform-box {
    padding: 10px;
    margin-bottom: 1rem;
  }
  
  /* Fix box shadows and hover effects to be more subtle */
  .platform-grid > div {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .platform-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
}

/* Extra small devices adjustment */
@media screen and (max-width: 375px) {
  .platform-grid {
    grid-template-columns: 1fr; /* Revert to 1 column for very small devices */
    gap: 12px;
  }
  
  /* Allow slightly larger elements for single column */
  .platform-grid > div {
    grid-template-rows: 90px 40px 120px 40px;
  }
  
  .platform-box .image-wrapper {
    height: 90px;
  }
  
  .list {
    height: 120px;
  }
  
  .winningsTable {
    font-size: 11px;
  }
}

.glass-card {
  background-color: transparent !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.glass-card .card-body {
  background-color: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 10px !important;
  border: 1px solid var(--primary-color) !important;
}

.winner-place {
  background-color: rgba(100, 100, 100, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  width: 100px;
  height: 100px;
  border-radius: 50% !important;
  border: 1px solid var(--secondary-color) !important;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.winner-place h3 {
  margin: 0;
  margin-left: 0.4em;
}

.winner-card {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.event-card-text {
  text-align: left;
}

.event-link i {
  font-size: 24px;
  color: var(--secondary-color);
}

#event-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

#event-description img {
  max-width: -webkit-fill-available;
  border-radius: 8px;
}

#event-description .glass-content {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 8px !important;
  border: 1px solid var(--primary-color) !important;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 16px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #event-description {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #event-description {
    width: 90%;
  }
}

.image-container {
    position: relative; /* Essencial para que o GIF seja posicionado em relação a ele */
    display: inline-block; /* Ou block, dependendo do seu layout, para que o container se ajuste ao conteúdo */
}

.hot-gif-overlay {
    position: absolute;
    /* Ajuste top e right conforme necessário para posicionar o GIF */
    top: -30px; /* Exemplo, ajuste conforme seu design */
    right: -46px; /* Exemplo, ajuste conforme seu design */
    z-index: 10; /* Garante que ele fique acima da imagem */
    pointer-events: none; /* Crucial: ignora cliques no GIF em si */
}

.hot-gif-overlay img {
    /* Se necessário, adicione estilos específicos para a imagem do GIF aqui */
     width: 70px; /* Defina a largura desejada */
 height: auto; /* Mantém a proporção original, ajustando a altura automaticamente */
    display: block; /* Remove espaços extras abaixo da imagem */
}
/* Estilos Padrão (para Desktop e telas maiores) */
.detalhe-topo {
    position: absolute;
    top: 0px; /* Seu -top-[40px] */
    left: 50%;
    transform: translateX(-50%);
    width: 89%;
    max-width: 1050px;
    height: 100px; /* Altura original, se for o caso */
    /* Outros estilos como z-index, pointer-events, etc. */
    z-index: 50;
    pointer-events: none;
    color: transparent; /* Se for um estilo específico da imagem */
}

/* Estilos Específicos para Mobile (telas com largura máxima de 768px) */
@media (max-width: 768px) {
    .detalhe-topo {
        /* Alterar o Tamanho */
        width: 100%; /* Por exemplo, um pouco mais larga no mobile */
        max-width: auto; /* Remove o limite de 750px para mobile, se quiser */
        height: auto; /* IMPORTANTE: Para evitar que a imagem fique "pressionada" */

        /* Alterar a Posição */
        top: 20px; /* Mais acima, por exemplo */
        left: 0px; /* Posicionar mais à esquerda, por exemplo */
        transform: none; /* Remover a centralização se não quiser mais */
        /* Ou, se quiser centralizar de forma diferente: */
        /* left: 50%;
        transform: translateX(-50%); */
    }
}
.game-metrics {
  background-color: rgba(255, 255, 255, 1); /* Branco com 70% de opacidade */
  border: none; /* Borda branca de 1px */
  box-shadow: none; /* Sombra azul deslumbrante */
  padding: 20px; /* Espaçamento interno para o conteúdo */
  border-radius: 8px; /* Cantos levemente arredondados, opcional */
}
.social {display:none;}
.game-card {
  border:none; /* Borda inicial com a cor desejada */
  border-radius: 8px; /* Cantos levemente arredondados para um visual mais suave */
  box-shadow: 0 0 10px rgba(12, 115, 213, 0.5); /* Sombra inicial sutil da cor */
  transition: all 0.3s ease-in-out; /* Transição suave para todas as propriedades */
  /* Outros estilos para o seu game-card, como largura, altura, preenchimento, etc. */
 
  background-color: #fff; /* Exemplo de cor de fundo */
  position: relative; /* Necessário para o efeito de brilho */
  overflow: hidden; /* Garante que o brilho não vaze */
}

/* Efeito de brilho constante na borda */
.game-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0%, #0c73d5 20%, transparent 40%);
  animation: rotateBorder 4s linear infinite;
  z-index: 0;
  opacity: 0.7; /* Suaviza o efeito */
}

@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

/* Garante que o conteúdo do card fique acima do efeito de brilho */
.game-card > * {
  position: relative;
  z-index: 1;
}

/* Efeito de sombra ao passar o mouse */
.game-card:hover {
  border-color: #0c73d5; /* Mantém a cor da borda, mas o foco é a sombra */
  box-shadow: 0 0 25px 5px rgba(12, 115, 213, 0.8); /* Sombra mais intensa e visível */
  transform: translateY(-3px); /* Leve levantamento para um efeito mais dinâmico */
}
.distribu {background:black;}
.embaixo {margin-top:40px;}