/* ===== RESET ===== */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background: #000 url("assets/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #ccc;
  line-height: 1.6;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.overlay {
  background: rgba(0, 0, 0, 0.85);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 25px #39ff14;
  max-width: 900px;
  width: 100%;
  animation: fadeIn 1.5s ease-in-out;
}

/* ===== LOGO ===== */
.logo {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px #39ff14);
  margin-bottom: 20px;
  animation: zoomIn 2s ease-in-out;
}

/* ===== TÍTULO ===== */
.title {
  color: #39ff14;
  text-shadow: 0 0 12px #39ff14, 0 0 24px #00ff99;
  margin-bottom: 10px;
  animation: glitch 2s infinite;
}

/* ===== CONTADOR ===== */
#countdown {
  font-size: 28px;
  font-weight: bold;
  color: #39ff14;
  text-shadow: 0 0 15px #39ff14, 0 0 30px #00ff99;
  margin: 20px 0;
  animation: blink 1.5s infinite;
}

/* ===== TEXTOS ===== */
.question {
  font-size: 18px;
  font-weight: bold;
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14;
  margin-top: 30px;
}

.story {
  font-size: 16px;
  font-style: italic;
  color: #ccc;
}

.quote {
  font-size: 17px;
  font-weight: bold;
  margin-top: 15px;
  color: #39ff14;
  text-shadow: 0 0 6px #39ff14;
}

/* ===== CAJAS ===== */
.warning {
  background: #0a0a0a;
  border: 2px dashed #39ff14;
  border-radius: 12px;
  padding: 15px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 0 10px #39ff14;
}

.donations {
  background: #000;
  border: 2px solid #39ff14;
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 0 20px #39ff14;
}

.donations h2 {
  color: #39ff14;
  text-shadow: 0 0 12px #39ff14;
  margin-bottom: 15px;
}

/* ===== BOTÓN REDONDO CON LOGO NEQUI ===== */
.btn-round {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-top: 20px;
  background: transparent;
  border: 2px solid #39ff14;
  border-radius: 50%;
  box-shadow: 0 0 15px #39ff14;
  transition: all 0.3s ease-in-out;
}

.btn-round img {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 0 6px #39ff14);
}

.btn-round:hover {
  background: #39ff14;
  box-shadow: 0 0 25px #39ff14, 0 0 50px #00ff99;
  transform: scale(1.1);
}

.btn-round:hover img {
  filter: drop-shadow(0 0 8px #000);
}

.btn-round:hover {
  background: #39ff14;
  color: #000;
  box-shadow: 0 0 20px #39ff14, 0 0 40px #00ff99, 0 0 60px #39ff14;
  transform: scale(1.1);
}

/* ===== EFECTOS ANIMADOS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes glitch {
  0% { text-shadow: 2px 2px #ff004d, -2px -2px #00fff9; }
  25% { text-shadow: -2px 2px #ff004d, 2px -2px #00fff9; }
  50% { text-shadow: 2px -2px #ff004d, -2px 2px #00fff9; }
  75% { text-shadow: -2px -2px #ff004d, 2px 2px #00fff9; }
  100% { text-shadow: 2px 2px #ff004d, -2px -2px #00fff9; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container { padding: 20px; }
  .title { font-size: 20px; }
  #countdown { font-size: 22px; }
  .story { font-size: 14px; }
  .quote { font-size: 15px; }
  .logo { max-width: 100%; }
}