:root {
    --brand: #1a3c6e;
    --brand-light: #e8eef7;
    --accent: #e84040;
    --gold: #f8c842;
    --surface: #f5f6f8;
    --border: #e2e4e9;
    --text: #1a1d23;
    --muted: #6b7280;
    --voting-color: #1a3c6e;
    --crowdfunding-color: #166534;
    --blog-color: #e84040;
    --white: #ffffff;
    --gold: #f8c842;
    --color-1: #1a3c6e;
    --color-2: #1e9fd9;
    --color-3: #b2d233;
    --color-4: #fdbc16;
    --color-5: #ef1d26;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
}
* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; }
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; }

.gradient {
    background: linear-gradient(135deg, #fdbc16 0%, #ef1d26 100%);
    backdrop-filter: blur(10px);
}

/* Dropdown */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}
.group:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Profile dropdown click toggle */
.profile-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu - slides from left, full height */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 99000000;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9900000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-submenu.open {
    max-height: 500px;
}

/* Nav link hover colors */
.nav-voting:hover { color: var(--voting-color); }
.nav-crowdfunding:hover { color: var(--crowdfunding-color); }
.nav-blog:hover { color: var(--blog-color); }

/* Dropdown icon colors */
.icon-voting { color: var(--voting-color); }
.icon-crowdfunding { color: var(--crowdfunding-color); }
.icon-blog { color: var(--blog-color); }
.icon-accent { color: var(--accent); }
.icon-gold { color: var(--gold); }