    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Tajawal',sans-serif;
    }

    body{
      background:#111;
      color:#fff;
      overflow-x:hidden;
    }

    body.light{
      background:#eef2f7;
      color:#111;
    }

    .bg-glow{
      position:fixed;
      width:500px;
      height:500px;
      border-radius:50%;
      filter:blur(120px);
      z-index:-1;
      opacity:.4;
      animation:float 8s ease-in-out infinite;
    }

    .glow1{
      top:-150px;
      right:-150px;
      background:#f6d6542d;
    }

    .glow2{
      bottom:-150px;
      left:-150px;
      background:#f6d6542d;
    }

    @keyframes float{
      0%,100%{
        transform:translateY(0);
      }
      50%{
        transform:translateY(30px);
      }
    }

.container{
  width: 90%;
  max-width: 1300px;
}

header{
  position:relative;
  padding:30px 0;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

.logo img{
  width: 120px;
  object-fit:contain;
  transition:.3s;
}

body.light .logo img{
  width: 120px;
  object-fit:contain;
  transition:.3s;
}

.logo img:hover{
  transform:scale(1.05);
}

    .theme-btn{
      border:none;
      background:rgba(8, 8, 8, 0.08);
      backdrop-filter:blur(10px);
      color:#fff;
      width:50px;
      height:50px;
      border-radius:16px;
      cursor:pointer;
      font-size:20px;
      transition:.3s;
    }

    body.light .theme-btn{
      color:#111;
      background:#fff;
    }

    .theme-btn:hover{
      transform:scale(1.1);
    }

    .hero{
      text-align:center;
      padding:80px 0 50px;
    }

    .hero h1{
      font-size:65px;
      line-height:1.2;
      margin-bottom:20px;
      font-weight:800;
    }

    .hero span{
      background:linear-gradient(90deg,#EAB308,#EAB308);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .hero p{
      color:#b8c0d9;
      font-size:20px;
      max-width:700px;
      margin:auto;
      line-height:1.8;
    }

    body.light .hero p{
      color:#4b5563;
    }

    .cards{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:25px;
      margin-top:60px;
      padding-bottom:80px;
    }

.card{
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .35s ease;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

body.light .card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
  border-color: rgba(255,255,255,.18);
}

.card::before{
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,.08), transparent 60%);
  transform: rotate(25deg);
  opacity: 0;
  transition: .4s;
}

.card:hover::before{
  opacity: 1;
}

    .icon{
      width:75px;
      height:75px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:22px;
      font-size:35px;
      margin-bottom:25px;
      background:linear-gradient(135deg,#EAB308,#EAB308);
      box-shadow:0 10px 30px rgba(255, 221, 0, 0.3);
    }

.card h2{
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center
}

.date{
  font-size: 20px;
  color: #EAB308;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.countdown{
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #cbd5e1;
}

/* كل عنصر داخل العدّاد */
.countdown span{
  min-width: 80px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-weight: 600;
  letter-spacing: .5px;
  transition: .3s;
  backdrop-filter: blur(10px);
}

/* تأثير عند المرور */
.countdown span:hover{
  transform: translateY(-3px);
  border-color: rgba(255,215,0,.3);
}

/* الوضع الفاتح */
body.light .countdown span{
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

    .search-box{
      margin-top:40px;
      display:flex;
      justify-content:center;
    }

    .search-box input{
      width:100%;
      max-width:600px;
      padding:20px 25px;
      border:none;
      outline:none;
      border-radius:22px;
      background:rgba(255,255,255,.08);
      color:#fff;
      font-size:18px;
      backdrop-filter:blur(10px);
    }

    body.light .search-box input{
      background:#fff;
      color:#111;
      box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    footer{
      text-align:center;
      padding:40px 0;
      color:#94a3b8;
      font-size:16px;
    }

    body.light footer{
      color:#6b7280;
    }

    @media(max-width:768px){

      .hero h1{
        font-size:42px;
      }

      .hero p{
        font-size:17px;
      }

      .card h2{
        font-size:24px;
      }

    }
.countdown{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}

.countdown span{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  padding:10px 14px;
  border-radius:14px;
  font-size:15px;
  font-weight:700;
  animation:pulse 1s infinite;
  backdrop-filter:blur(10px);
}

body.light .countdown span{
  background:#fff;
}

@keyframes pulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.05);
  }

  100%{
    transform:scale(1);
  }

}
.icon i{
  font-size:32px;
}
/* التوب بار يسار */
.topbar{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
}

