/*
 * public/style.css - MODO DIAGNÓSTICO (Texto Plano)
 * Sin fuentes externas, sin colores de fondo bloqueados.
 */

body {
  font-family: Arial, sans-serif; 
  background-color: #ffffff; /* Fondo blanco */
  color: #000000; /* Texto negro */
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.stat-container { max-width: 800px; padding-top: 50px; }
.header h1 { font-size: 1.5rem; font-weight: bold; margin-bottom: 5px; }
.date { font-size: 0.9rem; margin-bottom: 30px; }

/* La Cifra Principal */
.stat-value {
  font-size: 3rem; 
  font-weight: bold;
  margin: 20px 0;
  color: #333333; 
  animation: none; 
}

/* Jerarquía de Texto */
.stat-explanation {
  display: block; 
  font-size: 1.1rem; 
  font-weight: bold; 
  color: #000000; 
  margin: 10px auto 5px; 
}

.stat-quote {
  display: block; 
  font-size: 1.0rem; 
  font-style: italic; 
  font-weight: normal; 
  color: #666666; 
  margin: 0 auto 30px; 
}

/* Íconos y Botones sin Estilo */
/* ✅ AJUSTADO: Añadir flex-wrap y estilos para el título */
.share { 
  margin-top: 20px; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 10px; 
}

/* ✅ NUEVO: Estilo del título de Compartir */
.share-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 10px; 
  text-align: center;
  width: 100%; 
}

.share img { width: 24px; height: 24px; }
.share a { text-decoration: none; border: none; }
.support-button {
  display: block;
  padding: 10px;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  margin: 20px auto;
  font-weight: bold;
}
footer { margin-top: 40px; font-size: 0.8rem; color: #999999; }

/* Asegurar que no hay animación de latido */
@keyframes heartbeat {
  from { transform: scale(1); }
  to { transform: scale(1); }
}