body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
    background: #0d1117;
    color: #c9d1d9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Card container */
.card {
    background: #161b22;
    padding: 2rem;
    border-radius: 14px;
    width: 320px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.card h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Service links */
.card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75rem 0;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    background: #238636;
    color: #ffffff;
    transition: background 0.2s ease, transform 0.1s ease;
}

 .card a:hover {
     background: #2ea043;
     transform: translateY(-1px);
 }

/* Status label */
.status {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Online / Offline colors */
.online {
    color: #3fb950; /* green */
}

.offline {
    color: #f85149; /* red */
}

@media (max-width: 400px) {
    .card {
        width: 90%;
        padding: 1.5rem;
    }
}