html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: #000000;
  color: #fff;
}

/* Conteúdo cresce, empurra o footer */
.main-content {
  flex: 1 0 auto;
  padding-bottom: 90px; /* espaço para o botão PIX fixo */
}

/* FOOTER FIXO */
footer {
  background: #111;
  color: #ccc;
  padding: 14px 10px;
  text-align: center;
  border-top: 1px solid #222;
}

/* HERO */
.hero {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroSlide 30s infinite;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

@keyframes heroSlide {
  0% {
    background-image: url("../images/slide/bg-arena-001.jpg");
  }
  33% {
    background-image: url("../images/slide/bg-arena-002.jpg");
  }
  66% {
    background-image: url("../images/slide/bg-arena-003.jpg");
  }
}

.card {
  background: #000;
  border-radius: 16px;
  border: 1px solid #222;
}

.text-muted {
  color: #aaa !important;
}

input {
  background: #0d0d0d !important;
  color: #fff !important;
  border: 1px solid #333 !important;
}
/* Substitua por este: */
input::placeholder {
  color: #ffffff; /* Branco puro */
  opacity: 0.9; /* Opcional: uma leve transparência para não confundir com o texto digitado */
}
input:focus {
  border-color: #198754;
  box-shadow: none;
}

.participant-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.participant-list li:last-child {
  border-bottom: none;
}

.status-pago {
  color: #198754;
  font-weight: 600;
}
.status-pendente {
  color: #ffc107;
  font-weight: 600;
}

.carousel img {
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

.fixed-pay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  border-top: 1px solid #222;
  padding: 12px;
  z-index: 999;
}

@media (min-width: 768px) {
  .hero {
    height: 220px;
  }
}

/* Corrige ícone do accordion no dark mode */
.accordion-button::after {
  filter: invert(1);
}

.accordion-button::after {
  display: none;
}

.transition-icon {
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .transition-icon {
  transform: rotate(180deg);
}

#pixModal .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Animação de entrada do sucesso */
.pago-sucesso {
  animation: bounceIn 0.6s ease-out;
  text-align: center;
  padding: 20px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 15px;
  color: white;
}
.icon-circle.success {
  background: #198754;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
}
.icon-circle.info {
  background: #0dcaf0;
  box-shadow: 0 4px 15px rgba(13, 202, 240, 0.4);
}

.pago-sucesso {
  animation: bounceIn 0.6s ease-out;
  text-align: center;
  padding: 20px;
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Estilo base do checkbox no tema dark */
.form-check-input {
  background-color: #1a1a1a !important;
  border-color: #444 !important;
  cursor: pointer;
}

/* Quando o checkbox é marcado (Checked) */
.form-check-input:checked {
  background-color: #198754 !important; /* Cor verde do seu tema */
  border-color: #198754 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

/* Efeito de foco para acessibilidade */
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25) !important;
  border-color: #198754 !important;
}

.custom-faq-btn {
  font-size: 0.82rem !important;
  padding: 0.75rem 1rem !important;
  font-weight: normal !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background-color: #1a1a1a !important;
  color: #fff !important;
}
.accordion-button:focus {
  box-shadow: none !important;
}
.accordion-body {
  font-size: 0.8rem;
  background-color: #1e1e1e;
  line-height: 1.5;
}

.game-option-card.selected {
  border-color: #198754 !important;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
