* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    background: #0f0c29;
    color: #fff;
  }
  
  /* Background code canvas */
  #codeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
  }  
  
  /* Main content */
  .container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
  }
  
  .title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* makes it wrap on smaller screens */
  }
  
  .time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .time-box span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .title {
      font-size: 2.5rem;
    }
    .subtitle {
      font-size: 1rem;
    }
    .time-box {
      padding: 0.8rem 1rem;
      font-size: 1rem;
    }
    .time-box span {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .title {
      font-size: 2rem;
    }
    .subtitle {
      font-size: 0.9rem;
    }
    .countdown {
      gap: 0.5rem;
    }
    .time-box {
      padding: 0.5rem 0.8rem;
      font-size: 0.9rem;
    }
    .time-box span {
      font-size: 1.2rem;
    }
  }
  