/* ========================================
   CENTRAL DO DESENVOLVEDOR - CSS
   ======================================== */

/* ========================================
   PAGE BASE
   ======================================== */
.dev-page {
    background: #fafbfc;
}

/* ========================================
   HERO SECTION
   ======================================== */
.dev-hero {
    padding: 140px 0 100px;
    background: linear-gradient(160deg, #070B1A 0%, #0F1D3A 40%, #132040 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.dev-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: dev-grid-drift 20s linear infinite;
}

.dev-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.dev-hero .hero-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    color: #3B82F6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.dev-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.dev-hero h1 .highlight {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-hero .subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.dev-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.dev-hero-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d1d5db;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dev-hero-badges .badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(37, 99, 235, 0.4);
    color: #3B82F6;
}

.dev-hero-badges .badge svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.dev-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.dev-section-header::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.dev-section-header h2 {
    font-size: 2.625rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.dev-section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.dev-features {
    padding: 100px 0;
    background: #ffffff;
}

.dev-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dev-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
}

.dev-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.dev-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dev-feature-icon.blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.2));
}

.dev-feature-icon.blue svg {
    color: #2563EB;
}

.dev-feature-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
}

.dev-feature-icon.green svg {
    color: #10b981;
}

.dev-feature-icon.purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.2));
}

.dev-feature-icon.purple svg {
    color: #7c3aed;
}

.dev-feature-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.2));
}

.dev-feature-icon.cyan svg {
    color: #06B6D4;
}

.dev-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.dev-feature-card > p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dev-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.dev-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: #4b5563;
}

.dev-feature-list li svg {
    color: #2563EB;
    flex-shrink: 0;
}

.dev-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-feature-link:hover {
    gap: 12px;
    color: #1D4ED8;
}

.dev-feature-link svg {
    transition: transform 0.3s ease;
}

.dev-feature-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   CODE EXAMPLE SECTION
   ======================================== */
.dev-code {
    padding: 100px 0;
    background: #fafbfc;
}

.dev-code-container {
    max-width: 800px;
    margin: 0 auto;
}

.dev-code-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
    padding: 0 8px;
}

.dev-code-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 12px 12px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.dev-code-tab:hover {
    color: #1f2937;
    background: rgba(0, 0, 0, 0.04);
}

.dev-code-tab.active {
    background: #1e293b;
    color: #ffffff;
}

