/* =====================================
   SHOAA AI Terminal Pro
   Dashboard CSS
===================================== */


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


body{

    font-family:"Vazirmatn",sans-serif;

    background:#060b18;

    color:#fff;

}



/* ================= CONTAINER ================= */


.terminal{

    width:100%;

    min-height:100vh;

    padding:20px;

}





/* ================= HEADER ================= */


.top-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 25px;

    background:#111827;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}



.top-header h2{

    font-weight:800;

}


.top-header h2 span{

    display:block;

    font-size:12px;

    color:#3b82f6;

    letter-spacing:3px;

}



.status{

    background:#0f172a;

    padding:10px 20px;

    border-radius:50px;

    color:#22c55e;

}



.online{

    width:10px;

    height:10px;

    background:#22c55e;

    display:inline-block;

    border-radius:50%;

    margin-left:8px;

}





/* ================= MARKET BAR ================= */


.market-bar{

    margin-top:20px;

    display:flex;

    justify-content:space-between;

    background:#111827;

    padding:18px 25px;

    border-radius:18px;

    color:#cbd5e1;

}





/* ================= SIGNAL ================= */


.signal-box{

    margin-top:25px;

    background:

    linear-gradient(
    135deg,
    #111827,
    #0f172a
    );

    border-radius:25px;

    padding:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border:1px solid rgba(255,255,255,.08);

}



.signal-main h5{

    color:#94a3b8;

}



.signal-main h1{

    font-size:55px;

    font-weight:900;

    color:#22c55e;

}





/* ================= GAUGE ================= */


.gauge{

    width:170px;

    height:170px;

    border-radius:50%;

    background:

    conic-gradient(
    #22c55e 0deg,
    #22c55e 0deg,
    #1f2937 0deg
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    font-weight:bold;

}



.gauge span{

    background:#111827;

    width:130px;

    height:130px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

}





/* ================= CARDS ================= */


.info-card{

    background:#111827;

    padding:25px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.07);

    text-align:center;

    transition:.3s;

}



.info-card:hover{

    transform:translateY(-5px);

    border-color:#3b82f6;

}



.title{

    color:#94a3b8;

    margin-bottom:15px;

}



.value{

    font-size:28px;

    font-weight:800;

}



.green{

    color:#22c55e;

}



.red{

    color:#ef4444;

}





/* ================= SECTION ================= */


section{

    margin-top:30px;

}



.section-header{

    margin-bottom:20px;

}


.section-header h3{

    font-weight:800;

}





/* ================= MARKET STATUS ================= */


.status-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}



.status-card{

    background:#111827;

    padding:25px;

    border-radius:20px;

    text-align:center;

}



.status-card i{

    font-size:35px;

    color:#3b82f6;

}



.status-card span{

    display:block;

    color:#94a3b8;

    margin:10px;

}



.status-card strong{

    font-size:22px;

}





/* ================= INDICATORS ================= */


.indicator-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:15px;

}



.indicator-card{

    background:#111827;

    padding:20px;

    border-radius:18px;

    text-align:center;

}



.indicator-card span{

    display:block;

    color:#94a3b8;

}



.indicator-card strong{

    display:block;

    margin-top:10px;

    font-size:22px;

}





/* ================= AI ANALYSIS ================= */


.analysis-box{

    background:#111827;

    border-radius:20px;

    padding:25px;

}



.reason{

    padding:12px;

    margin-bottom:10px;

    background:#1f2937;

    border-radius:12px;

    color:#e2e8f0;

}





/* ================= FOOTER ================= */


.dashboard-footer{

    margin-top:40px;

    padding:20px;

    display:flex;

    justify-content:space-between;

    background:#111827;

    border-radius:18px;

    color:#94a3b8;

}



.online-text{

    color:#22c55e;

}





/* ================= RESPONSIVE ================= */


@media(max-width:992px){


.status-grid{

grid-template-columns:repeat(2,1fr);

}


.indicator-grid{

grid-template-columns:repeat(3,1fr);

}


.signal-box{

flex-direction:column;

gap:30px;

}


}



@media(max-width:576px){


.terminal{

padding:10px;

}


.market-bar{

flex-direction:column;

gap:15px;

}


.status-grid{

grid-template-columns:1fr;

}


.indicator-grid{

grid-template-columns:repeat(2,1fr);

}


.signal-main h1{

font-size:38px;

}


.dashboard-footer{

flex-direction:column;

gap:15px;

}


}

