body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: 
    linear-gradient(rgba(142, 68, 173, 0.7), rgba(22, 160, 133, 0.7)), 
    url('/img/cambodia_bg.jpeg') 
    no-repeat center center/cover;
  color: white;
  }
  
  .container {
    text-align: center;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .email-form input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
  }
  
  .email-form button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #2980b9;
    color: white;
    cursor: pointer;
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .time {
    text-align: center;
  }
  
  .time span {
    font-size: 2.5rem;
    display: block;
  }
  