/* ====== SE��O JOGOS ====== */
.jogos-carousel {
  overflow: hidden;
  /* j� tinha, refor�a o corte */
  margin: 0 auto !important;
  /* evita puxar pros lados */
  padding: 20px 24px !important;
  /* mais responsivo */
  max-width: 1600px;
  /* opcional: d� "miolo" */
  width: 100%;
  box-sizing: border-box;
}

.jogos-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.jogos-bg-text {
  position: absolute;
  top: 440px;
  left: -20%;
  font-size: 400px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transition: transform 0.2s ease-out;
  z-index: 0;
  font-family: 'Teko', sans-serif;
}

.jogos-carousel>*:not(.jogos-bg-text) {
  position: relative;
  z-index: 2;
}

.jogos-title {
  font-size: 28px;
  margin-top: 30px;
  color: #000;
  display: flex;
  gap: 6px;
}

/* T�tulo */
.jogos-title .bold {
  color: #000 !important;
  font-weight: 800 !important;
}

.jogos-title .regular {
  color: #bf0411 !important;
  font-weight: 800 !important;
}

/* DarkMode: PR�XIMOS vira branco, JOGOS continua #bf0411 */
body.dark-mode .jogos-title .bold,
body.darkmode .jogos-title .bold,
body.dark .jogos-title .bold,
html.dark .jogos-title .bold,
[data-theme="dark"] .jogos-title .bold {
  color: #fff !important;
}

.jogos-link {
  font-size: 14px;
  margin-top: 40px;
  margin-right: 25px;
  text-decoration: none;
  color: #bf0411;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.arrow-jogos {
  background: #bf0411;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 30px;
  border-radius: 20%;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-jogos:hover {
  background: #83040c;
  color: white;
}

.jogos-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 40px !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.jogos-track::-webkit-scrollbar {
  display: none;
}

.jogos-track.is-dragging {
  cursor: grabbing;
}

/* ====== ANIMA��O HOVER CARD ====== */
.jogo-card {
  transition: transform 0.25s ease;
}

.jogo-card:hover {
  transform: scale(1.05);
}

/* ====== ESTRUTURA CENTRAL (placar + penaltis) ====== */
.placar-centro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.penaltis-score {
  display: flex;
  gap: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  justify-content: center;
}

/* ====== CARD AO VIVO ====== */



.jogo-card.aovivo {
  margin-top: 30px;
  background: #ffffff;
  color: #000;
  border-radius: 12px;
  box-shadow: 0px 0px 28px 1px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
  height: 374px;
  flex: 0 0 auto;
}

.jogo-card.aovivo .jogo-topo {
  background: #bf0411;
  color: #fff;
  padding: 16px;
}

.jogo-card.aovivo .categoria-jogo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  gap: 4px;
}

.jogo-card.aovivo .oferecimento {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.jogo-card.aovivo .oferecimento img {
  height: 16px;
}

.jogo-card.aovivo .placar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 12px;
  gap: 10px;
}

.jogo-card.aovivo .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 80px;
}

.jogo-card.aovivo .time img {
  width: 50px;
  height: auto;
}

