body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  text-align: center;
}

.app {
  max-width: 400px;
  margin: auto;
  padding: 40px 20px;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

button {
  font-size: 20px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  background: #e53935;
  color: white;
  cursor: pointer;
}

button:active {
  opacity: 0.8;
}

.tagline {
  opacity: 0.8;
  margin-bottom: 30px;
}

.links {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  margin: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.whatsapp {
  background: #25D366;
  font-weight: bold;
}
.whatsapp {
  text-decoration: none;
}

.btn.home {
  display: block;
  margin: 12px auto 0;
  padding: 14px 22px;
  background-color: #2c7be5; /* calm blue */
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  max-width: 320px;
  text-align: center;
}

.btn.home:hover {
  background-color: #1a5bb8;
}

.btn.home {
  display: block;
  margin: 12px auto 0;
  padding: 14px 22px;

  /* FORCE consistent color */
  background-color: #2c7be5 !important;
  color: #ffffff !important;

  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  max-width: 320px;
  text-align: center;

  /* Firefox-specific resets */
  appearance: none;
  -moz-appearance: none;
  border: none;
}

.btn.home:visited {
  background-color: #2c7be5;
  color: #ffffff;
}

.btn.home:hover,
.btn.home:focus {
  background-color: #1a5bb8;
  color: #ffffff;
}




