* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* --- NOVO FUNDO DISCRETO E FLUIDO --- */
.bg-gradient {
  position: fixed;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  z-index: 1;
  /* Gradiente que simula uma luz suave mudando de posição */
  background: radial-gradient(circle at 50% 50%, #111 0%, #000 70%);
  transition: transform 0.1s ease-out;
}

/* --- CONTAINER --- */
.main-container {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logo {
  width: 80vw;
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.9));
}

.status-label {
  font-size: 0.7rem;
  letter-spacing: 1.2em;
  color: #333;
  /* Bem discreto */
  margin-bottom: 50px;
  text-indent: 1.2em;
}

/* --- CLOCK GRADIENTE --- */
.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 60px;
}

.flip-card {
  background: linear-gradient(180deg, #111 0%, #050505 100%);
  padding: 22px 8px;
  border-radius: 12px;
  min-width: 85px;
  border: 1px solid #1a1a1a;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.flip-card span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(180deg, #fff 20%, #444 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.flip-card label {
  font-size: 0.5rem;
  text-transform: uppercase;
  color: #444;
  letter-spacing: 2px;
  margin-top: 10px;
  display: block;
}

/* --- SOCIAL --- */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 80px;
}

.btn-social {
  text-decoration: none;
  color: #555;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 20px;
  border: 1px solid #111;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-social:hover {
  color: #fff;
  border-color: #333;
  background: rgba(255, 255, 255, 0.02);
}

/* --- FOOTER CRÉDITOS --- */
.footer {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.footer p {
  font-size: 0.65rem;
  color: #333;
  letter-spacing: 1px;
}

.footer a {
  color: #444;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer a:hover {
  color: #777;
}

/* MOBILE */
@media (max-width: 600px) {
  .flip-card {
    min-width: 72px;
    padding: 18px 5px;
  }

  .flip-card span {
    font-size: 2.2rem;
  }

  .status-label {
    letter-spacing: 0.8em;
    text-indent: 0.8em;
  }
}