/* Glass card (restores original UI blocks) */
.card-glass {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(12px);
    transition: 0.3s;
    margin-bottom: 20px;
}

.card-glass:hover {
    transform: translateY(-5px);
}

/* Status line (restores header feel) */
#status {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* pulse dot */
.pulse {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* server IP box */
.server-ip {
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}