body {
    background: #181c23;
    color: #dbeafe;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}
.navbar {
    background: #13151a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px #0002;
}
.logo {
    color: #a5b4fc;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.navbar li {
    color: #dbeafe;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}
.navbar li:hover {
    color: #a5b4fc;
}
.title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
    color: #a5b4fc;
    font-weight: 700;
}
.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 2rem;
}
.status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
 .status-card {
     background: linear-gradient(135deg, #232733 80%, #2d3250 100%);
     border-radius: 1.2rem;
     box-shadow: 0 6px 24px #0005;
     padding: 2.2rem 1.7rem 1.5rem 1.7rem;
     min-width: 260px;
     max-width: 340px;
     flex: 1 1 260px;
     display: flex;
     flex-direction: column;
     align-items: center;
     position: relative;
     transition: transform 0.2s, box-shadow 0.2s;
     border: 1.5px solid #232733;
 }
 .status-card:hover {
     transform: translateY(-6px) scale(1.03);
     box-shadow: 0 12px 32px #0007;
     border-color: #6366f1;
 }
.status-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
    position: relative;
}
.status-header .status-url {
    position: absolute;
    right: 0.5rem;
    top: 0.2rem;
    font-size: 1rem;
    color: #60a5fa;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
}
.status-header .status-url:hover {
    opacity: 1;
    text-decoration: underline;
}
.status-icon {
    font-size: 2rem;
}
.status-online {
    color: #22c55e;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.status-offline {
    color: #ef4444;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.status-uptime {
    width: 100%;
    margin-top: 1rem;
}
.progress-bar {
    width: 100%;
    height: 18px;
    background: #1e293b;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.progress {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
    border-radius: 9px 0 0 9px;
    transition: width 0.6s cubic-bezier(.4,2,.3,1);
}
.uptime-label {
    text-align: right;
    font-size: 1rem;
    color: #a5b4fc;
    font-weight: 500;
}
footer.footer {
    background: #13151a;
    color: #fbbf24;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    box-shadow: 0 -2px 8px #0002;
    z-index: 10;
    padding: 0.7rem 0 0.2rem 0;
    font-size: 1rem;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 1.1rem;
}
.footer-logo {
    color: #a5b4fc;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}
.footer-social a {
    color: #60a5fa;
    margin: 0 0.5rem;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: #a5b4fc;
    transform: scale(1.2);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0.2rem auto 0 auto;
    padding: 0 2rem 0.2rem 2rem;
    font-size: 0.95rem;
    color: #fbbf24;
    opacity: 0.85;
}
.footer-notice {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.footer-copyright {
    font-size: 0.95rem;
    color: #a5b4fc;
    opacity: 0.7;
}
@media (max-width: 900px) {
    .status-list {
        flex-direction: column;
        align-items: center;
    }
    .status-card {
        max-width: 95vw;
    }
    .title {
        font-size: 2rem;
    }
}
