/* ===== PC ===== */
.coming-soon-wrapper {
  height: 100vh;
  background: linear-gradient(135deg, #000000, #434343);
  color: #ffffff;
  font-family: 'Cinzel', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.coming-soon-wrapper h1 {
  font-size: 48px;
  margin: 0;
  letter-spacing: 2px;
  animation: fadeIn 2s ease-out;
}

.coming-soon-wrapper p {
  font-size: 18px;
  margin-top: 20px;
  color: #cccccc;
  animation: fadeIn 3s ease-out;
}

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