body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 40px;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.logo {
  max-width: 90px;
  margin-bottom: 20px;
}

h1 {
  color: #dc3545;
  margin-bottom: 10px;
}

#message {
  font-size: 16px;
  margin-bottom: 20px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-family: 'Courier New', monospace;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.time-box {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 10px 20px;
  min-width: 70px;
  transition: background-color 0.3s;
}

.time-box span {
  display: block;
  font-size: 14px;
  color: #666;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 20px;
}

.lottie-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lottie-wrapper dotlottie-player {
  width: 100%;
  max-width: 500px;
  min-height: 220px;
}

.container {
  flex: 1;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Countdown style tetap seperti sebelumnya */
#countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  font-family: 'Courier New', monospace;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.time-box {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 10px 20px;
  min-width: 70px;
}

.time-box span {
  display: block;
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .lottie-wrapper dotlottie-player {
    max-width: 100%;
    min-height: 20px;
  }

  .container {
    width: 100%;
  }
}

#toggle-lang {
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#toggle-lang:hover {
  background-color: #0056b3;
}

@media (max-width: 480px) {
  #countdown {
    flex-direction: column;
    gap: 10px;
  }
}