/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1c1c1c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* LOGO AREA */
.logo-area {
  margin-top: 50px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTAINER */
.container {
  flex: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* CAPTION */
.caption {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 28px;
}

/* HEADLINE */
h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 36px;
  animation: float 8s ease-in-out infinite;
}

.time-box {
  min-width: 90px;
  text-align: center;
}

.time-box span {
  font-size: 42px;
  font-weight: 600;
  display: block;
  transition: transform 0.25s ease;
}

.time-box label {
  font-size: 12px;
  letter-spacing: 1.4px;
  color: #888;
  margin-top: 6px;
  display: block;
}

/* FOOTER */
.footer {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  padding: 24px 0;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FLOAT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  h1 { font-size: 38px; }
  .caption { font-size: 17px; }
}

@media (max-width: 600px) {
  .logo-area { height: 96px; }
  h1 { font-size: 32px; margin-bottom: 40px; }
  .caption { font-size: 16px; }
  .countdown { gap: 20px; flex-wrap: wrap; }
  .time-box span { font-size: 28px; }
}
