.dashboard {
    min-height: 100vh;
    padding-top: 70px;
    position: relative;
    z-index: 1;
}

.dash-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.dash-hero {
    text-align: center;
    padding: 6rem 2rem;
}

.dash-hero i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.dash-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.dash-hero p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.1rem; }

.dash-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    min-height: 70vh;
}

.dash-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 90px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s;
    margin-bottom: 4px;
}

.sidebar-link:hover, .sidebar-link.active {
    background: rgba(108, 99, 255, 0.15);
    color: var(--accent);
}

.dash-main {
    min-height: 50vh;
}

.dash-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-section h2 i { color: var(--accent); }

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.server-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.server-card img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.server-card h3 { margin-bottom: 0.3rem; }
.server-card p { color: var(--text-muted); font-size: 0.85rem; }

.config-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.config-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }

.config-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.config-select {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.config-select option { background: var(--bg-primary); }

.loading {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}

.loading i { margin-right: 8px; }

.empty-state {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}

.commands-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cmd-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.cmd-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.cmd-stat span:last-child { color: var(--text-muted); font-size: 0.85rem; }

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.logout-btn {
    background: var(--red);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .dash-content { grid-template-columns: 1fr; }
    .dash-sidebar { position: static; }
    .commands-stats { grid-template-columns: repeat(2, 1fr); }
}
