/* style.css - ملف التصميم الموحد */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Rajdhani:wght@700&display=swap');

:root {
    --primary: #7d2ae8;
    --secondary: #00e5ff;
    --bg-dark: #0f1014;
    --card-bg: #1a1b21;
    --text: #ffffff;
    --glass: rgba(20, 20, 30, 0.95);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Cairo', sans-serif; }
body { background: var(--bg-dark); color: var(--text); direction: rtl; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* الهيدر */
header {
    background: var(--glass);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    border-bottom: 2px solid var(--primary);
    position: sticky; top: 0; z-index: 1000;
}
.logo { font-family: 'Rajdhani', sans-serif; font-size: 30px; font-weight: 900; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 20px; }
.nav-links a { font-weight: bold; padding: 10px; border-radius: 5px; }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); background: rgba(255,255,255,0.05); }

/* المحتوى */
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.section-title { border-right: 5px solid var(--secondary); padding-right: 15px; font-size: 24px; margin-bottom: 20px; font-weight: bold; }

/* الأزرار */
.btn { padding: 10px 25px; border-radius: 5px; font-weight: bold; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 0 10px var(--primary); }
.btn-primary:hover { background: var(--secondary); color: black; }

/* الفوتر */
footer { background: #050505; text-align: center; padding: 30px; margin-top: 50px; border-top: 1px solid #333; }

/* كروت السيرفرات والمنتدى */
.card { background: var(--card-bg); padding: 20px; border-radius: 10px; border: 1px solid #333; margin-bottom: 20px; }
.card:hover { border-color: var(--secondary); }