:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --primary-dark: #020617;
    --accent: #22c55e;
    --accent-blue: #3b82f6;
    --accent-yellow: #eab308;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --bg: #0f172a;
    --bg-card: #1e293b;
    --border: #334155;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation - Sidebar Style */
.nav126 {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 1000;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.nav-container126 {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nav-logo126 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.nav-logo126 svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.nav-menu126 {
    flex: 1;
}

.nav-menu126 li {
    margin-bottom: 5px;
}

.nav-menu126 a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.nav-menu126 a:hover,
.nav-menu126 a.active {
    background: var(--bg-card);
    color: var(--text);
}

.nav-menu126 a.active {
    border-left: 3px solid var(--accent);
}

.nav-menu126 svg {
    width: 18px;
    height: 18px;
}

.nav-btn126 {
    margin-top: auto;
    padding: 12px;
    background: var(--accent);
    color: var(--primary-dark) !important;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn126:hover {
    opacity: 0.9;
}

/* Main Content */
.main-content126 {
    margin-left: 260px;
    min-height: 100vh;
}

/* Header */
.header126 {
    padding: 20px 30px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header126 h1 {
    font-size: 24px;
    font-weight: 600;
}

.header-actions126 {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn126 {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary126 {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-outline126 {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline126:hover {
    background: var(--bg-card);
}

/* Dashboard Grid */
.dashboard126 {
    padding: 30px;
}

.stats-grid126 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card126 {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-card126:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-header126 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.stat-icon126 {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon126.green { background: rgba(34, 197, 94, 0.2); color: var(--accent); }
.stat-icon126.blue { background: rgba(59, 130, 246, 0.2); color: var(--accent-blue); }
.stat-icon126.yellow { background: rgba(234, 179, 8, 0.2); color: var(--accent-yellow); }

.stat-icon126 svg {
    width: 24px;
    height: 24px;
}

.stat-change126 {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
}

.stat-change126.up {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent);
}

.stat-number126 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    font-family: 'SF Mono', 'Monaco', monospace;
}

.stat-label126 {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Module Section */
.module126 {
    margin-bottom: 30px;
}

.module-header126 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.module-header126 h2 {
    font-size: 20px;
    font-weight: 600;
}

.module-header126 a {
    font-size: 14px;
    color: var(--accent-blue);
}

/* Features Grid */
.features-grid126 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card126 {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card126:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.feature-icon126 {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon126 svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.feature-card126 h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card126 p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Process Grid */
.process-grid126 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card126 {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.process-card126:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.process-step126 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 18px;
}

.process-card126 h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-card126 p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Grid */
.contact-grid126 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card126 {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.contact-card126:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon126 {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon126 svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.contact-card126 h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card126 p {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    font-family: 'SF Mono', 'Monaco', monospace;
}

/* Footer */
.footer126 {
    padding: 30px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid126 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav126 {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: row;
        align-items: center;
        padding: 0 20px;
    }

    .nav-container126 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-menu126 {
        display: none;
    }

    .main-content126 {
        margin-left: 0;
        margin-top: 70px;
    }

    .stats-grid126,
    .features-grid126,
    .process-grid126,
    .contact-grid126 {
        grid-template-columns: 1fr;
    }
}
