.container {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #222;
  color: #fff;
  margin-top: 50px;
}

.countdown-container {
  display: inline-block;
  padding: 20px 40px;
  border: 2px solid #fff;
  border-radius: 10px;
}

#timer span {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 10px;
}

.custom-link {
    margin-left: 10%;
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(38, 50, 56, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
  }

  .custom-link:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    box-shadow: 0 6px 20px rgba(38, 50, 56, 0.5);
    text-decoration: none;
  }
