/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    height: 100vh;
    background: url('../images/background.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  /* Overlay */
  body::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  
  /* Logo */
  .logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 5px 15px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    z-index: 2;
  }
  
  /* Notify */
  .notify {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 2;
  }
  
  /* Social Links */
  .socials {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 2;
  }
  
  .socials a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
  }
  
  /* Coming Soon */
  .coming-soon {
    font-size: 8vw;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    margin-bottom: 30px;
    z-index: 2;
  }
  
  /* Countdown */
  .countdown {
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 2;
  }
  
  /* Explore */
  .explore {
    margin-top: 100px;
    font-size: 10px;
    letter-spacing: 3px;
    z-index: 2;
  }
  
  .explore p {
    margin: 5px 0;
    cursor: pointer;
  }
  
  /* Footer */
  .footer {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 10px;
    letter-spacing: 2px;
    z-index: 2;
  }
  