:root {
    --mint: #00f5d4;
    --mint-glow: rgba(0, 245, 212, 0.2);
    --bg-deep: #070a11;
    --bg-card: #0d121d;
    --border: rgba(255, 255, 255, 0.06);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-deep);
}

/* Sidebar Styling */
.sidebar-glass {
    background: linear-gradient(180deg, #0b101b 0%, #070a11 100%);
}

.sidebar-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.1em;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    color: var(--mint);
    background: rgba(0, 245, 212, 0.05);
}

.sidebar-link.active {
    background: rgba(0, 245, 212, 0.1);
    color: var(--mint);
    box-shadow: inset 3px 0 0 var(--mint);
}

/* UI Elements */
.glass-nav {
    background: rgba(11, 16, 27, 0.8);
    backdrop-filter: blur(12px);
}

.btn-mint {
    background: var(--mint);
    color: #000;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.btn-mint:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--mint-glow);
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.75rem;
    border-radius: 1.25rem;
    transition: 0.3s ease;
}

.module-card:hover { border-color: rgba(0, 245, 212, 0.3); }

.module-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 245, 212, 0.08);
    color: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
}

.btn-config {
    width: 100%;
    padding: 0.65rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-config:hover { background: var(--mint); color: black; }

/* Custom Switch */
.mint-switch { position: relative; width: 44px; height: 22px; }
.mint-switch input { opacity: 0; width: 0; height: 0; }
.mint-slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1e293b; transition: .4s; border-radius: 34px;
}
.mint-slider:before {
    position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px;
    background-color: #64748b; transition: .4s; border-radius: 50%;
}
input:checked + .mint-slider { background-color: var(--mint); }
input:checked + .mint-slider:before { transform: translateX(22px); background-color: #000; }

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0, 245, 212, 0.1); border-radius: 10px; }