:root{
  --bg:#0b0b0c;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --soft:rgba(255,255,255,.10);
  --soft2:rgba(255,255,255,.06);
  --accent:#7c3aed;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:48px 20px;
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.brand{
  font-weight:800;
  letter-spacing:1.5px;
  font-size:48px; /* هون بتكبر/بتصغر اسمك */
}

.nav a{
  color:var(--text);
  text-decoration:none;
  margin-left:14px;
  opacity:.85;
}
.nav a:hover{opacity:1}

.hero{
  margin-top:28px;
  padding:28px;
  border:1px solid var(--soft);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}

.hero h1{margin:0 0 10px;font-size:34px}
.hero p{margin:0;opacity:.85;max-width:900px;line-height:1.55}

.btns{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}
.primary{background:var(--accent);color:#fff}
.ghost{border:1px solid rgba(255,255,255,.18);color:#fff}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.grid{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:16px;
}

.card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
}

.thumb{
  height:160px;
  background-position:center;
  background-size:cover;   /* هذا اللي يمنع الزوم الغلط */
  background-repeat:no-repeat;
}

.content{padding:14px}
.tag{font-size:12px;opacity:.75}
.title{margin:6px 0 10px;font-size:18px;font-weight:800}
.link{color:#c4b5fd;text-decoration:none;font-weight:700}
.link:hover{text-decoration:underline}

.footer{
  margin-top:40px;
  opacity:.85;
  font-size:14px; /* هون بتغير حجم خط الايميل والرقم */
}

.foot-title{
  font-weight:800;
  font-size:22px;
  margin-bottom:6px;
}

.foot-row{margin:2px 0}
.foot-row span{opacity:.9}
.foot-link{color:#c4b5fd;text-decoration:none}
.foot-link:hover{text-decoration:underline}

.copyright{margin-top:10px;opacity:.8;font-size:13px}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  line-height: 55px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}