/* ==========================================================
   PROJECT : QatarLotto V2
   FILE    : statistics.css
   VERSION : FINAL
========================================================== */

.statistics-section{
    padding:0 30px 40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{

    background:#171F2D;

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    padding:28px;

    transition:.25s;

    box-shadow:0 10px 25px rgba(0,0,0,.18);
    overflow:hidden;
position:relative;

}

.stat-card:hover{

    transform:translateY(-5px);

    border-color:#8A1538;
    
    box-shadow:0 18px 40px rgba(0,0,0,.28);

}

.stat-card span{

    display:block;

    color:#97A5BD;

    font-size:14px;

    margin-bottom:14px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.stat-card h2{

    color:#FFF;

    font-size:34px;

    font-weight:700;

    margin:0;
    line-height:1.15;
word-break:break-word;

}

@media(max-width:1100px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.statistics-section{

padding:20px;

}

.stats-grid{

grid-template-columns:1fr;

}

.stat-card{

padding:24px;

}

.stat-card h2{

font-size:28px;

}

}

@media(max-width:480px){

.statistics-section{
padding:16px;
}

.stat-card{
padding:20px;
border-radius:16px;
}

.stat-card span{
font-size:13px;
}

.stat-card h2{
font-size:24px;
}

}