@font-face {
  font-family: 'Japanese3017';
  src: url('../fonts/Japanese3017.otf') format('opentype');
}

@font-face {
  font-family: 'KozGoPro';
  src: url('../fonts/KozGoPro.otf') format('opentype');
}

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

html, body {
  height: 100%;
  font-family: 'KozGoPro', serif;
  overflow-x: hidden;
  overflow-y: hidden;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 1rem;
  animation: fadeIn 2s ease-in;
}

.logo {
  max-width: 250px;
  margin-bottom: 1.5rem;
  animation: zoomIn 1.5s ease-in-out;
}

.coming {
  font-size: 8rem;
  letter-spacing: 1.5px;
  font-family: 'Japanese3017', serif;
  animation: slideDown 1s ease-out;
}

.description {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown span {
  font-size: 2rem;
  font-weight: bold;
}

.countdown small {
  font-size: 0.75rem;
  color: #ccc;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  animation: fadeIn 2.5s ease-in;
}

.btn {
  background-color: white;
  color: black;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #ddd;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive styles */
@media (max-width: 768px) {
  .coming {
    font-size: 4rem;
  }

  .description {
    font-size: 1.2rem;
  }

  .countdown {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .countdown span {
    font-size: 1.5rem;
  }

  .buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .logo {
    max-width: 180px;
  }
}
