.page{

    padding:40px;

}

.developer-hero{

    margin:40px 0 60px;

}

.developer-banner{

    background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);

    color:#ffffff;

    padding:50px;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(37,99,235,.22);

}

.developer-banner h2{

    font-size:42px;

    margin-bottom:20px;

    font-weight:800;

}

.developer-banner p{

    max-width:900px;

    line-height:1.9;

    font-size:18px;

    margin-bottom:30px;

    opacity:.95;

}

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.hero-buttons button{

    border:none;

    padding:14px 24px;

    border-radius:12px;

    background:#ffffff;

    color:#2563eb;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.hero-buttons button:hover{

    transform:translateY(-3px);

    background:#eff6ff;

}

.developer-section{

    margin-top:70px;

}

.developer-section h2{

    font-size:30px;

    color:#0f172a;

    margin-bottom:28px;

    padding-bottom:12px;

    border-bottom:3px solid #2563eb;

}

.developer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

}

.developer-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:28px;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    transition:.25s;

}

.developer-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(37,99,235,.12);

    border-color:#93c5fd;

}

.developer-card h3{

    margin:0 0 18px;

    color:#111827;

    font-size:22px;

}

.developer-card p{

    color:#64748b;

    line-height:1.8;

    margin-top:14px;

}

.developer-card code{

    display:block;

    background:#0f172a;

    color:#38bdf8;

    padding:12px 14px;

    border-radius:10px;

    font-size:14px;

    overflow:auto;

    font-family:Consolas,monospace;

}

pre{

    background:#0f172a;

    color:#f8fafc;

    border-radius:18px;

    padding:28px;

    overflow:auto;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

}

pre code{

    font-size:15px;

    line-height:1.8;

    font-family:Consolas,monospace;

}

@media(max-width:1200px){

    .developer-banner{

        padding:36px;

    }

    .developer-banner h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .page{

        padding:20px;

    }

    .developer-banner{

        padding:28px;

    }

    .developer-banner h2{

        font-size:28px;

    }

    .developer-banner p{

        font-size:16px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons button{

        width:100%;

    }

    .developer-grid{

        grid-template-columns:1fr;

    }

    pre{

        padding:18px;

    }

}