    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'Roboto', sans-serif;
      color: white;
      background-image: url('https://d2rdhxfof4qmbb.cloudfront.net/wp-content/uploads/2024/10/medium.com_-1024x512.png');
      background-size: cover;
      background-repeat: no-repeat;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .overlay {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 40px;
      border-radius: 12px;
      text-align: center;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .overlay h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .overlay h2 {
      font-size: 24px;
      color: #ffc107;
      margin-bottom: 30px;
    }

    .timer {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 30px;
    }

    .timer .unit {
      background-color: rgba(255, 193, 7, 0.25);
      border-radius: 10px;
      padding: 10px;
      width: 60px;
    }

    .timer .unit h3 {
      margin: 0;
      font-size: 20px;
    }

    .timer .unit small {
      font-size: 12px;
      color: #ddd;
    }

    .contact a {
      color: #ffc107;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
    }

    .contact a:hover {
      text-decoration: underline;
    }