
.info-section {
    margin-top: 40px !important;
    text-align: right;
}
.content-box {
    background: rgba(255, 255, 255, 0.03);
    border-right: 4px solid #f1c40f; /* خط ذهبي جانبي */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    line-height: 1.8;
}
.content-box h3 {
    color: #f1c40f;
    margin-top: 0;
    font-size: 20px;
}
.content-box p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 0;
}

  .post-container {
    max-width: 800px;
    margin: 20px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    direction: rtl;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .post-container h2 { color: #2c3e50; border-bottom: 2px solid #f1c40f; padding-bottom: 10px; }
  .post-input {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    resize: vertical;
  }
  .btn-publish {
    background-color: #27ae60;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 15px;
    transition: 0.3s;
  }
  .btn-publish:hover { background-color: #2ecc71; }


  <h2>📝 انشر تحليلك الاقتصادي اليوم</h2>
  <input type="text" class="post-input" placeholder="عنوان المنشور (مثلاً: توقعات الذهب لليوم)...">
  <textarea class="post-input" rows="6" placeholder="اكتب تفاصيل التحليل هنا..."></textarea>
  <button class="btn-publish">نشر الآن</button>

/* كود "اللمسة الفنية" لتنظيم الصفحة */
.gold-articles-section {
    max-width: 800px; /* بيخلي الموقع ملموم في النص مش عريض */
    margin: 30px auto; /* بيوسط المحتوى */
    direction: rtl;
    padding: 10px;
}

.article-item {
    margin-bottom: 15px;
    border: 1px solid #d4af37; /* لون ذهبي */
    border-radius: 8px;
    background: #1a1a1a; /* خلفية غامقة شيك */
}

.article-header {
    background-color: #d4af37;
    color: #000;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    text-align: right;
}

.article-content {
    max-height: 0; /* المقال بيكون مستخبي */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #000;
    color: #fff;
}

/* لما نضغط على العنوان يفتح المقال */
.article-item.active .article-content {
    max-height: 2000px; 
    padding: 15px;
}

