:root {
  --yellow: #f2c300;
  --green: #1e7f43;
  --blue: #0b3c5d;
  --black: #0b0b0b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, var(--green), var(--blue), var(--black));
  color: var(--white);
  min-height: 100vh;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.logo {
  max-width: 150px;
  margin-bottom: 24px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  min-height: 56px;
  color: var(--yellow);
  text-align: center;
}


#typing-text {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.subtitle {
  margin-top: 12px;
  font-weight: 300;
  opacity: 0.9;
}

.countdown {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown div {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(242, 195, 0, 0.3);
  padding: 16px;
  border-radius: 14px;
  min-width: 70px;
}

.countdown span {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}

.countdown small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.socials {
  display: flex;
  gap: 22px;
  margin-top: 16px;
  justify-content: center;
}

.socials a {
  color: var(--yellow);
  font-size: 1.5rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  transform: scale(1.2);
  color: var(--green);
}

/* Botão de áudio */
#audio-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

#audio-toggle:hover {
  background: var(--yellow);
  color: var(--black);
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.6rem;
  }

  .countdown div {
   min-width: 90px;
}


}
