body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #273dff, #5e9eff);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    text-align: center;
  }
  
  .content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .time {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.5rem;
    min-width: 80px;
  }
  
  .time span {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }

  .logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  