/* ======================================
   DG RANK – SEO AUDIT STYLES
====================================== */

.dgrank-form{
    max-width:520px;
    margin:20px auto;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.dgrank-form input{
    flex:1;
    padding:14px;
    font-size:16px;
    border:1px solid #ccc;
    border-radius:8px;
}
.dgrank-form button{
    padding:14px 24px;
    font-size:16px;
    background:linear-gradient(135deg,#1e73be,#0d5aa7);
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
.dgrank-summary{
    max-width:520px;
    margin:30px auto;
    padding:24px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    text-align:center;
    position:relative;
}
.dgrank-summary::before{
    content:'';
    position:absolute;
    top:0;left:0;
    height:6px;width:100%;
    background:linear-gradient(90deg,#1e73be,#2ecc71);
}
.dgrank-summary h2{
    color:#1e73be;
    margin-bottom:10px;
}
.dgrank-summary p{
    font-size:16px;
    margin:6px 0;
}
.seo-score{
    margin:18px auto;
    width:120px;
    height:120px;
    border-radius:50%;
    background:linear-gradient(135deg,#1e73be,#2ecc71);
    color:#fff;
    font-size:28px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}
.dgrank-summary a{
    display:inline-block;
    margin-top:15px;
    padding:14px 22px;
    background:#1e73be;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
}
@media(max-width:480px){
    .dgrank-form{flex-direction:column}
    .seo-score{width:100px;height:100px;font-size:24px}
}
