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

/* Set up flex layout for sticky footer */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background-color: #000;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Hero Section grows to fill space */
.hero {
  flex: 1;
  position: relative;
  padding: 4rem 0;
  background: url('tokyo-background.jpg') center center / cover no-repeat;
}

/* Semi-transparent overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* Main container */
.container {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Typography */
h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h1 .highlight {
  color: #00fff7;
}

.tagline {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.launch {
  font-size: 0.95rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.locations {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* Countdown */
.countdown {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00fff7;
  margin: 2rem 0;
  letter-spacing: 1.5px;
}

/* Contact */
.contact {
  margin-bottom: 1.5rem;
}

.contact p a {
  color: #00fff7;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact p a:hover {
  text-decoration: underline;
}

/* Socials */
.socials a {
  margin: 0 0.5rem;
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #00fff7;
}

/* Footer */
.footer {
  flex-shrink: 0;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: #aaa;
  background: #111;
  border-top: 1px solid #222;
  width: 100%;
  line-height: 1.4;
}

.footer p {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  .tagline,
  .launch,
  .locations,
  .contact p a {
    font-size: 0.95rem;
  }

  .countdown {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .tagline,
  .launch,
  .locations,
  .contact p a {
    font-size: 0.9rem;
  }

  .countdown {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .socials a {
    display: inline-block;
    margin: 0.25rem 0.5rem;
  }
}
