/* Importando Roboto direto no CSS */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,900;1,100;1,400;1,900&display=swap");

:root {
  --topbar-h: 6.25rem;
  --wpf-sync-banner-h: 3.5rem;
  --c-topbar: #214596;
  --c-yellow: #fbba16;
  --c-green1: #1a822f;
  --c-green2: #439c39;
  --c-bg: #00130b;
  --maxw: 48.125rem;
}

/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: var(--c-bg);
  overflow-x: hidden;
}
/* box */
.title-box {
  /* opcional: cor de fallback */
  background-color: #87a43e;
  /* gradiente da esquerda (0%) para a direita (100%) */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    /* branco 0% opacidade no início */ rgba(135, 164, 62, 0) 80%,
    /* #87a43e com 0% opacidade aos 80% */ rgba(135, 164, 62, 1) 100%
      /* #87a43e com 100% opacidade no fim */
  );
  padding: 0.8rem;
  text-align: left;
  margin: 0.5rem;
  border-radius: 100px;
  box-shadow: 6px 11px 16px 5px rgba(0, 0, 0, 0.32);
}

.bg-image-box {
  width: 42.313rem;
  height: 42.313rem;

  /* responsivo */
  max-width: 100%; /* nunca passa da largura da tela */
  aspect-ratio: 1 / 1; /* mantém quadrado em telas menores */
  margin: 1.875rem 0 5rem 7rem;
}

/* NOVO LAYOUT DE CARDS - ÚNICA COLUNA */
.pools-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Card principal de cada pool */
.pool-card {
  background: linear-gradient(135deg, #0a2818 0%, #1a3d2e 100%);
  border-radius: 20px;
  border: 2px solid #2a5d3e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--c-yellow) 0%,
    var(--c-green1) 50%,
    var(--c-green2) 100%
  );
}

.pool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--c-yellow);
}

