:root{
  --bottom-space: 44px; /* حجز مساحة أسفل للملاحظة */
}

/* لا سكرول نهائياً */
html, body{
  height: 100%;
  margin: 0;
  overflow: hidden;          /* يمنع التحريك */
  font-family: 'Nunito Sans', sans-serif;
  background: linear-gradient(135deg, #eef2f5, #e1e7ec);
  color: #333;
}

/* تخطيط عمودي: هيدر (أعلى) + مَين (وسط) */
body{
  min-height: 100svh;        /* ارتفاع آمن للموبايل */
  display: flex;
  flex-direction: column;
}

/* الهيدر */
header{
  text-align: center;
  padding: 20px 12px 8px;
}
header h1{
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #357ab7;
}

/* الوسط دائماً في المنتصف */
main{
  flex: 1;
  min-height: 0;             /* مهم لتفادي تمدد يزيد الطول */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;    /* تمركز عمودي */
  text-align: center;
  padding: 0 16px var(--bottom-space); /* حجز مساحة أدنى للنص الثابت */
  gap: 12px;
}

/* صندوق الرقم */
.screen-box{
  width: 320px; max-width: 92vw;
  height: 210px;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #c8d4e0;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
}
#ticket-number{
  font-size: 92px; line-height: 1; font-weight: 700; color: #2b6cb0;
  transition: transform .25s ease;
}

/* الجملة الشخصية والوقت في الوسط */
.personal-status{
  margin: 0; padding: 0 16px;
  font-size: 18px; color: #44576a; line-height: 1.6;
}
.open-time{
  margin: 0; padding: 0 16px;
  font-size: 14px; color: #6b7a8a;
}

/* النص السفلي (بدون شكل فوتر) — ثابت وشفاف */
.merci-text{
  position: fixed;
  left: 0; right: 0;
  bottom: calc(env(safe-area-inset-bottom) + 6px);
  text-align: center;
  font-size: 16px; color: #555;
  background: transparent;    /* بدون خلفية/حدود */
  border: 0; padding: 0; margin: 0;
  pointer-events: none;       /* لا يعيق اللمس */
}

/* تحسين للموبايل الصغير */
@media (max-width: 380px){
  #ticket-number{ font-size: 78px; }
  .screen-box{ height: 190px; }
}
