.servers-section {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 26px;
    border-radius: 16px;
    border: 1px solid rgba(0, 210, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 11px;
    margin-bottom: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding-left: 4px;
}

.servers-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.server-card {
    background: rgba(14, 26, 36, 0.4);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 210, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.server-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.15);
}

.server-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.server-info {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.server-card h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    flex: 1;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.status-dot.loading { background: #7ca1b8; }
.status-dot.offline { background: var(--offline); box-shadow: 0 0 8px var(--offline); }

.status-dot.online {
    background: var(--online);
    box-shadow: 0 0 8px var(--online);
}

.status-dot.online::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--online);
    animation: pulse 1.8s infinite ease-in-out;
    top: 0;
    left: 0;
}