@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Cairo', sans-serif;
}

body {
  background: #FFFFFF;
  color: #000;
  min-height: 100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction: column;
}

.container {
  text-align:center;
  padding:30px 20px;
  width:90%;
  max-width:700px;
}

h1 {
  font-size:2.8rem;
  margin-bottom:10px;
  color:#000;
  font-weight:700;
}
.subtitle {
  font-size:1.2rem;
  color:#2E99C1;
  margin-bottom:40px;
}

/* شعار مع لمعة */
.logo {
  position:relative;
  display:inline-block;
  margin-bottom:20px;
}
.logo img {
  width:150px;
  height:auto;
}
.shine-logo {
  position:absolute;
  top:0;
  left:-50%;
  width:50%;
  height:100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  animation: shineLogo 3s linear infinite;
  pointer-events: none;
}
@keyframes shineLogo {
  0%   { left:-50%; }
  100% { left:100%; }
}

/* العد التنازلي */
.countdown {
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}
.time-box {
  position:relative;
  background:#F6ED51;
  color:#1c4e64;
  padding:20px 15px;
  border-radius:15px;
  min-width:90px;
  transition:0.3s;
  overflow:hidden;
}
.time-box span {
  display:block;
  font-size:2rem;
  font-weight:700;
  color:#2E99C1;
}
.time-box p {
  margin-top:5px;
  font-size:1rem;
  font-weight:600;
  color:#000;
}

/* لمعة داخل المربع */
.shine-box {
  position:absolute;
  top:0;
  left:-50%;
  width:50%;
  height:100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shineBox 2.5s linear infinite;
  pointer-events:none;
  border-radius:15px;
}
@keyframes shineBox {
  0%   { left:-50%; }
  100% { left:100%; }
}

/* زر الانطلاق */
.btn {
  display:inline-block;
  background:#2E99C1;
  color:#fff;
  padding:12px 35px;
  font-size:1.2rem;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  margin-top:30px;
  opacity:0;
  transform:translateY(20px);
  transition:0.5s all;
  pointer-events: none;
}

.btn.show {
  opacity:1;
  transform:translateY(0);
  pointer-events: auto;
}
.btn:hover {
  background:#1c4e64;
  box-shadow:0 0 20px rgba(46,153,193,0.5);
}

/* responsive */
@media(max-width:500px){
  .time-box span{font-size:1.5rem;}
  .time-box p{font-size:0.85rem;}
  .btn{padding:10px 28px;font-size:1rem;}
}

/* حقوق الطبع والنشر */
.copyright {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}
.copyright a {
  color: #2E99C1;
  text-decoration: none;
  font-weight: 600;
}
.copyright a:hover {
  text-decoration: underline;
}
