body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5; /* Latar belakang abu-abu muda */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background-color: #ffffff; /* Latar belakang putih untuk konten */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 90%;
}

.content h1 {
    color: #007bff; /* Warna biru cerah */
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2em;
}

.content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: spin 3s linear infinite; /* Animasi berputar */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.timer-message {
    font-style: italic;
    color: #555;
    margin-top: 20px;
}

#countdown {
    font-weight: 700;
    color: #dc3545; /* Warna merah untuk hitungan mundur */
}

.btn {
    display: inline-block;
    background-color: #28a745; /* Warna hijau */
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background-color: #218838;
}

/* Style untuk Progress Bar (Opsional tapi keren) */
.progress-bar-container {
    width: 80%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 5px;
    margin: 20px auto 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 100%; /* Mulai 100% dan akan berkurang oleh pengalihan meta */
    background-color: #007bff;
    animation: progress-shrink 10s linear forwards; /* Animasi bar berkurang 10 detik */
}

@keyframes progress-shrink {
    0% { width: 100%; }
    100% { width: 0%; }
}