/* Linhas do card */
.pool-card-row {
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pool-card-row:last-child {
  border-bottom: none;
}

/* LINHA 1: TÍTULO DO BOLÃO */
.pool-title-row {
  background: linear-gradient(
    90deg,
    rgba(251, 186, 22, 0.1) 0%,
    rgba(26, 130, 47, 0.1) 100%
  );
  position: relative;
}

.pool-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.pool-title-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.pool-main-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.pool-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-yellow);
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.pool-meta {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Contador regressivo */
.countdown-wrapper {
  margin-top: 15px;
}

.countdown-label {
  font-size: 1.1rem;
  color: var(--c-yellow);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-timer {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-block {
  background: linear-gradient(135deg, #2a5d3e 0%, #1a3d2e 100%);
  border: 2px solid var(--c-yellow);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  min-width: 70px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.countdown-block .countdown-label {
  font-size: 0.8rem;
  color: var(--c-yellow);
  margin: 5px 0 0 0;
  font-weight: 500;
}

.countdown-urgent {
  animation: pulse-warning 2s ease-in-out infinite;
}

.countdown-critical {
  animation: pulse-critical 1s ease-in-out infinite;
}

.countdown-expired {
  background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border: 2px solid #ff4444;
}

@keyframes pulse-warning {
  0%,
  100% {
    border-color: var(--c-yellow);
  }
  50% {
    border-color: #ff8800;
  }
}

@keyframes pulse-critical {
  0%,
  100% {
    border-color: #ff4444;
  }
  50% {
    border-color: #ff0000;
  }
}

/* LINHA 2: PRÊMIOS - MAIOR E MAIS DESTACADA */
.pool-prize-row {
  background: linear-gradient(
    135deg,
    rgba(26, 130, 47, 0.2) 0%,
    rgba(67, 156, 57, 0.2) 100%
  );
  padding: 35px 30px; /* Aumentado de 25px para 35px */
  border: 2px solid rgba(251, 186, 22, 0.3); /* Borda destacada */
}

.prize-header h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-yellow);
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.prize-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.1);
  margin: 20px auto;
  width: 90%;
  overflow: hidden;
}

/* LINHA 3: APOSTAR */
.pool-bet-row {
  background: linear-gradient(
    90deg,
    rgba(67, 156, 57, 0.1) 0%,
    rgba(251, 186, 22, 0.1) 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.bet-info {
  flex: 1;
  min-width: 250px;
}

.bet-price-display {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.bet-price-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.bet-price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.bet-stats {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
}

.bet-action {
  flex-shrink: 0;
}

.bet-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-green1) 0%, var(--c-green2) 100%);
  color: #fff;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(26, 130, 47, 0.4);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bet-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.bet-button:hover::before {
  left: 100%;
}

.bet-button:hover {
  border-color: var(--c-yellow);
  box-shadow: 0 12px 30px rgba(26, 130, 47, 0.6);
  transform: scale(1.05) translateY(-2px);
}

.bet-button-text {
  font-size: 1.4rem;
  font-weight: 900;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 3px;
}

.bet-button-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
  display: block;
}

.bet-button-disabled {
  background: linear-gradient(135deg, #666 0%, #999 100%);
  color: #ccc;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  border: 3px solid #777;
  cursor: not-allowed;
}

.bet-button-disabled .bet-button-text {
  font-size: 1.4rem;
  font-weight: 900;
  display: block;
  margin-bottom: 3px;
}

.bet-button-disabled .bet-button-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
  display: block;
}

/* Mensagem quando não há pools */
.no-pools-message {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0a2818 0%, #1a3d2e 100%);
  border-radius: 20px;
  border: 2px solid #2a5d3e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.no-pools-message h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.no-pools-message p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .pools-container {
    padding: 15px;
    gap: 20px;
  }

  .pool-card-row {
    padding: 20px 20px;
  }

  /* Prêmios ainda mais destacados no mobile */
  .pool-prize-row {
    padding: 30px 20px;
  }

  .prize-header h3 {
    font-size: 2rem; /* Reduzido mas ainda grande */
  }

  .pool-main-title {
    font-size: 1.8rem;
  }

  .pool-subtitle {
    font-size: 1.2rem;
  }

  .countdown-timer {
    gap: 10px;
  }

  .countdown-block {
    min-width: 60px;
    padding: 10px 6px;
  }

  .countdown-number {
    font-size: 1.6rem;
  }

  .pool-bet-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .bet-info {
    min-width: auto;
  }

  .bet-button,
  .bet-button-disabled {
    width: 100%;
  }

  .pool-title-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Prêmios permanecem destacados mesmo em telas pequenas */
  .prize-header h3 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .pool-main-title {
    font-size: 1.5rem;
  }

  .bet-price-display {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .countdown-timer {
    justify-content: center;
  }

  .countdown-block {
    min-width: 50px;
    padding: 8px 4px;
  }

  .prize-banner {
    transform: scale(1);
  }
}

/* Telas muito pequenas (< 360px) */
@media (max-width: 360px) {
  .pools-container {
    padding: 10px;
  }
  .pool-card-row {
    padding: 15px 12px;
  }
  .pool-prize-row {
    padding: 20px 12px;
  }
  .countdown-timer {
    gap: 6px;
  }
  .countdown-block {
    min-width: 44px;
    padding: 7px 3px;
  }
  .countdown-number {
    font-size: 1.3rem;
  }
  .pool-main-title {
    font-size: 1.3rem;
  }
  .prize-header h3 {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .bet-price-value {
    font-size: 1.5rem;
  }
  .prize-banner {
    transform: none;
    width: 100%;
  }
}

/* Responsividade: seção de últimos bolões encerrados */
.last-finished-pools-section {
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #0d2e1a, #1a3d2e);
  border-radius: 12px;
  border-left: 4px solid #6c757d;
}
.last-finished-pools-section h4 {
  margin: 0 0 20px 0;
  color: #cfd8dc;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.finished-pool-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.finished-pool-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  align-items: center;
}
.finished-pool-info .pool-details h5 {
  margin: 0;
  color: #e0f2f1;
  font-size: 15px;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.finished-pools-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pool-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-view-ranking,
.btn-pdf-report {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-view-ranking {
  background: linear-gradient(135deg, #17a2b8, #138496);
}
.btn-pdf-report {
  background: linear-gradient(135deg, #dc3545, #c82333);
}
.btn-view-ranking:hover,
.btn-pdf-report:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .last-finished-pools-section {
    margin-top: 20px;
    padding: 15px;
  }
  .last-finished-pools-section h4 {
    font-size: 15px;
  }
  .finished-pool-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pool-actions {
    flex-direction: row;
    justify-content: space-between;
  }
  .btn-view-ranking,
  .btn-pdf-report {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .last-finished-pools-section h4 {
    font-size: 14px;
  }
  .finished-pool-info .pool-details h5 {
    font-size: 13px;
  }
  .pool-actions {
    flex-direction: column;
  }
}
/* MANTÉM APENAS OS ESTILOS QUE AINDA SÃO USADOS */

/* TÍTULO POOL - AINDA USADO NOS BANNERS */
.title-pool {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.title-pool h3 {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  padding: 0%;
}

/* deixa o título um pouco mais legível quando contém Rodada */
.title-pool h3 .round-label {
  font-weight: 700;
}

.date-pool {
  font-size: 0.6rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  padding: 0%;
  text-align: left;
  margin-left: 3.5rem;
}

/* Estilos para bloco de prêmio conforme pedido: destacar valores maiores e reduzir textos auxiliares */
.prize-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
}
.prize-estimated-label {
  font-size: 0.65rem;
  color: #f1f1f1;
  opacity: 0.9;
}
.prize-estimated-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffeb3b; /* destaque amarelo */
  text-shadow: 1px 1px 2px #000;
}
.prize-current-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #d9e5d8;
  text-shadow: 1px 1px 2px #000;
}
.prize-sub {
  font-size: 0.6rem;
  color: #fff;
  opacity: 0.85;
}

.adjust-padding-btn {
  padding-left: 6px;
  padding-right: 6px;
}

/* bloco lateral com logo e links */
.side-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  margin-left: 3rem; /* espaço do lado da tabela */
}

.logo-big {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* LINKS-BOX - MOVIDO PARA TOPBAR (mantido para compatibilidade) */
.links-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px; /* espaço entre logo e links */
  gap: 70px; /* espaço entre os dois links */
}

.big-link {
  font-family: "Roboto", sans-serif;
  font-weight: 900; /* Roboto Black */
  font-style: italic;
  font-size: 20px;
  color: #d9e5d8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.big-link:hover,
.big-link:active {
  font-size: 22px; /* aumenta 5% */
  color: #ffb50f;
}

.contact-info {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #d9e5d8;
  margin-top: 10px;
  text-align: center;
}

/* responsividade */

.pool-bet-price {
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 1px 1px 2px #000;
}

@media (max-width: 810px), (max-width: 650px) {
  .logo-big {
    display: none; /* some logo */
  }

  .side-links {
    margin-left: 0;
  }

  .links-box {
    margin-top: 2rem;
    gap: 2rem;
  }

  /* links ficam abaixo da tabela */
  .side-links {
    order: 2;
  }
  .bg-image-box {
    margin-bottom: 0;
  }
}

/* layout principal: tabela + bloco lateral lado a lado */
.site-main {
  display: flex;
  justify-content: center; /* centraliza no container */
  align-items: flex-start; /* alinha pelo topo */
  gap: 3rem; /* espaço entre tabela e bloco lateral */
}

/* bloco lateral */
.side-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
}

.logo-big {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
}

.links-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px; /* espaço entre logo e links */
  gap: 20px; /* espaço entre os links */
}

.big-link {
  font-family: "Roboto", sans-serif;
  font-weight: 900; /* Roboto Black */
  font-style: italic;
  font-size: 20px;
  color: #d9e5d8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.big-link:hover,
.big-link:active {
  font-size: 22px; /* aumenta 5% */
  color: #ffb50f;
}

@media (max-width: 810px) {
  .bg-image-box {
    margin-left: 2.5rem;
  }
}

@media (max-width: 650px) {
  .bg-image-box {
    width: auto;
    height: auto;
    background: none;
    margin: 0;
    margin-top: 2rem;
  }

  .table-wrapper {
    height: 25.5rem;
    width: 23.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    left: 0;
    top: 0;
    margin: auto;
  }

  .tabela-custom {
    width: 23rem;
    border-collapse: separate;
    border-spacing: 3px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    table-layout: fixed;
  }

  .tabela-custom thead th {
    background-color: #003e0a;
    color: #d9e5d8;
    font-size: 16px;
    font-weight: 900;
    padding: 12px;
    border-radius: 6px;
  }

  .tabela-custom tbody tr td:nth-child(2) {
    font-weight: 700;
    font-size: 16px;
    color: #d9e5d8;
    font-style: italic;
    text-shadow: 1px 1px 2px #000;
  }

  .date-pool {
    font-size: 0.6rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    padding: 0%;
    text-align: left;
    margin-left: 0;
  }
  .bg-image-box {
    margin-bottom: 0;
  }
}

/* responsividade */
@media (max-width: 1115px), (max-width: 810px), (max-width: 650px) {
  .site-main {
    flex-direction: column; /* tabela em cima, links embaixo */
    align-items: center;
  }

  .logo-big {
    display: none; /* esconde logo */
  }

  .links-box {
    margin-top: 2rem;
    gap: 2rem;
  }
  .bg-image-box {
    margin-bottom: 0;
  }
}

@media (max-width: 1120px) {
  .site-main {
    gap: 0;
  }
  .bg-image-box {
    margin-bottom: 0;
  }
}

@media (max-width: 650px) {
  .contact-info {
    font-size: 14px;
    margin-top: 8px;
  }
}

/* Estilos dos Banners Variáveis */
.banner-1,
.banner-2,
.banner-3,
.banner-4,
.banner-accumulated {
  padding: 12px;
  text-align: left;
  background-color: #1a822f;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Seção: Bolões Bloqueados */
.blocked-pools-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.02)
  );
  padding: 16px;
  border-radius: 12px;
}
.blocked-pools-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blocked-pool-card {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.15),
    rgba(255, 255, 255, 0.02)
  );
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.blocked-pool-header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.blocked-pool-header strong {
  font-size: 1.05rem;
  color: #ffd54f;
}
.blocked-pool-meta {
  font-size: 0.85rem;
  color: #cfd8dc;
  margin-left: 8px;
}
.toggle-games-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.blocked-games-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.blocked-game-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}
.blocked-game-teams {
  color: #e0f2f1;
  font-weight: 600;
}
.blocked-game-teams .game-vs {
  margin: 0 8px;
  color: #b0bec5;
  font-weight: 400;
}
.blocked-game-result {
  font-weight: 900;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 10px;
  border-radius: 6px;
}
.result-pending {
  color: #90a4ae;
}
.result-score {
  color: #a5d6a7;
}

