body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d; /* Dark, mysterious background */
    color: #ffffff;
  }
  
  .coming-soon {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .logo {
    width: 150px;
    margin-bottom: 1rem;
    filter: brightness(1.1) drop-shadow(0 0 10px #00ffcc);
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
  }
  
  .tagline {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    animation: fadeIn 3s ease-in-out infinite alternate;
  }
  
  /* Optional glow animation */
  @keyframes fadeIn {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  