:root {
    --dev-primary: #0f172a;
    --dev-accent: #FF4B6E;
    --dev-bg: #f8fafc;
    --dev-sidebar: #ffffff;
    --radius-lg: 24px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dev-bg);
    color: #334155;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dev-primary);
}

/* Global Header (Sticky Glassmorphism) */
.dev-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
}

/* Main Layout */
.developer-container {
    display: flex;
    min-height: calc(100vh - 70px);
}

/* Sidebar */
.dev-sidebar {
    width: 280px;
    background: var(--dev-sidebar);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 20px;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.nav-group {
    margin-bottom: 30px;
}

.nav-group h6 {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 15px;
    padding-left: 15px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    display: block;
    padding: 10px 15px;
    color: #475569;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: #f1f5f9;
    color: var(--dev-accent);
}

/* Content Area */
.dev-content {
    flex: 1;
    padding: 60px;
    max-width: 1000px;
}

.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

/* Code Blocks */
pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 25px;
    border-radius: 16px;
    font-size: 14px;
    position: relative;
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

code {
    color: var(--dev-accent);
}

pre code {
    color: inherit;
}

/* Tables */
.table-dev {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.table-dev th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    padding: 15px;
}

.table-dev td {
    padding: 15px;
    border-top: 1px solid #f1f5f9;
}

/* Cards */
.image-box-auto {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 30px;
    align-items: center;
}

@media (max-width: 991px) {
    .developer-container {
        flex-direction: column;
    }

    .dev-sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dev-content {
        padding: 30px 20px;
    }

    .image-box-auto {
        flex-direction: column;
        text-align: center;
    }
}