:root {
    --bg-dark: #09090b;
    --bg-card: #121214;
    --border-clean: rgba(255, 255, 255, 0.07);
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --accent: #8b5cf6;
    --success: #10b981;
}

* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

.app-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background-color: #0c0c0e;
    border-right: 1px solid var(--border-clean);
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-shrink: 0;
}

.bot-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-clean);
    margin-bottom: 20px;
}

.bot-profile img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1c1c1e;
}

.bot-profile h2 {
    font-size: 14px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.badge {
    font-size: 10px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.guild-selector-box {
    margin-bottom: 24px;
}

.guild-selector-box label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.guild-selector-box select {
    width: 100%;
    background: #141416;
    border: 1px solid var(--border-clean);
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff;
    outline: none;
    font-size: 13px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    text-align: left;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.menu-btn:hover {
    background: rgba(255,255,255,0.03);
    color: #fff;
}

.menu-btn.active {
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 600;
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-clean);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-content {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-clean);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.btn {
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-primary { background: #fff; color: var(--bg-dark); }
.btn-success { background: var(--success); color: #fff; }
.btn:hover { opacity: 0.9; }