body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.background {
    background-image: linear-gradient(to bottom, #2c3e50, #3498db);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.container {
    background-color: rgba(44, 62, 80, 0.8);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: background-color 0.5s ease;
}

h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: color 0.5s ease;
}

.cyan {
    color: #1abc9c;
    transition: color 0.5s ease;
}

.yellow {
    color: #f1c40f;
    transition: color 0.5s ease;
}

.white {
    color: #fff;
    transition: color 0.5s ease;
}

.status {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

#serverStatus {
    margin-bottom: 10px;
}

#playerStatus {
    font-size: 18px;
}

.loader {
    display: none;
}

.active.loader {
    display: block;
}

.button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 18px;
    border: 2px solid #27ae60;
}

.button:hover {
    background-color: #2ecc71;
}

.button:active {
    transform: scale(0.95);
}

/* Tambahkan gaya untuk emoji dan animasi */
.status-check {
    font-size: 36px;
    margin-bottom: 10px;
    color: #27ae60; /* Warna hijau untuk centang */
    animation: pulse 1s infinite; /* Animasi pulsasi */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.status-cross {
    color: #e74c3c;
}