.topbar a{
  color:#fff;
  text-decoration:none;
  margin-left:15px;
  font-size:14px;
}
/* موبايل */
@media (max-width:600px){

  .theme-btn{
    order:2;
  }

  .topbar{
    order:3;
    width:100%;
    justify-content:center;
  }
}

.menu-btn{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  background:rgba(8, 8, 8, 0.08);
  border:16px;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  transition:.3s;
  backdrop-filter:blur(10px);
}

body.light .menu-btn{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:none;
  color:#000;
  font-size:24px;
  cursor:pointer;
}

    .theme-btn:hover{
      transform:scale(1.1);
    }

/* الخلفية */
.overlay{
  position:fixed;
  top:0;
  right:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:999;
}

/* السايد بار */
.sidebar{
  position:fixed;
  top:0;
  right:-260px;
  width:260px;
  height:100%;
  background:#EAB308;
  padding-top:60px;
  transition:.3s;
  z-index:1000;
}

.sidebar a{
  display:block;
  color:#000;
  text-decoration:none;
  padding:15px 20px;
  opacity:0;
  transform:translateX(20px);
  transition:.4s;
}


/* فتح القائمة */
.sidebar.show{
  right:0;
}

.sidebar.show a{
  opacity:1;
  transform:translateX(0);
}

/* تأخير تدريجي لكل عنصر */
.sidebar.show a:nth-child(1){
  transition-delay:0.1s;
}
.sidebar.show a:nth-child(2){
  transition-delay:0.2s;
}
.sidebar.show a:nth-child(3){
  transition-delay:0.3s;
}

