/* إعادة ضبط التنسيقات الأساسية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(135deg, #0f1d2c 0%, #1e3a5f 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #ffffff;
}

/* بطاقة المحتوى المنتصفة */
.social-page-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* قسم النصوص */
.badge {
  display: inline-block;
  background: rgba(0, 136, 255, 0.2);
  color: #33a1ff;
  border: 1px solid rgba(0, 136, 255, 0.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.3;
}

.sub-title {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

/* حاوية الأيقونات */
.social-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

/* أزرار التواصل والأيقونات */
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.social-btn i {
  font-size: 2.2rem;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.social-btn .platform-name {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

/* التأثيرات عند مرور الماوس (Hover Styles) */
.social-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.social-btn:hover i {
  transform: scale(1.15);
}

/* ألوان الشبكات الخاصة لكل منصة عند التمرير */
.social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
}

.social-btn.snapchat:hover {
  background: #fffc00;
  border-color: #fffc00;
  color: #000000; /* لون الأيقونة والمسمى يتحول للأسود للوضوح */
}

.social-btn.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-btn.gmail:hover {
  background: #ea4335;
  border-color: #ea4335;
}

/* الملاحظة الختامية */
.footer-note p {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 600;
}

/* التوافق مع الهواتف الذكية */
@media (max-width: 600px) {
  .glass-card {
    padding: 35px 20px;
  }
  
  .main-title {
    font-size: 1.7rem;
  }
  
  .social-btn {
    width: 85px;
    height: 85px;
  }
  
  .social-btn i {
    font-size: 1.8rem;
  }
}

/* footer */
