body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181a20;
    color: #e0e0e0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
.background-gradient {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 20%, #00c3ff33 0%, #181a20 80%);
    pointer-events: none;
}
.logo-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #00c3ff;
    text-shadow: 0 2px 16px #00c3ff44;
}
.gradient-text {
    background: linear-gradient(90deg,#00c3ff 0%,#19e36a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.modern-tabs .nav-link {
    color: #e0e0e0;
    font-size: 1.1rem;
    border-radius: 12px 12px 0 0;
    margin: 0 2px;
    background: #23272f;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.modern-tabs .nav-link.active {
    background: linear-gradient(90deg,#23272f 60%,#00c3ff22 100%);
    color: #00c3ff;
    font-weight: bold;
    box-shadow: 0 2px 8px #00c3ff22;
}
.glass-card {
    background: rgba(35,39,47,0.95);
    border-radius: 22px;
    border: none;
    box-shadow: 0 4px 32px #00c3ff22;
    transition: transform 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(3px);
    position: relative;
    overflow: hidden;
}
.glass-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 48px #19e36a44;
}
.card-glow {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    pointer-events: none;
    border-radius: 22px;
    box-shadow: 0 0 32px 8px #19e36a33;
    opacity: 0;
    transition: opacity 0.3s;
}
.card-up .card-glow {
    opacity: 1;
}
.service-icon {
    font-size: 2rem;
    color: #00c3ff;
    filter: drop-shadow(0 0 8px #00c3ff88);
}
.card-up {
    border-left: 8px solid #19e36a;
    box-shadow: 0 0 24px #19e36a55;
}
.card-down {
    border-left: 8px solid #ff3c3c;
    opacity: 0.7;
}
.status span {
    font-weight: bold;
    padding: 2px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#1c3c2a 40%,#19e36a 160%);
    color: #19e36a;
    box-shadow: 0 0 12px #19e36a55;
    transition: background 0.4s;
}
.card-up .status span {
    background: linear-gradient(90deg,#1c3c2a 40%,#19e36a 160%);
    color: #19e36a;
    box-shadow: 0 0 12px #19e36a55;
}
.card-down .status span {
    background: linear-gradient(90deg,#3c1a1a 40%,#ff3c3c 160%);
    color: #ff3c3c;
    box-shadow: 0 0 8px #ff3c3c55;
    transition: background 0.4s;
}
@media (max-width: 768px) {
    .logo-title { font-size: 1.5rem; }
    .glass-card { border-radius: 14px; }
    .service-icon { font-size: 1.3rem; }
}