.jogo-card.aovivo .nome-time {
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.jogo-card.aovivo .score {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.jogo-card.aovivo .timer-ao-vivo {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.jogo-card.aovivo .jogo-info {
  font-size: 14px;
  line-height: 1.5;
  padding: 16px;
  background: #fff;
  color: #000;
}

.jogo-card.aovivo .loader {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  animation: animloader 1s ease-in-out infinite;
}

@keyframes animloader {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.jogo-card.aovivo .bnt-jogo-aovivo {
  margin: 0 16px;
  margin-top: 8px;
  padding: 12px 20px;
  text-align: center;
  border: none;
  border-radius: 8px;
  background: #bf0411;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.jogo-card.aovivo .bnt-jogo-aovivo:hover {
  background: #000;
  color: #fff;
}

.jogo-card.aovivo .jogo-transmissao {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 12px;
  background: #fff !important;
}

.jogo-card.aovivo .jogo-transmissao img {
  width: 24px;
  height: auto;
}

/* ====== CARD PR�XIMO ====== */
.jogo-card.proximo {
  margin-top: 30px;
  background: #ffffff;
  color: #000;
  border-radius: 12px;
  box-shadow: 0px 0px 28px 1px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
  flex: 0 0 auto;
}

.jogo-card.proximo .jogo-topo {
  background: #bf0411;
  color: #fff;
  padding: 16px;
}

.jogo-card.proximo .categoria-jogo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  gap: 4px;
}

.jogo-card.proximo .oferecimento {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.jogo-card.proximo .oferecimento img {
  height: 16px;
}

.jogo-card.proximo .placar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 12px;
  gap: 10px;
}

.jogo-card.proximo .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 80px;
}

.jogo-card.proximo .time img {
  width: 50px;
  height: auto;
}

.jogo-card.proximo .nome-time {
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.jogo-card.proximo .score {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.jogo-card.proximo .jogo-info {
  font-size: 14px;
  line-height: 1.5;
  padding: 16px;
  background: #fff;
  color: #000;
}

.jogo-card.proximo .bnt-jogo-premio {
  margin: 0 16px;
  margin-top: 8px;
  padding: 12px 20px;
  text-align: center;
  border: none;
  border-radius: 8px;
  background: #bf0411;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.jogo-card.proximo .bnt-jogo-premio:hover {
  background: #000;
  color: #fff;
}

.jogo-card.proximo .btn-transparente-ingresso {
  margin: 0 16px;
  margin-top: 8px;
  padding: 10px 20px;
  text-align: center;
  border: 2px solid #000;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.jogo-card.proximo .btn-transparente-ingresso:hover {
  background: #000;
  color: #fff;
}

.jogo-card.proximo .jogo-transmissao {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 12px;
  background: #fff;
}

.jogo-card.proximo .jogo-transmissao img {
  width: 24px;
  height: auto;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: space-around;
  font-weight: bold;
  background: #000;
  padding: 12px;
  border-radius: 12px;
  margin: 10px 16px;
  color: #fff;
  gap: 10px;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
}

.countdown span {
  font-size: 22px;
}

.countdown small {
  font-size: 10px;
  margin-top: 4px;
  color: #fff;
}

/* ====== CARD FINALIZADO ====== */
.jogo-card.finalizado.passado {
  margin-top: 30px;
  background: #d9d9d9;
  box-shadow: 0px 0px 28px 1px rgba(0, 0, 0, 0.2);
  color: #000;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  height: 374px;
  flex: 0 0 auto;
}

.jogo-card.finalizado.passado .jogo-topo {
  padding: 16px;
  background: none;
}

.categoria-jogo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.oferecimento {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.oferecimento img {
  height: 16px;
}

.pixbet {
  height: 16px;
  filter: contrast(175%) brightness(3%);
}

.placar-finalizado {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 10px;
  gap: 10px;
  margin-top: 10px;
}

.time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 80px;
}

.time img {
  width: 50px;
  height: auto;
}

.nome-time {
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

.score {
  font-size: 28px;
  font-weight: bold;
}

.jogo-card .nome-time {
  display: block;
  width: 100%;
  max-width: 82px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  font-size: clamp(10px, 2.8vw, 12px);
}

/* ====== SCORE: escala por d�gitos (ganhar das regras .jogo-card.* .score) ====== */

/* padr�o (finalizado / geral) */
.score.len-1 {
  font-size: 28px;
}

.score.len-2 {
  font-size: 26px;
}

.score.len-3 {
  font-size: 19px;
}

.score.len-4 {
  font-size: 16px;
}

/* PLACAR CENTRO */
.placar-centro .score.len-1 {
  font-size: 28px;
}

.placar-centro .score.len-2 {
  font-size: 26px;
}

.placar-centro .score.len-3 {
  font-size: 19px;
}

.placar-centro .score.len-4 {
  font-size: 16px;
}

/* AO VIVO */
.jogo-card.aovivo .score.len-1 {
  font-size: 28px;
}

.jogo-card.aovivo .score.len-2 {
  font-size: 26px;
}

.jogo-card.aovivo .score.len-3 {
  font-size: 19px;
}

.jogo-card.aovivo .score.len-4 {
  font-size: 16px;
}

/* PR�XIMO */
.jogo-card.proximo .score.len-1 {
  font-size: 28px;
}

.jogo-card.proximo .score.len-2 {
  font-size: 26px;
}

.jogo-card.proximo .score.len-3 {
  font-size: 19px;
}

.jogo-card.proximo .score.len-4 {
  font-size: 16px;
}

/* FINALIZADO (se quiser garantir 100%) */
.jogo-card.finalizado.passado .score.len-1 {
  font-size: 28px;
}

.jogo-card.finalizado.passado .score.len-2 {
  font-size: 26px;
}

.jogo-card.finalizado.passado .score.len-3 {
  font-size: 19px;
}

.jogo-card.finalizado.passado .score.len-4 {
  font-size: 16px;
}

/* Shortcode placar simplificado: escala por d�gitos */
.gsk-ps-score.len-1 .gsk-ps-num {
  font-size: clamp(26px, 6vw, 40px) !important;
}

.gsk-ps-score.len-2 .gsk-ps-num {
  font-size: 26px !important;
}

.gsk-ps-score.len-3 .gsk-ps-num {
  font-size: 19px !important;
}

.gsk-ps-score.len-4 .gsk-ps-num {
  font-size: 16px !important;
}

.jogo-info-finalizado {
  font-size: 14px;
  line-height: 1.5;
  padding: 16px;
  background: #d9d9d9;
  color: #000;
}

.btn-transparente {
  margin: 0 16px;
  margin-top: 8px;
  padding: 10px 20px;
  text-align: center;
  border: 2px solid #000;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.btn-transparente:hover {
  background: #000;
  color: #fff;
}

.jogo-card.finalizado.passado .jogo-transmissao {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 12px;
  background: #d9d9d9;
}

.jogo-transmissao img {
  width: 24px;
  height: auto;
}

/* filtro */
.filtro-jogos-wrapper {
  position: relative;
}

/* ? deixa as 3 linhas do jogo bem mais juntinhas */
.jogo-info p,
.jogo-info-finalizado p {
  margin: 0 0 4px !important;
  line-height: 1.2 !important;
}

.jogo-info p:last-child,
.jogo-info-finalizado p:last-child {
  margin-bottom: 0 !important;
}

/* ? garante 16px de altura SEM deformar */
.oferecimento img,
.pixbet {
  height: 16px !important;
  max-height: 16px !important;
  width: auto !important;
  max-width: 120px;
  /* evita logo gigante */
  object-fit: contain !important;
  display: inline-block;
}

/* remove marca d'�gua */
.jogos-bg-text {
  display: none !important;
}

.jogos-track {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  cursor: grab;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  overscroll-behavior-x: contain;
}

/* enquanto arrasta */
.jogos-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

/* Hover padr�o dos CTAs */
.bnt-jogo-aovivo:hover,
.btn-transparente:hover,
.bnt-jogo-premio:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* Centraliza o �cone dentro do bot�o */
.arrow-jogos {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 40px;
  /* garante �rea quadrada */
  height: 40px;
  padding: 0 !important;
}

.arrow-jogos i {
  font-size: 16px;
  line-height: 1;
}

/* Oferecimento branco somente em AO VIVO e PR�XIMO */
.jogo-card.aovivo .oferecimento img,
.jogo-card.proximo .oferecimento img {
  filter: brightness(0) invert(1) !important;
}

/* css para visitantes online post jogos */
.visitantes-online {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.visitantes-online strong {
  font-weight: 700;
  margin-left: 4px;
}

/* =========================
   CALEND�RIO COMPLETO (GSK)
   ========================= */

.gsk-calendar-filterbar {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 24px 0;
  box-sizing: border-box;
}

.gsk-calendar-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gsk-calendar-filter-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gsk-calendar-filter-label {
  font-size: 13px;
  color: #7e7e7e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.gsk-calendar-filter-label i {
  color: #bf0411;
  font-size: 14px;
}

.gsk-calendar-select {
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  font-size: 14px;
  outline: none;
}

/* Header vermelho full-width */
.gsk-calendar-top {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(135deg, #8f000d 0%, #bf0411 45%, #d90416 100%);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 14px;
  padding: 18px 0 22px;
}

.gsk-calendar-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 40px 40px;
  opacity: .25;
  pointer-events: none;
}

.gsk-calendar-top-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.gsk-calendar-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 980px) {
  .gsk-calendar-top-grid {
    grid-template-columns: 1fr;
  }
}

.gsk-cal-box {
  border-radius: 14px;
}

/* ========================================================
   MODERNIZAÇÃO DOS TÍTULOS DOS CABEÇALHOS DO CALENDÁRIO
   ======================================================== */

.gsk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 16px;
  gap: 16px;
}

.gsk-cal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Ícone dentro de quadrado vermelho translúcido com blur leve */
.gsk-cal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.gsk-cal-header:hover .gsk-cal-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Título */
.gsk-cal-title {
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  font-size: 18px !important;
  margin: 0 !important;
  text-transform: uppercase;
  font-family: inherit;
}

/* Botão Ver todos */
.gsk-cal-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gsk-cal-viewall i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.gsk-cal-viewall:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gsk-cal-viewall:hover i {
  transform: translateX(4px);
}

/* Garante compatibilidade responsiva em telas mobile */
@media (max-width: 480px) {
  .gsk-cal-header {
    gap: 8px;
  }
  .gsk-cal-title {
    font-size: 15px !important;
  }
  .gsk-cal-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .gsk-cal-viewall {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* "�ltimos resultados" (3 mini-cards em linha) */
.gsk-cal-last {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gsk-result-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  min-width: 240px;
  flex: 1 1 240px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.gsk-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.28) !important;
  border-color: rgba(191, 4, 17, 0.15);
}

.gsk-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.gsk-result-date {
  font-size: 12px;
  opacity: .75;
}

.gsk-result-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.gsk-result-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gsk-mini-team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gsk-mini-team img {
  width: 34px;
  height: auto;
  display: block;
}

.gsk-mini-vs {
  font-weight: 900;
  opacity: .65;
  font-size: 12px;
}

.gsk-mini-score {
  font-size: 22px;
  font-weight: 900;
  color: #000;
}

/* "Pr�ximas partidas" (2 cards maiores) */
.gsk-cal-next {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.gsk-next-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px 14px;
  width: 280px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.gsk-next-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.28) !important;
  border-color: rgba(191, 4, 17, 0.15);
}

/* Flash de destaque ao rolar e focar no jogo correspondente (usando pseudo-elemento para preservar o background nativo) */
.jogo-card.gsk-highlight-flash {
  position: relative;
}

.jogo-card.gsk-highlight-flash::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
  animation: gskHighlightOverlay 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes gskHighlightOverlay {
  0% {
    background-color: rgba(191, 4, 17, 0);
    box-shadow: 0 0 0 0px transparent;
  }
  30% {
    background-color: rgba(191, 4, 17, 0.08);
    box-shadow: 0 0 0 6px rgba(191, 4, 17, 0.4);
  }
  70% {
    background-color: rgba(191, 4, 17, 0.04);
    box-shadow: 0 0 0 12px rgba(191, 4, 17, 0.15);
  }
  100% {
    background-color: rgba(191, 4, 17, 0);
    box-shadow: 0 0 0 0px transparent;
  }
}

.gsk-next-info {
  text-align: center;
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.gsk-next-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 10px;
}

.gsk-next-logos img {
  width: 44px;
  height: auto;
  display: block;
}

.gsk-next-countdown {
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  gap: 10px;
}

.gsk-next-countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}

.gsk-next-countdown small {
  font-size: 10px;
  opacity: .9;
}

/* Corpo do calend�rio (meses) */
/* Corpo do calend�rio: full width com miolo responsivo */
.gsk-calendar-body {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 22px 0 46px;
  box-sizing: border-box;
}

/* o miolo continua limitado e centralizado */
.gsk-calendar-body-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .gsk-calendar-body-inner {
    padding: 0 14px;
  }
}

.gsk-month-row {
  margin-top: 26px;
}

.gsk-month-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  justify-content: flex-start !important;
}

.gsk-month-title {
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d9d9d9;
  line-height: 1;
}

.gsk-month-year {
  font-size: 44px;
  font-weight: 900;
  color: #d9d9d9;
  opacity: .9;
  line-height: 1;
}

.gsk-month-badge {
  margin-left: 6px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 10px;
  line-height: 1;
}

/* Badge status do filtro */
.gsk-badge-aovivo {
  background: #bf0411;
  color: #fff;
}

.gsk-badge-proximo {
  background: #000;
  color: #fff;
}

.gsk-badge-finalizado {
  background: #d9d9d9;
  color: #000;
}

/* Onde os cards v�o morar por m�s */
.gsk-month-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Esconde a "fonte" depois que os cards forem movidos */
.gsk-calendar-source {
  display: none;
}

/* Pr�ximas partidas: ocupar 100% do box */
.gsk-cal-next {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  justify-content: stretch !important;
  align-items: stretch;
}

.gsk-next-card {
  width: 100% !important;
  box-sizing: border-box;
}

@media (max-width: 980px) {
  .gsk-cal-next {
    grid-template-columns: 1fr;
  }
}

/* Month head: responsivo sem estourar */
.gsk-month-head {
  flex-wrap: wrap;
  row-gap: 10px;
}

@media (max-width: 680px) {

  .gsk-month-title,
  .gsk-month-year {
    font-size: 28px;
  }

  .gsk-month-badge {
    margin-left: 0;
    width: fit-content;
  }
}

/* Bloco do shortcode acima do calend�rio */
.gsk-calendar-feature {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 18px 0 8px;
  box-sizing: border-box;
}

.gsk-calendar-feature-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.gsk-calendar-feature-title {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  margin: 0 0 6px;
}

.gsk-calendar-feature-sub {
  font-size: 16px;
  color: #7e7e7e;
  font-weight: 600;
  margin: 0 0 14px;
}

.gsk-calendar-feature-slot {
  width: 100%;
}

/* Carrossel por m�s */
.gsk-month-row {
  position: relative;
}

.gsk-month-arrows {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 0;
}

.gsk-month-arrow {
  background: #bf0411;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 30px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  padding-bottom: 5px;
}

.gsk-month-arrow:hover {
  background: #83040c;
}

@media (max-width: 680px) {
  .gsk-month-arrows {
    display: none;
  }

  /* no mobile, swipe resolve */
}

/* vira faixa horizontal */
.gsk-month-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: auto;
  overscroll-behavior-x: contain;
}

