/* ===============================
   إمساكية رمضان - تصميم احترافي
   =============================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

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

body{
font-family:'Cairo',sans-serif;
background: radial-gradient(circle at top,#102030,#05070c);
color:#ffffff;
text-align:center;
padding:20px;
min-height:100vh;
}

/* العنوان */
h1{
color:#ffd700;
font-size:28px;
margin-bottom:10px;
}

h3{
margin-bottom:20px;
font-weight:600;
color:#ccc;
}

/* كرت الصلاة */
.card{
background:linear-gradient(145deg,#0f1a24,#0b131b);
padding:16px 20px;
margin:12px auto;
width:100%;
max-width:360px;
border-radius:16px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:18px;
transition:0.3s ease;
box-shadow:0 4px 15px rgba(0,0,0,0.4);
}

/* اسم الصلاة */
.card span:first-child{
font-weight:600;
}

/* الوقت */
.card span:last-child{
font-weight:500;
opacity:0.9;
}

/* الصلاة التالية فقط */
.active{
border:3px solid #ffd700;
box-shadow:
0 0 10px #ffd700,
0 0 20px rgba(255,215,0,0.7),
0 0 40px rgba(255,215,0,0.4);
transform:scale(1.03);
}

/* عداد */
#countdown{
margin-top:20px;
font-size:20px;
color:#ffd700;
font-weight:700;
}

/* تذييل */
footer{
margin-top:25px;
font-size:14px;
opacity:0.7;
}

/* تحسين موبايل */
@media(max-width:480px){
.card{
font-size:16px;
padding:14px;
}
h1{
font-size:22px;
}
}
