body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
  }

  .video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: -1;
  }

  .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
  }

  h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 30px auto;
  }

  .countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }

  .countdown div {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  }

  .countdown span {
    font-size: 2.5rem;
    font-weight: 500;
    display: block;
  }

  .cta-btn {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .cta-btn:hover {
    background: linear-gradient(to right, #8f94fb, #4e54c8);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
  }

  .footer-link {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }

  .footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
  }