.dev-code-block {
    background: #1e293b;
    border-radius: 0 16px 16px 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.dev-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dev-code-language {
    font-size: 13px;
    font-weight: 600;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-code-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.dev-code-copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.dev-code-block pre {
    padding: 24px 32px 32px;
    margin: 0;
    overflow-x: auto;
}

.dev-code-block code {
    font-family: 'SF Mono', 'Fira Code', 'Fira Mono', Menlo, Consolas, monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #e5e7eb;
}

.dev-code-block .code-string { color: #10b981; }
.dev-code-block .code-keyword { color: #7c3aed; }
.dev-code-block .code-comment { color: #6b7280; font-style: italic; }
.dev-code-block .code-url { color: #3b82f6; }
.dev-code-block .code-flag { color: #06B6D4; }

.dev-code-description {
    text-align: center;
    margin-top: 32px;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ========================================
   RESOURCES SECTION
   ======================================== */
.dev-resources {
    padding: 100px 0;
    background: #ffffff;
}

.dev-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dev-resource-card {
    background: linear-gradient(160deg, #070B1A 0%, #0F1D3A 40%, #132040 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dev-resource-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.dev-resource-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dev-resource-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dev-resource-icon svg {
    color: #3B82F6;
}

.dev-resource-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.dev-resource-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.dev-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3B82F6;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-resource-link:hover {
    gap: 12px;
    color: #60A5FA;
}

.dev-resource-link svg {
    transition: transform 0.3s ease;
}

.dev-resource-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   SDKs SECTION
   ======================================== */
.dev-sdks {
    padding: 100px 0;
    background: #fafbfc;
}

.dev-sdks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dev-sdk-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.dev-sdk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.dev-sdk-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f3f4f6;
}

.dev-sdk-icon svg {
    width: 40px;
    height: 40px;
}

.dev-sdk-icon.php {
    background: rgba(119, 123, 180, 0.1);
    color: #777BB4;
}

.dev-sdk-icon.node {
    background: rgba(104, 160, 99, 0.1);
    color: #68A063;
}

.dev-sdk-icon.python {
    background: rgba(55, 118, 171, 0.1);
    color: #3776AB;
}

.dev-sdk-icon.java {
    background: rgba(237, 139, 0, 0.1);
    color: #ED8B00;
}

.dev-sdk-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.dev-sdk-version {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 20px;
    display: block;
}

.dev-sdk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #2563EB;
    color: #2563EB;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-sdk-btn:hover {
    background: #2563EB;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* ========================================
   SANDBOX SECTION
   ======================================== */
.dev-sandbox {
    padding: 100px 0;
    background: linear-gradient(160deg, #070B1A 0%, #0F1D3A 40%, #132040 100%);
    position: relative;
    overflow: hidden;
}

.dev-sandbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.dev-sandbox-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dev-sandbox-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dev-sandbox-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.dev-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.dev-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.dev-sandbox-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dev-sandbox-illustration {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(10px);
}

.dev-sandbox-terminal {
    background: #070B1A;
    border-radius: 12px;
    overflow: hidden;
}

.dev-sandbox-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
}

.dev-sandbox-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dev-sandbox-terminal-dot.red { background: #ef4444; }
.dev-sandbox-terminal-dot.yellow { background: #f59e0b; }
.dev-sandbox-terminal-dot.green { background: #10b981; }

.dev-sandbox-terminal-body {
    padding: 20px;
    font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
    font-size: 13px;
    line-height: 1.8;
    color: #e5e7eb;
}

.dev-sandbox-terminal-body .prompt {
    color: #3B82F6;
}

.dev-sandbox-terminal-body .output {
    color: #6b7280;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.dev-contact {
    padding: 80px 0;
    background: #ffffff;
}

.dev-contact .container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.dev-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.dev-contact-icon svg {
    color: #2563EB;
}

.dev-contact h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.dev-contact p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 28px;
}

.dev-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.dev-btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

/* ========================================
   CTA SECTION
   ======================================== */
.dev-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #1E40AF 100%);
}

.dev-cta-content {
    text-align: center;
}

.dev-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.dev-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.dev-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.dev-btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1D4ED8;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dev-btn-cta-white:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.dev-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dev-btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   HERO ANIMATIONS
   ======================================== */
@keyframes dev-grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(48px, 48px); }
}
@keyframes dev-fade-up {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}
.dev-hero .hero-tag { animation: dev-fade-up 0.6s ease-out both; }
.dev-hero h1 { animation: dev-fade-up 0.6s ease-out 0.1s both; }
.dev-hero .subtitle { animation: dev-fade-up 0.6s ease-out 0.2s both; }
.dev-hero .dev-hero-badges { animation: dev-fade-up 0.6s ease-out 0.3s both; }

/* ========================================
   RESPONSIVE - 992px
   ======================================== */
@media (max-width: 992px) {
    .dev-hero {
        padding: 120px 0 100px;
        min-height: auto;
    }

    .dev-hero h1 {
        font-size: 2.5rem;
    }

    .dev-features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .dev-resources-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dev-sdks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dev-sandbox-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dev-sandbox-text p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

    .dev-sandbox-visual {
        order: 2;
    }

    .dev-section-header h2 {
        font-size: 2.25rem;
    }
}

/* ========================================
   RESPONSIVE - 768px
   ======================================== */
@media (max-width: 768px) {
    .dev-hero {
        padding: 100px 0 40px;
        min-height: auto;
        display: flex;
        align-items: center;
    }

    .dev-hero h1 {
        font-size: 26px;
    }

    .dev-hero .subtitle {
        display: none !important;
    }

    .dev-hero .hero-tag {
        padding: 6px 14px;
        font-size: 12px;
    }

    .dev-hero-badges {
        gap: 8px;
    }

    .dev-hero-badges .badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .dev-features,
    .dev-code,
    .dev-resources,
    .dev-sdks,
    .dev-sandbox,
    .dev-contact,
    .dev-cta-section {
        padding: 60px 0;
    }

    .dev-section-header h2 {
        font-size: 26px;
    }

    .dev-section-header p {
        font-size: 14px;
    }

    .dev-feature-card {
        padding: 36px 28px;
    }

    .dev-feature-card h3 {
        font-size: 1.25rem;
    }

    .dev-resources-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .dev-resource-card {
        padding: 32px;
    }

    .dev-sdks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .dev-sdk-card {
        padding: 24px 16px;
    }

    .dev-sandbox-content {
        grid-template-columns: 1fr;
    }

    .dev-sandbox-text {
        order: -1;
    }

    .dev-sandbox-visual {
        order: 0;
    }

    .dev-sandbox-text h2 {
        font-size: 26px;
    }

    .dev-code-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }

    .dev-code-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .dev-code-block pre {
        padding: 20px;
    }

    .dev-code-block code {
        font-size: 12px;
    }

    .dev-cta-content h2 {
        font-size: 26px;
    }

    .dev-cta-content p {
        font-size: 14px;
    }

    .dev-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dev-btn-cta-white,
    .dev-btn-cta-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .dev-contact h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE - 375px
   ======================================== */
@media (max-width: 375px) {
    .dev-hero h1 {
        font-size: 1.75rem;
    }

    .dev-hero .subtitle {
        font-size: 0.95rem;
    }

    .dev-hero-badges .badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .dev-section-header h2 {
        font-size: 1.75rem;
    }

    .dev-feature-card {
        padding: 28px 20px;
    }

    .dev-sdks-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .dev-sandbox-illustration {
        padding: 20px;
    }

    .dev-sandbox-terminal-body {
        font-size: 11px;
        padding: 14px;
    }

    .dev-code-block code {
        font-size: 11px;
        line-height: 1.6;
    }
}
