body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #000, #6b21a8);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
}
h1 {
  font-size: 1.8rem;
  margin-top: 20px;
  text-align: center;
}
h2 {
  font-size: 1rem;
  margin-top: 20px;
  text-align: center;
}
.timer {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
  letter-spacing: 2px;
}
.participants {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
}
.participant {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.badge {
  background-color: #9333ea;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}
/* .winner {
  margin-top: 20px;
  color: #4ade80;
  text-align: center;
} */

.winner {
  font-size: 1.2rem;
  /* background: linear-gradient(to right, #6a0dad, #9b30ff); */
  color: #4ade80;
  padding: 5px;
  /* margin-bottom: 1rem; */
  border-radius: 12px;
  font-weight: bold;
  /* box-shadow: 0 0 15px rgba(155, 48, 255, 0.4); */
  transition: all 0.3s ease;
  text-align: center;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(155, 48, 255, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(155, 48, 255, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 15px rgba(155, 48, 255, 0.5); }
}

.animate-winner {
  animation: pulse 1s ease-in-out 3;
}


footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.participar-btn {
  background-color: #6a0dad;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: 0.3s ease;
}

.participar-btn:hover {
  background-color: #8e2de2;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 99;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #1a1a1a;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  color: #fff;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.fechar-modal {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.fechar-modal:hover {
  color: #fff;
}

.canal-whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  margin-top: 15px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.canal-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.ganhadores-anteriores {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #ccc;
}
.ganhadores-anteriores strong {
    color: #7fff7f;
}
.sorteio-box {
  margin-top: 30px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  min-height: 60px;
}

 .animate-winner {
  color: #7fff7f;
  font-size: 32px;
  animation: pulse 0.4s ease-in-out infinite;
}

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








