* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu Mono', monospace;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a url('../images/202601211200.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-block span:first-child {
  font-size: 4rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

.message {
  margin-top: 3rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
  }

  .countdown {
    gap: 1.5rem;
  }

  .time-block span:first-child {
    font-size: 3rem;
  }

  .time-block {
    min-width: 70px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
  }

  .countdown {
    gap: 1rem;
  }

  .time-block span:first-child {
    font-size: 2.5rem;
  }

  .time-block {
    min-width: 60px;
  }

  .label {
    font-size: 0.65rem;
    letter-spacing: 0.1rem;
  }
}
