body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.coming-soon-container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 50px;
    margin: 0;
    color: #ff5733;
}

p {
    font-size: 20px;
    color: #777;
}

.countdown {
    margin-top: 30px;
    font-size: 24px;
}

#countdown-timer {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

/* Styling untuk gambar Coming Soon */
.coming-soon-img {
    max-width: 30%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.coming-soon-img:hover {
    opacity: 1;
}