.st-hero {
    padding: 140px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.st-hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.st-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.st-hero p {
    font-size: 16px;
    color: #555;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.st-overall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #888;
}

.st-overall-good {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.st-overall-warn {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.st-overall-bad {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.st-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.st-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.st-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
}

.st-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.st-item-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.st-item-sub {
    font-size: 13px;
    color: #555;
}

.st-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    min-width: 140px;
}

.st-online {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.st-updating {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.st-offline {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.st-spin {
    animation: st-rotate 2s linear infinite;
}

@keyframes st-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.st-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 13px;
    color: #333;
}

.st-footer-note i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .st-hero {
        padding: 120px 24px 40px;
    }

    .st-hero h1 {
        font-size: 32px;
    }

    .st-content {
        padding: 0 24px 60px;
    }

    .st-item {
        padding: 16px 18px;
    }

    .st-item-name {
        font-size: 15px;
    }

    .st-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}