@media (max-width: 768px) {
  .blocked-pool-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .blocked-game-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.banner-1 .banner-text-bold,
.banner-1 .banner-icon {
  text-align: center;
  font-size: 18px; /* Aumentado de 13px para 18px */
  margin: auto;
}

.banner-line {
  margin: 2px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.banner-icon {
  font-size: 32px; /* Aumentado de 16px para 32px - ícone bem maior */
  margin-right: 4px;
}

.banner-text-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.banner-text-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: #f0f0f0;
  line-height: 1.2;
}

.banner-accumulated .banner-text-bold {
  font-size: 17px; /* Aumentado de 12px para 17px */
}

.banner-2 .banner-text-bold,
.banner-2 .banner-icon,
.banner-3 .banner-text-bold,
.banner-3 .banner-icon,
.banner-4 .banner-text-bold,
.banner-4 .banner-icon {
  text-align: center;
  font-size: 18px; /* Aumentado de 13px para 18px */
  margin: auto;
}
.banner-2 .banner-line .banner-icon,
.banner-4 .banner-line .banner-icon {
  display: block;
  margin: auto;
}
.banner-1 .banner-text-thin,
.banner-2 .banner-text-thin,
.banner-3 .banner-text-thin,
.banner-4 .banner-text-thin {
  text-align: center;
  font-size: 15px; /* Aumentado de 11px para 15px */
  margin: auto;
}
.banner-3 .banner-text-bold {
  text-align: center;
  font-size: 18px; /* Aumentado de 13px para 18px */
}

/* Responsividade dos banners */
@media (max-width: 768px) {
  .banner-1,
  .banner-2,
  .banner-3,
  .banner-4,
  .banner-accumulated {
    padding: 8px;
    min-height: 70px;
    width: 90%; /* Mantém 90% da largura no mobile */
    margin-left: auto; /* Centralizar horizontalmente */
    margin-right: auto; /* Centralizar horizontalmente */
  }

  .banner-text-bold {
    font-size: 15px !important; /* Aumentado de 10px para 15px */
  }

  .banner-text-thin {
    font-size: 13px; /* Aumentado de 9px para 13px */
  }

  .banner-icon {
    font-size: 24px; /* Aumentado de 14px para 24px */
  }
}

@media (max-width: 480px) {
  .banner-1,
  .banner-2,
  .banner-3,
  .banner-4,
  .banner-accumulated {
    padding: 6px;
    min-height: 60px;
  }

  .banner-text-bold {
    font-size: 9px !important;
  }

  .banner-text-thin {
    font-size: 8px;
  }

  .banner-icon {
    font-size: 12px;
  }

  .banner-line {
    gap: 3px;
  }
}

/* Animação / transição para abrir/fechar a lista de jogos */
.blocked-pool-games {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease;
  opacity: 0;
  display: block; /* garante blocos empilhados para mobile */
}
.blocked-pool-games.open {
  opacity: 1;
  /* valor alto suficiente para conter várias linhas; JS ajusta inline quando abrir para comportamento perfeito */
  max-height: 1200px;
}

.toggle-games-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Ícone rotacionando */
.toggle-icon {
  display: inline-block;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-right: 8px;
  font-size: 0.95rem;
}
.toggle-games-btn[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

/* Loader pequeno */
.blocked-games-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0bec5;
}
.blocked-games-loading .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.35);
  animation: wpf-spin 800ms linear infinite;
}
@keyframes wpf-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   TOPBAR / HEADER STYLES 
   ======================================== */

