/* Fonte principal (já adicionada no HTML, mas podes reforçar aqui) */
body {
  font-family: 'Audiowide', 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #5b21b6, #0f172a, #0e7490);
  color: white;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container geral */
.container {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  border: 2px solid #22d3ee; /* cyan-500 */
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
  margin: 0 1rem;
}

/* Título */
h1 {
  font-size: 2.5rem;
  color: #22d3ee; /* cyan-400 */
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

/* Texto principal */
p.main-text {
  text-align: center;
  color: #d4d4d8; /* zinc-300 */
  font-size: 1.55rem;
  margin-bottom: 1.5rem;
}

/* Botão */
button {
  width: 100%;
  background-color: #06b6d4; /* cyan-500 */
  color: black;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.6);
}

button:hover {
  background-color: #22d3ee; /* cyan-400 */
  transform: scale(1.05);
}

/* Texto pequeno que queres aumentar */
.small-text {
  font-size: 1rem; /* antes podia estar tipo 0.75rem ou menos */
  color: #a1a1aa; /* zinc-400 */
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Link dentro do texto pequeno */
.small-text a {
  color: #22d3ee; /* cyan-300 */
  text-decoration: none;
}

.small-text a:hover {
  text-decoration: underline;
}

/* Responsividade para mobile */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  p.main-text {
    font-size: 1.1rem;
  }
  button {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
  }
  .small-text {
    font-size: 1.1rem; /* aumenta ainda mais no mobile */
  }
}
