:root {
    --accent: #5865F2;
    --accent-hover: #4752c4;
    --bg-dark: #050505;
    --card-bg: #111111;
    --border: #222222;
    --text-muted: #888888;
}

body { 
    background-color: var(--bg-dark); 
    color: #eee; 
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    margin: 0;
}

h1, h2, h3, .font-heading {
    font-family: 'Space Grotesk', sans-serif;
}

/* Layout */
.sitewrap { 
    max-width: 1400px;
    margin: 0 auto; 
    min-height: 100vh;
    padding: 20px; 
}

.header-top { 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    margin-bottom: 24px; 
}

.header-logo { 
    width: 180px; 
    height: auto; 
    transition: transform 0.3s ease;
}
.header-logo:hover { transform: scale(1.02); }

/* UI Elements */
.barrow { 
    display: flex; 
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 16px; 
    margin-bottom: 30px; 
    align-items: center; 
    gap: 16px;
}

.menucol { 
    width: 240px; 
    flex-shrink: 0; 
    padding-right: 24px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.nav-link.active {
    background: var(--accent);
    color: #fff;
}

.nav-link-sub {
    padding-left: 44px;
    font-size: 13px;
}

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
