/* ===========================================
   REGRAS PARA TELA TV VERTICAL - 1080x1920
   CAÇA PALAVRAS
   =========================================== */

/* Tela TV Vertical: 1080x1920 - AUMENTO DAS LETRAS DAS CÉLULAS E AJUSTE DO TABULEIRO */
@media screen and (min-width: 1080px) and (min-height: 1920px) {
  .game-main {
    background-image: url('./assets/images/bg-caca.png')  !important;
    background-size: cover;
  }
  /* Ajustar o wrapper principal para centralizar tudo */
  .game-content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-top: -10rem !important;
    padding: 20px !important;
    width: 100% !important;
    height: auto;
  }
  
  /* Ajustar o container do tabuleiro */
  .game-board-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    flex: 1 !important;
  }
  
  /* Ajustar o tabuleiro para acomodar células maiores */
  .game-board {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 15px !important;
    padding: 15px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    display: grid !important;
    gap: 3px !important;
    user-select: none !important;
    width: fit-content !important;
    height: fit-content !important;
    justify-self: center !important;
    align-self: center !important;
    max-width: 95vw !important;
    max-height: 80vh !important;
  }
  
  /* Células com tamanho adequado para TV vertical */
  .cell {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  /* Ajustar o logo para ser proporcional */
  .iel-logo {
    height: auto !important;
    width: 600px !important;
  }
  .game-header{
    margin-top:150px;
  }
}