/* Header fixo */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-h);
  background: linear-gradient(135deg, var(--c-topbar) 0%, #1a3972 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--c-yellow);
}

/* Logo da marca */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Ações da topbar */
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Botões outline */
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-yellow);
  color: var(--c-yellow);
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: lowercase;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  min-width: 80px;
  text-align: center;
}

.btn-outline:hover {
  background: var(--c-yellow);
  color: var(--c-topbar);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 186, 22, 0.4);
}

.btn-outline:active {
  transform: translateY(0);
}

/* Responsivo para topbar */
@media (max-width: 768px) {
  .topbar {
    padding: 0 1rem;
    height: calc(var(--topbar-h) - 10px);
  }

  .brand__logo {
    height: 50px;
  }

  .topbar__actions {
    gap: 10px;
  }

  .btn-outline {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: 70px;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 0 0.5rem;
  }

  .topbar__actions {
    gap: 5px;
  }

  .btn-outline {
    padding: 5px 8px;
    font-size: 0.7rem;
    min-width: 60px;
  }
}

/* Ajustar margem do corpo para compensar header fixo */
.site-main {
  margin-top: 0.5rem;
}

/* Banner de sincronização exibido abaixo do header fixo */
.wpf-sync-banner {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  z-index: 999; /* abaixo do header (1000) */
  background: linear-gradient(90deg, #102a43, #0b3b26);
  color: #fff;
  padding: 0 16px;
  text-align: center;
  font-weight: 700;
  height: var(--wpf-sync-banner-h);
  display: flex;
  align-items: center;
}
.wpf-sync-banner .wpf-sync-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.wpf-sync-banner .wpf-sync-inner span {
  display: inline-block;
  margin: 0 8px;
}

/* ========================================
   CONTACT INFO TOP STYLES 
   ======================================== */

/* Informação de contato no topo */
.contact-info-top {
  background: linear-gradient(
    135deg,
    rgba(251, 186, 22, 0.95) 0%,
    rgba(251, 186, 22, 0.8) 100%
  );
  color: #000;
  text-align: center;
  padding: 12px 20px;
  margin: 20px auto;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(251, 186, 22, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-label {
  margin-right: 8px;
  font-weight: 700;
}

.contact-number {
  font-weight: 900;
  letter-spacing: 1px;
}

/* Responsivo para contact-info-top */
@media (max-width: 768px) {
  .contact-info-top {
    font-size: 1rem;
    padding: 10px 16px;
    max-width: 280px;
    margin: 15px auto;
  }
  .wpf-sync-banner {
    position: relative;
    top: 100px;
  }
}

@media (max-width: 480px) {
  .contact-info-top {
    font-size: 0.9rem;
    padding: 8px 12px;
    max-width: 260px;
    margin: 10px auto;
  }
  .wpf-sync-banner {
    position: relative;
    top: 100px;
  }
}
