/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevent scrolling while preloader is visible */
  }
  
  /* Preloader Styles */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 1s ease-in-out;
  }
  
  .preloader .loading-text {
    font-size: 2rem;
    font-family: monospace;
    animation: blink 1s steps(2, start) infinite;
  }
  
  .preloader .loading-text span {
    display: inline-block;
  }
  
  .preloader p {
    color: #333;
    font-size: 1rem;
    text-align: center;
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  /* Main Coming Soon Styles */
  .coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .box {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .box-left,
  .box-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .box-left {
    background: #000;
    color: #fff;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
  
  .box-left h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
  }
  
  .box-right {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    text-align: center;
    width: 100%;
  }
  
  .box-right .top,
  .box-right .bottom {
    flex: 1;
    background: #000;
    width: 100%;
    text-align: center;
  }
  
  .box-right .bottom h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    padding: 20px 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .box-left h1,
    .box-right .bottom h2 {
      font-size: 1.8rem;
    }
  
    .box-left,
    .box-right {
      padding: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .coming-soon-container {
      flex-direction: column;
      gap: 0;
    }
  
    .box-left,
    .box-right {
      width: 100%;
    }
  
    .box-left h1,
    .box-right .bottom h2 {
      font-size: 1.5rem;
    }
  }
  