.gsk-month-cards::-webkit-scrollbar {
  display: none;
}

.gsk-month-cards.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.gsk-month-cards>.jogo-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  /* mant�m o tamanho do card */
}

@media (max-width: 680px) {
  .gsk-month-head {
    align-items: flex-start;
  }
}

/* Shortcode: placar finalizado (mini-card) */
.gsk-finalizado-mini {
  background: #f3f5f8;
  border-radius: 8px;
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
}

.gsk-finalizado-mini__grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto auto 1fr;
  align-items: center;
  gap: 10px;
}

.gsk-finalizado-mini__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gsk-finalizado-mini__name.is-home {
  text-align: right;
}

.gsk-finalizado-mini__name.is-away {
  text-align: left;
}

.gsk-finalizado-mini__logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.gsk-finalizado-mini__score {
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
}

.gsk-finalizado-mini__sep {
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
}

.gsk-finalizado-mini__cta {
  margin-top: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;

  background: transparent;
  color: #000;
  border: 2px solid #000;

  transition: background .2s ease, color .2s ease;
}

.gsk-finalizado-mini__cta:hover {
  background: #000;
  color: #fff;
}

/* Responsivo */
/* Responsivo (ajustado) */
@media (max-width: 680px) {

  .gsk-finalizado-mini__grid {
    display: grid;
    grid-template-columns: 40px auto auto auto 40px;
    /* logo | gol | : | gol | logo */
    grid-template-rows: auto auto;
    /* linha 1: placar / linha 2: nomes */
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    row-gap: 6px;
  }

  /* Linha 1: logos e placar */
  .gsk-finalizado-mini__logo.is-home {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .gsk-finalizado-mini__score.is-home {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .gsk-finalizado-mini__sep {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
  }

  .gsk-finalizado-mini__score.is-away {
    grid-column: 4;
    grid-row: 1;
    justify-self: center;
  }

  .gsk-finalizado-mini__logo.is-away {
    grid-column: 5;
    grid-row: 1;
    justify-self: center;
  }

  /* Linha 2: nomes embaixo das logos */
  .gsk-finalizado-mini__name.is-home {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    max-width: 68px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
  }

  .gsk-finalizado-mini__name.is-away {
    grid-column: 5;
    grid-row: 2;
    justify-self: center;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    max-width: 68px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
  }

  /* Tamanhos no mobile */
  .gsk-finalizado-mini__logo img {
    width: 30px;
    height: 30px;
  }

  .gsk-finalizado-mini__score {
    font-size: 34px;
    line-height: 1;
  }

  .gsk-finalizado-mini__sep {
    font-size: 26px;
    line-height: 1;
  }
}

/* =========================
   RESPONSIVO: carousel-arrows
   ========================= */
@media (max-width: 680px) {

  /* header fica mais comportado */
  .jogos-carousel-header {
    align-items: stretch;
  }

  /* bloco inteiro vira "linhas" previs�veis */
  .carousel-arrows {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  /* filtros sempre ocupam a linha inteira */
  .carousel-arrows .filtro-jogos-wrapper {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* selects + date bonitinhos, sem margens gigantes */
  .carousel-arrows .filtro-jogos-wrapper .jogos-link,
  .carousel-arrows .filtro-jogos-wrapper .gsk-date-single {
    width: 100%;
    margin: 0 !important;
    height: 44px;
    font-size: 16px;
    /* melhor toque */
    box-sizing: border-box;
  }

  /* linha de baixo: link ocupa o espa�o, setas ficam coladas � direita */
  .carousel-arrows>a.jogos-link {
    flex: 1 1 auto;
    margin: 0 !important;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    white-space: nowrap;
  }

  /* setas n�o podem "cair" por causa de margin-top */
  .arrow-jogos {
    margin-top: 0 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    flex: 0 0 auto;
  }

  /* se quiser: garante que as setas fiquem sempre no fim da linha */
  .arrow-jogos.left {
    margin-left: auto;
  }
}

/* Mobile: esconde as setas (swipe/arrastar resolve) */
@media (max-width: 680px) {

  .arrow-jogos.left,
  .arrow-jogos.right {
    display: none !important;
  }

  /* opcional: tira qualquer margem que existia "pra setas" */
  .carousel-arrows {
    gap: 12px;
    /* mant�m o respiro s� do link/filtros */
  }
}

/* ==========================================
   Shortcode: placar simplificado (branco / transparente)
   ========================================== */

.gsk-placar-simplificado {
  background: transparent;
  color: #fff;
  width: 100%;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  gap: clamp(12px, 2vw, 28px);
  padding: clamp(6px, 1.2vw, 14px) 0;
}

/* times (desktop) */
.gsk-ps-team {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  min-width: 0;
}

.gsk-ps-team.is-home {
  justify-content: flex-end;
}

.gsk-ps-team.is-away {
  justify-content: flex-start;
}

.gsk-ps-logo {
  width: clamp(34px, 3.2vw, 64px);
  height: clamp(34px, 3.2vw, 64px);
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.gsk-ps-name {
  color: #fff;
  font-weight: 900;
  font-size: clamp(18px, 2.8vw, 56px);
  line-height: 1;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  max-width: min(520px, 40vw);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.gsk-ps-score {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(10px, 1.4vw, 18px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.gsk-ps-num {
  font-size: clamp(28px, 3.4vw, 70px);
  line-height: 1;
  color: #fff;
}

.gsk-ps-sep {
  font-size: clamp(22px, 3vw, 60px);
  line-height: 1;
  opacity: .95;
  color: #fff;
}

@media (min-width: 1200px) {
  .gsk-ps-name {
    font-size: 38px;
  }

  .gsk-ps-num {
    font-size: 52px;
  }

  .gsk-ps-sep {
    font-size: 44px;
  }
}

/* =========================
   MOBILE: nomes embaixo das logos (fixo e alinhado)
   ========================= */
@media (max-width: 680px) {

  .gsk-placar-simplificado {
    display: grid;
    grid-template-columns: 52px auto auto auto 52px;
    /* time | placar | time */
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    row-gap: 6px;
    padding: 8px 0;
  }

  /* Times viram "coluna" e ocupam as 2 linhas (logo em cima, nome embaixo) */
  .gsk-ps-team {
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .gsk-ps-team.is-home {
    grid-column: 1;
    grid-row: 1 / 3;
    /* pega as duas linhas */
  }

  .gsk-ps-team.is-away {
    grid-column: 5;
    grid-row: 1 / 3;
    /* pega as duas linhas */
  }

  /* Placar central fica na linha 1 */
  .gsk-ps-score {
    grid-column: 2 / 5;
    grid-row: 1;
    justify-self: center;
  }

  /* For�a logo em cima e nome embaixo, independentemente da ordem no HTML */
  .gsk-ps-logo {
    order: 1;
    width: 30px;
    height: 30px;
  }

  .gsk-ps-name {
    order: 2;
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    max-width: 78px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    padding: 0;
    letter-spacing: .3px;
    text-transform: uppercase;
  }

  /* Placar */
  .gsk-ps-num {
    font-size: 34px;
    line-height: 1;
  }

  .gsk-ps-sep {
    font-size: 26px;
    line-height: 1;
  }
}

/* ===========================
   GSK - GOOL Overlay + Confete
   =========================== */

.gsk-goal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(3px);
}

.gsk-goal-overlay.is-on {
  display: flex;
  animation: gskGoalFadeIn .18s ease-out;
}

.gsk-goal-box {
  position: relative;
  text-align: center;
  padding: 26px 24px;
  border-radius: 18px;
  color: #fff;

  /* base (fallback) */
  background: #bf0411;

  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
  transform: scale(.9);
  animation: gskGoalPop .45s cubic-bezier(.2, .9, .2, 1);
  overflow: hidden;
  min-width: min(520px, 92vw);
}

/* Camada 1: gradiente animado principal */
.gsk-goal-box::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: linear-gradient(-60deg, var(--gsk-goal-bg, #bf0411) 50%, var(--gsk-goal-sec, #000) 50%);
  opacity: .95;
  transform: translateX(-25%);
  animation: gskGoalSlide 3.2s ease-in-out infinite alternate;
  z-index: 0;
}

/* Camada 2: segunda "onda" pra dar profundidade */
.gsk-goal-box::after {
  content: "";
  position: absolute;
  inset: -45%;
  background-image: linear-gradient(-60deg, rgba(0, 0, 0, .85) 50%, var(--gsk-goal-bg, #bf0411) 50%);
  opacity: .35;
  transform: translateX(25%);
  animation: gskGoalSlide 4.6s ease-in-out infinite alternate-reverse;
  z-index: 0;
}

/* garante que o texto fique por cima das camadas */
.gsk-goal-title,
.gsk-goal-sub {
  position: relative;
  z-index: 1;
}

/* anima��o tipo a tua (.bg) */
@keyframes gskGoalSlide {
  0% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(25%);
  }
}

.gsk-goal-box .gsk-goal-title::after {
  content: "";
  position: absolute;
  inset: -10px -20px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .18), transparent 55%);
  opacity: .65;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: gskGoalGlow 1.2s ease-in-out infinite alternate;
}

@keyframes gskGoalGlow {
  from {
    transform: translateX(-6px);
    opacity: .45;
  }

  to {
    transform: translateX(6px);
    opacity: .8;
  }
}

.gsk-goal-title {
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(36px, 7vw, 78px);
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .45);

  animation: gskGoalShake 0.6s ease-in-out infinite alternate;
}

@keyframes gskGoalShake {
  0% {
    transform: translateX(-4px) scale(1);
  }

  25% {
    transform: translateX(4px) scale(1.05);
  }

  50% {
    transform: translateX(-3px) scale(1.08);
  }

  75% {
    transform: translateX(3px) scale(1.05);
  }

  100% {
    transform: translateX(0px) scale(1);
  }
}

.gsk-goal-sub {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  opacity: .92;
}

/* Confete (camada por cima) */
.gsk-confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 100000;
  /* acima do overlay */
  pointer-events: none;
  overflow: hidden;
}

.gsk-confetti {
  position: absolute;
  top: -12px;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  will-change: transform, opacity;
  animation: gskConfettiFall var(--dur, 1200ms) linear forwards;
}

@keyframes gskGoalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gskGoalPop {
  0% {
    transform: scale(.74) rotate(-1deg);
  }

  60% {
    transform: scale(1.03) rotate(1deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes gskConfettiFall {
  0% {
    transform: translate3d(var(--x, 0px), 0, 0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate3d(var(--x, 0px), calc(100vh + 60px), 0) rotate(var(--rot, 540deg));
    opacity: 0.98;
  }
}

/* ===========================
   Switch Som do Gol (responsivo)
   =========================== */

.gsk-som-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
  /* evita quebrar "Ativar som" em 2 linhas */
}

.gsk-som-label {
  font-size: 14px;
  font-weight: 800;
  color: #bf0411;
  margin: 0;
  /* remove margin-right fixo (mobile agradece) */
  transition: color .25s ease, transform .25s ease;
}

.gsk-som-label.is-active {
  color: #bf0411;
  margin-right: 10px;
  transform: scale(1.05);
}

.gsk-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex: 0 0 auto;
}

.gsk-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gsk-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: .3s;
}

.gsk-slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: .3s;
}

.gsk-switch input:checked+.gsk-slider {
  background: #bf0411;
}

.gsk-switch input:checked+.gsk-slider:before {
  transform: translateX(22px);
}

/* Dark mode */
body.dark-mode .gsk-som-label {
  color: #fff;
}

/* ===========================
   Mobile ajustes (toque + espa�o)
   =========================== */
@media (max-width: 680px) {

  .gsk-som-toggle {
    gap: 6px;
    margin-right: 8px;
  }

  .gsk-som-label {
    font-size: 12px;
    /* menor pra caber com o select */
    letter-spacing: .2px;
  }

  .gsk-switch {
    width: 40px;
    /* menor */
    height: 22px;
  }

  .gsk-slider {
    border-radius: 22px;
  }

  .gsk-slider:before {
    width: 16px;
    height: 16px;
    left: 3px;
    bottom: 3px;
  }

  .gsk-switch input:checked+.gsk-slider:before {
    transform: translateX(18px);
    /* ajusta o "pulo" pro switch menor */
  }
}


/* =========================================================
   GSK AJUSTE FINAL - setas mobile nas extremidades + filtro real
   ========================================================= */
.jogo-card.is-hidden {
  display: none !important;
}

.gsk-mobile-card-arrows {
  display: none;
}

@media (max-width:680px) {

  /* Mantém o design dos filtros intacto. Ajusta só as setas mobile. */
  .gsk-mobile-card-arrows {
    order: 98 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 6px 0 10px !important;
    padding: 0 !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 30 !important;
    box-sizing: border-box !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos.left {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos.right {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    margin-top: 0 !important;
    border-radius: 20% !important;
    border: 0 !important;
    background: #bf0411 !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: .3s !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18) !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos:hover {
    background: #83040c !important;
    color: #fff !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos i {
    font-size: 16px !important;
    line-height: 1 !important;
  }

  /* Garante que as setas da toolbar desktop continuem escondidas no mobile. */
  .gsk-jogos-toolbar .carousel-arrows {
    display: none !important;
  }
}


/* =========================================================
   GSK PATCH REAL - setas mobile nas extremidades + filtro robusto
   ========================================================= */
.jogo-card.is-hidden {
  display: none !important;
}

@media (max-width:680px) {

  .jogos-carousel-header>.gsk-mobile-card-arrows,
  .gsk-mobile-card-arrows {
    order: 98 !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 6px 0 10px !important;
    padding: 0 !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 60 !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos.left {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos.right {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    margin-top: 0 !important;
    border-radius: 20% !important;
    border: 0 !important;
    background: #bf0411 !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: .3s !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos:hover {
    background: #83040c !important;
    color: #fff !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos i {
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .gsk-jogos-toolbar .carousel-arrows {
    display: none !important;
  }
}



/* ===== GSK UNIFIED FILTER UX (DESKTOP + MOBILE) ===== */
.gsk-jogos-toolbar {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.gsk-filtros-accordion {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .25s ease, opacity .2s ease;
}

.gsk-filtros-accordion.is-open {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
}

.gsk-filtros-accordion .filtro-jogos-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.gsk-filtros-accordion .jogos-link,
.gsk-filtros-accordion select,
.gsk-filtros-accordion .gsk-calendar-select {
  height: 44px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width:680px) {
  .gsk-filtros-accordion .filtro-jogos-wrapper {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .gsk-filtros-accordion .jogos-link,
  .gsk-filtros-accordion select,
  .gsk-filtros-accordion .gsk-calendar-select {
    width: 100% !important;
  }
}



/* =========================================================
   GSK AJUSTE PONTUAL - toolbar/filtros sem alterar lógica
   ========================================================= */

/* Desktop: toolbar alinhada no final */
@media (min-width: 681px) {
  .gsk-jogos-toolbar {
    justify-content: flex-end !important;
    margin-left: auto !important;
    width: auto !important;
  }

  .gsk-filtros-accordion .filtro-jogos-wrapper,
  .jogos-carousel-header>.gsk-filtros-accordion .filtro-jogos-wrapper {
    justify-content: flex-end !important;
  }
}

/* Mobile: visual em uma linha semelhante à imagem enviada */
@media (max-width: 680px) {
  .jogos-link {
    margin-top: 0 !important;
  }

  .gsk-jogos-toolbar {
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .gsk-toolbar-som {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  .gsk-filtros-toggle {
    margin: 0 !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border-radius: 20% !important;
  }

  .gsk-mobile-card-arrows {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    left: auto !important;
    transform: none !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos {
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos.left,
  .gsk-mobile-card-arrows .arrow-jogos.right {
    margin: 0 !important;
  }
}

/* ===== GSK FIX FINAL: toolbar mobile igual imagem ===== */

@media (max-width: 680px) {

  .jogos-carousel-header {
    align-items: center !important;
    justify-content: center !important;
  }

  .gsk-jogos-toolbar {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }

  .gsk-mobile-card-arrows {
    display: flex !important;
    position: static !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    left: auto !important;
    transform: none !important;
    order: initial !important;
  }

  .gsk-mobile-card-arrows-left {
    order: 1 !important;
  }

  .gsk-toolbar-som {
    order: 2 !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .gsk-filtros-toggle {
    order: 3 !important;
    margin: 0 !important;
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 4px !important;
  }

  .gsk-mobile-card-arrows-right {
    order: 4 !important;
  }

  .gsk-mobile-card-arrows .arrow-jogos {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 8px !important;
  }

  .gsk-desktop-arrows,
  .gsk-jogos-toolbar .carousel-arrows {
    display: none !important;
  }

  .jogos-link {
    margin-top: 0 !important;
  }
}

/* Desktop alinhado no fim */
@media (min-width: 681px) {

  .gsk-mobile-card-arrows {
    display: none !important;
  }

  .gsk-jogos-toolbar {
    justify-content: flex-end !important;
    align-items: center !important;
    margin-left: auto !important;
    width: auto !important;
  }

  .gsk-filtros-accordion .filtro-jogos-wrapper,
  .jogos-carousel-header>.gsk-filtros-accordion .filtro-jogos-wrapper {
    justify-content: flex-end !important;
  }
}

/* ===== GSK FIX DESKTOP ALIGN REAL ===== */

@media (min-width: 681px) {

  .jogos-carousel-header {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
  }

  .jogos-title {
    margin-top: 30px !important;
    margin-bottom: 0 !important;
    flex: 0 0 auto !important;
  }

  .gsk-jogos-toolbar {
    margin-top: 30px !important;
    margin-left: auto !important;
    width: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
  }

  .gsk-toolbar-som,
  .gsk-filtros-toggle,
  .gsk-desktop-arrows {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .gsk-desktop-arrows {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .gsk-desktop-arrows .arrow-jogos {
    margin-top: 0 !important;
  }

  .gsk-filtros-accordion {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .gsk-filtros-accordion .filtro-jogos-wrapper {
    justify-content: flex-end !important;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .gsk-filtros-accordion.is-open {
    margin-top: 12px !important;
  }
}

/* Desktop */
@media (min-width: 681px) {
  .gsk-filtros-accordion.is-open {
    margin-top: -30px !important;
  }
}

@media (max-width: 680px) {
  .jogos-track,
  .jogo-card {
    touch-action: auto !important;
  }

  .gsk-calendar-filterbar {
    padding: 14px 14px 0 !important;
  }

  .gsk-calendar-filter-left > .gsk-calendar-select,
  .gsk-calendar-filter-label {
    display: none !important;
  }

  .gsk-calendar-filter-inner {
    display: block !important;
  }

  .gsk-filter-mobile-pills *,
  .gsk-filter-modal *,
  .gsk-filter-sheet * {
    box-sizing: border-box;
  }

  .gsk-filter-mobile-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gsk-filter-mobile-pills::-webkit-scrollbar {
    display: none;
  }

  .gsk-filter-pill {
    flex: 0 0 auto;
    min-width: 118px;
    max-width: 140px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10px 14px;

    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.08);

    background: #fff;

    box-shadow: 0 6px 18px rgba(0,0,0,.08);

    overflow: hidden;
    cursor: pointer;
    outline: none;
  }

  .gsk-filter-pill span {
    display: block;

    font-size: 10px;
    line-height: 1;

    font-weight: 800;
    text-transform: uppercase;

    color: #8d8d8d;

    margin-bottom: 6px;

    white-space: nowrap;
  }

  .gsk-filter-pill strong {
    display: block;

    font-size: 13px;
    line-height: 1.15;

    font-weight: 900;
    color: #111;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .gsk-filter-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
  }

  .gsk-filter-modal.is-open {
    display: block;
  }

  .gsk-filter-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.52);
    backdrop-filter: blur(3px);
  }

  .gsk-filter-sheet {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    max-width: 100%;

    background: #fff;

    border-radius: 22px 22px 0 0;

    padding: 18px 16px 22px;

    box-shadow: 0 -18px 48px rgba(0,0,0,.22);

    max-height: 75vh;

    overflow-y: auto;

    animation: gskSheetUp .22s ease-out;
  }

  @keyframes gskSheetUp {
    from { transform: translateY(18px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .gsk-filter-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 18px;
  }

  .gsk-filter-sheet-head h3 {
    margin: 0;

    font-size: 18px;
    line-height: 1.2;

    font-weight: 900;

    color: #111;
  }

  .gsk-filter-close {
    width: 38px;
    height: 38px;

    border-radius: 12px;

    border: 0;

    background: #f2f2f2;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #111;

    flex: 0 0 auto;
    cursor: pointer;
  }

  .gsk-filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gsk-filter-option {
    width: 100%;

    min-height: 50px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    border-radius: 14px;

    border: 1px solid rgba(0,0,0,.08);

    background: #f8f8f8;

    color: #111;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 800;

    text-align: left;

    overflow: hidden;
    cursor: pointer;
    outline: none;
  }

  .gsk-filter-option span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .gsk-filter-option.is-active {
    background: #bf0411;
    border-color: #bf0411;
    color: #fff;
  }

  .gsk-filter-modal,
  .gsk-filter-sheet,
  .gsk-filter-options {
    overflow-x: hidden;
  }
}

body.gsk-filter-open {
  overflow: hidden;
}

@media (max-width: 380px) {
  .gsk-filter-pill {
    min-width: 104px;
    padding: 10px 12px;
  }

  .gsk-filter-pill strong {
    font-size: 12px;
  }

  .gsk-filter-sheet {
    padding: 16px 14px 20px;
  }
}

@media (min-width: 681px) {
  .gsk-filter-mobile-pills,
  .gsk-filter-modal {
    display: none !important;
  }
}

/* Guarantee finalized card button has no dynamic background override (non-premium only) */
.jogos-carousel:not(.jogos-carousel--premium) .jogo-card.finalizado.passado .gsk-btn-finalizado {
  background: transparent !important;
  color: #000 !important;
  border-color: #000 !important;
}

.jogos-carousel:not(.jogos-carousel--premium) .jogo-card.finalizado.passado .gsk-btn-finalizado:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}