/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Container */
.container {
    text-align: center;
}

/* Main Message */
.message {
    font-size: 26px;
    margin-bottom: 10px;
}

.highlight {
    color: #FF0000; /* Warna merah */
    font-weight: bold;
}

/* Sub Message */
.sub-message {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Loader Animation */
.loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #4CAF50;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-15px);
    }
}