:root{
  --bg:#ffffff;
  --ink:#0a0a0a;
  --muted:#6b7280;
  --electric:#008cff;
  --electric-dark:#006ad1;
  --border:rgba(0,0,0,.08);
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  min-height:100vh;
  font-family:var(--font);
  color:var(--ink);
  direction:rtl;
}

/* Container */
.container{
  width:100%;
  max-width:520px;
  margin:40px auto;
  padding:32px;
  border-radius:18px;
  text-align:center;
}

/* Logo */
.logo{
  font-size:26px;
  font-weight:700;
  color:#007bff;
  text-decoration:none;
  display:block;
}

/* Subtitle */
.subtitle{
  margin:8px 0 20px;
  color:#666;
  font-size:14px;
}

/* Buttons */
.btn{
  width:100%;
  padding:13px;
  border-radius:10px;
  font-size:16px;
  background:rgba(0,123,255,0.75);
  color:#fff;
  border:none;
  cursor:pointer;
}

/* ========================= */
/* Ads – FINAL & CLEAN       */
/* ========================= */

.ads-row{
  display:flex;
  gap:10px;
  margin:14px 0;
}

.ad-box{
  flex:1;
}

.ad-box img{
  width:100%;
  height:60px;            /* الطول المطلوب */
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 4px 10px rgba(0,0,0,.12);
}

/* Stats */
.stats{
  display:flex;
  gap:8px;
  margin-top:16px;
}

.stat{
  flex:1;
  background:#f1f5ff;
  border-radius:10px;
  padding:10px;
  font-size:13px;
}

.social-footer{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:25px;
    margin-bottom:10px;
}

.social-footer img{
    width:26px;
    height:26px;
    opacity:0.75;
    transition:0.2s;
}

.social-footer img:hover{
    opacity:1;
    transform:scale(1.1);
}

.social-icons-footer{
  display:flex;
  justify-content:center;
  gap:18px;
  margin:25px 0 10px;
}

.social-icons-footer{
  display:flex;
  justify-content:center;
  gap:16px;
  margin:22px 0 12px;
}

.social-icons-footer img{
  width:22px;
  height:22px;
  opacity:.65;
  transition: opacity .2s ease, transform .2s ease;
}

.social-icons-footer img:hover{
  opacity:1;
  transform: translateY(-2px);
}

/* ===== Site Intro (Minimal & Clean) ===== */
.site-intro{
  text-align:center;
  padding:18px 20px 0px; /* ⬅️ أقل مسافة ممكنة بدون كتم */
  margin-bottom:-8px
}

/* صورة الشعار */
.intro-logo img{
  width:88px;                 /* ⬅️ حجم أكبر ومتوازن */
  height:88px;
  object-fit:cover;
  border-radius:50%;          /* ⬅️ دائري */
  background:#fff;
  box-shadow:0 10px 25px rgba(37,99,235,.35); /* ⬅️ ظل ناعم */
}


.intro-logo img{
  width:52px;      /* ⬅️ حجم متوسط */
  height:auto;
  opacity:.95;
}

/* العنوان */
.intro-text h2{
  margin:0 0 4px;
  font-size:18px;
  font-weight:800;
  letter-spacing:.3px;
  color:#2563eb;
}

/* الوصف */
.intro-text p{
  margin:0 auto;
  max-width:430px;
  font-size:14px;
  line-height:1.75;
  color:#64748b;
}

/* جوال */
@media(max-width:480px){
  .intro-logo img{
    width:46px;
  }
}

/* FORCE intro logo size */
.site-intro .intro-logo img{
  width:90px !important;
  height:90px !important;
  border-radius:50%;
  object-fit:cover;
  background:#000;
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}