.overlay.show{
  opacity:1;
  visibility:visible;
}
body{
    margin:0;
    font-family: 'Tahoma', sans-serif;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

/* البنر الأساسي */
.banner{
    background: linear-gradient(135deg,#EAB308,#EAB308);
    color:#111;
    width:100%;
    max-width:1300px;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* النص */
.text h2{
    margin:0;
    font-size:30px;
}
.text p{
    margin:8px 0 0;
    font-size:15px;
}

/* الأزرار */
.buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

button, a{
    border:none;
    padding:10px 15px;
    border-radius:10px;
    cursor:pointer;
    font-size:14px;
    text-decoration:none;
    font-weight:bold;
}

/* زر نسخ */
.copy{
    background:#111;
    color:#fbe81a;
}

/* زر تسوق */
.shop{
    background:#fff;
    color:#111;
}

/* تصميم الجوال */
@media (max-width:768px){
    .banner{
        flex-direction:column;
        text-align:center;
        width:100%;
        border-radius:25px;
    }

    .buttons{
        justify-content:center;
    }
}
.container1 {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
  padding: 0 15px; /* مهم للجوال */
  box-sizing: border-box;
}

.container1 .text h2 {
  margin: 30px 0;
  font-size: 30px;
}

.container1 .text p {
  margin: 8px 0 0;
  font-size: 19px;
}

/* تحسين للجوال */
@media (max-width: 768px) {
  .container1 .text h2 {
    font-size: 22px;
    margin: 20px 0;
  }

  .container1 .text p {
    font-size: 16px;
  }
}

.main-card{
  margin-top:50px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
  border-radius:35px;
  padding:50px 35px;
  position:relative;
  overflow:hidden;
  transition: all .3s ease;
}

/* تأثير الإضاءة */
.main-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,transparent,rgba(255,255,255,.05));
  pointer-events:none;
}

/* ===== LIGHT MODE ===== */
body.light .main-card{
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  backdrop-filter:none;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

body.light .main-card::before{
  background:linear-gradient(135deg,transparent,rgba(0,0,0,.03));
}

.icon{
  width:90px;
  height:90px;
  margin:auto;
  margin-bottom:25px;
  border-radius:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  background:linear-gradient(135deg,#EAB308,#EAB308);
  box-shadow:0 10px 35px rgba(255, 217, 0, 0.3);
}

.card-title{
  text-align:center;
  font-size:38px;
  font-weight:800;
  margin-bottom:15px;
}

.salary-date{
  text-align:center;
  color:#f6d554fe;
  font-size:24px;
  font-weight:700;
  margin-bottom:40px;
}

.countdown{
  display:flex;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:18px;
  padding:10px;
}

.time-box{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:28px 18px;
  text-align:right;
  transition:all .35s ease;
  backdrop-filter: blur(10px);
}

/* لمسة إضاءة خفيفة */
.time-box::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle,rgba(255,215,0,.15),transparent 60%);
  transform:rotate(25deg);
  opacity:0;
  transition:.4s;
}

.time-box:hover{
  transform:translateY(-6px) scale(1.02);
}

.time-box:hover::before{
  opacity:1;
}

.time-box h2{
  font-size:48px;
  margin-bottom:8px;
  background:linear-gradient(135deg,#facc15,#f97316);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  letter-spacing:1px;
}

.time-box p{
  color:#94a3b8;
  font-size:16px;
  letter-spacing:.5px;
}

/* الوضع الفاتح */
body.light .time-box{
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

body.light .time-box p{
  color:#475569;
}

.info-box{
  margin-top:40px;
  background:rgba(255,255,255,.05);
  border-radius:25px;
  padding:30px;
  line-height:2;
  color:#cbd5e1;
  font-size:18px;
  transition: all .3s ease;
}

/* النص العريض */
.info-box strong{
  color:#fff;
}

/* ===== LIGHT MODE ===== */
body.light .info-box{
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  color:#1f2937;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

body.light .info-box strong{
  color:#111827;
}

.last-update{
  margin-top:25px;
  text-align:center;
  color:#94a3b8;
  font-size:15px;
}

footer{
  text-align:center;
  padding:50px 0 30px;
  color:#94a3b8;
  font-size:15px;
}

@media(max-width:768px){

  .hero h1{
    font-size:40px;
  }

  .hero p{
    font-size:17px;
  }

  .card-title{
    font-size:30px;
  }

  .time-box h2{
    font-size:40px;
  }

}
.logo i{
  font-size: clamp(48px, 3vw, 48px);
}
.cookie-banner{
  position:fixed;
  bottom:20px;
  left:20px;
  right:20px;
  max-width:420px;
  margin:auto;
  background:#000;
  color:#fff;
  padding:16px 18px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  z-index:9999;
  animation:showCookie .4s ease;
}

.cookie-banner p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#d1d5db;
}

.cookie-banner button{
  border:none;
  background:#EAB308;
  color:#000;
  padding:10px 18px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
  transition:.3s;
}

.cookie-banner button:hover{
  transform:scale(1.05);
}

@keyframes showCookie{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:600px){
  .cookie-banner{
    flex-direction:column;
    text-align:center;
  }

  .cookie-banner button{
    width:100%;
  }
}
.ad-banner{ display:flex; justify-content:center; align-items:center; width:100%; margin:20px auto; overflow:hidden; } 
 .ad-banner iframe, .ad-banner div{ max-width:100%; }

     .container2 {
      max-width: 1300px;
      width: 100%;
      text-align: center;
      position: relative;
      z-index: 2;
    }

     .badge {
      display: inline-block;
      padding: 10px 20px;
      border: 1px solid #EAB308;
      border-radius: 50px;
      color: #EAB308;
      background: rgba(68, 125, 239, 0.1);
      margin-bottom: 25px;
      font-size: 14px;
    }

    h1 {
      font-size: 64px;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    h1 span {
      color: #EAB308;
    }

    .desc {
      color: #cbd5e1;
      font-size: 20px;
      max-width: 700px;
      margin: auto;
      line-height: 1.8;
      margin-bottom: 50px;
    }

    .cards1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .card1 {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 25px;
      transition: 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .card1:hover {
      transform: translateY(-8px);
      border-color: #EAB308;
    }

    .store {
      font-size: 24px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .discount {
      color: #EAB308;
      margin-bottom: 20px;
      font-size: 18px;
    }

    .code1 {
      background: #EAB308;
      padding: 12px;
      border-radius: 12px;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    body.light .card1{
      background: rgba(234, 179, 8, 0.07);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 25px;
      transition: 0.3s ease;
      backdrop-filter: blur(10px);
}

    .code1:hover {
      background: #EAB308;
    }

    .store-btn {
      display: block;
      margin-top: 14px;
      background: white;
      color: #0f172a;
      padding: 12px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .store-btn:hover {
      background: #EAB308;
      color: white;
    }
        .toast {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%) translateY(30px);
      background: #EAB308;
      color: #000;
      padding: 14px 22px;
      border-radius: 14px;
      font-size: 16px;
      font-weight: bold;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 9999;
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    @media(max-width:768px){
      h1 {
        font-size: 38px;
      }

      .desc {
        font-size: 16px;
      }
    }
    .desc {
      color: #cbd5e1;
      font-size: 20px;
      max-width: 700px;
      margin: auto;
      line-height: 1.8;
      margin-bottom: 50px;
    }

       body.light .desc {
      color: #000000;
      font-size: 20px;
      max-width: 700px;
      margin: auto;
      line-height: 1.8;
      margin-bottom: 50px;
    }
        .hero1{
      text-align:center;
      padding:0px 0 50px;
    }