/* ======== استيراد الخطوط ======== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700;900&family=Poppins:wght@400;700;900&display=swap');

/* ======== المتغيرات العامة ======== */
:root {
    --container-width: 1200px;
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Poppins', sans-serif;
}
html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
}


/* ======== الوضع الداكن (افتراضي) ======== */
body.dark-mode {
    --bg-color: #0d0d1a;
    --surface-color: #1c1c2e;
    --primary-color: #8a2be2;
    --secondary-color: #3d3d5c;
    --text-color: #e0e0e0;
    --text-color-muted: #a0a0a0;
    --border-color: #333;
}

/* ======== الوضع الفاتح ======== */
body.light-mode {
    --bg-color: #f4f7fc;
    --surface-color: #ffffff;
    --primary-color: #6a11cb;
    --secondary-color: #e9e9f0;
    --text-color: #212121;
    --text-color-muted: #666;
    --border-color: #ddd;
}

/* ======== الأنماط العامة ======== */
* { font-family: var(--font-ar); box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-color); color: var(--text-color); transition: background-color 0.3s, color 0.3s;     display: flex;
    flex-direction: column; }
a { color: var(--primary-color); text-decoration: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

/* ======== الهيدر ======== */
.site-header { background-color: var(--surface-color); padding: 15px 0; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; transition: background-color 0.3s, border-color 0.3s; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-en); font-size: 28px; font-weight: 900; color: #fff; }
body.light-mode .logo { color: var(--text-color); }
.logo span { color: var(--primary-color); }
.navbar a { color: var(--text-color-muted); margin: 0 15px; font-size: 16px; font-weight: 700; transition: color 0.3s; }
.navbar a:hover, .navbar a.active { color: #fff; }
body.light-mode .navbar a:hover, body.light-mode .navbar a.active { color: var(--primary-color); }
.header-actions .action-btn { background: none; border: none; color: var(--text-color); font-size: 20px; margin-left: 15px; cursor: pointer; width: 30px; text-align: center; }
.mobile-only { display: none; }

/* ======== البانر الرئيسي (Hero) ======== */
.hero { background-image: linear-gradient(rgba(13, 13, 26, 0.8), rgba(13, 13, 26, 1)), url('https://via.placeholder.com/1500x600.png/1c1c2e/8a2be2?text=Gaming+Background'); background-size: cover; background-position: center; padding: 100px 0; text-align: center; }
.hero h1 { font-size: 48px; font-weight: 900; margin-bottom: 15px; color: #fff; }
.hero p { font-size: 20px; color: var(--text-color-muted); margin-bottom: 30px; }
.btn { padding: 12px 30px; border-radius: 8px; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s; border: 2px solid transparent; }
.btn-primary { background-color: var(--primary-color); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4); }
.btn-secondary { background-color: var(--secondary-color); color: var(--text-color); }
.btn-secondary:hover { border-color: var(--primary-color); background-color: transparent; color: var(--primary-color); }

/* ======== الفوتر ======== */
.site-footer {
    background-color: #1C1C2E; /* لون أغمق قليلاً من الخلفية */
    padding: 50px 0 0;
    margin-top: 50px; /* يمكنك تعديل هذه القيمة حسب الحاجة */
    border-top: 1px solid var(--border-color);
    flex-shrink: 0; /* يمنع الفوتر من التقلص */
}
.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.footer-about .logo {
    margin-bottom: 15px;
    display: inline-block;
}
.footer-about p {
    color: var(--text-color-muted);
    line-height: 1.7;
}
.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color-muted);
    transition: color 0.3s, transform 0.3s;
}
.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}
.social-icons a {
    color: var(--text-color-muted);
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color-muted);
    font-size: 0.9rem;
}
.social-links a { margin: 0 10px; font-size: 20px; color: var(--text-color-muted); transition: color 0.3s; }
.social-links a:hover { color: var(--primary-color); }

/* ======== التجاوب مع الجوال (Responsive) ======== */
@media (max-width: 768px) {
    .navbar { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: var(--surface-color); flex-direction: column; width: 100%; padding: 20px; border-bottom: 1px solid var(--border-color); }
    .navbar.active { display: flex; }
    .navbar a { margin: 10px 0; width: 100%; text-align: center; }
    .mobile-only { display: inline-block; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    /* ======== تصميم الفوتر الموحد ======== */
.social-icons a {
    color: var(--text-color-muted);
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s, transform 0.3s;
}
.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}
}
/* ======== تصميم قائمة المستخدم المنسدلة ======== */
.user-menu-container {
    position: relative;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.user-avatar-btn:hover {
    background-color: #4a4a70; /* لون أغمق قليلاً عند المرور */
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-btn span {
    font-size: 14px;
    font-weight: 700;
}

.user-avatar-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.user-avatar-btn.active i {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 10px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: var(--text-color-muted);
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.2s, color 0.2s;
    width: 100%; /* For the form button */
    text-align: right; /* For the form button */
    background: none; /* For the form button */
    border: none; /* For the form button */
    cursor: pointer; /* For the form button */
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 8px 0;
}
/* ======== تعديل لتنسيق أزرار الهيدر ======== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* لإضافة مسافة بسيطة بين الأزرار */
}
/* ======== تصميم زر الخطر (الأحمر) ======== */
.btn.btn-danger {
    background-color: #dc3545; /* لون أحمر واضح */
    color: #fff;
    border-color: #dc3545;
}

.btn.btn-danger:hover {
    background-color: #c82333; /* لون أحمر أغمق عند التمرير */
    border-color: #bd2130;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}
/* ======== تنسيقات المودال المفقودة ======== */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-50 {
    z-index: 50;
}

.overflow-y-auto {
    overflow-y: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.opacity-75 {
    opacity: 0.75;
}

.sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.sm\:max-w-2xl {
    max-width: 42rem;
}

.sm\:w-full {
    width: 100%;
}

.transform {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
/* ======== تصميم مودال تأكيد الحذف الجديد ======== */
/* ======== تصميم مودال تأكيد الحذف الجديد ======== */
.confirm-delete-modal {
    /* التصميم الأساسي للصندوق الأبيض */
    background-color: #1C1C2E;
    color: #fff; /* لون نص أسود للوضوح على الخلفية البيضاء */
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 450px; /* تحديد عرض مناسب للمودال */
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.confirm-delete-modal .modal-icon {
    font-size: 3rem; /* تصغير الأيقونة قليلاً */
    color: #dc3545; /* لون أحمر للخطر */
    margin-bottom: 1rem;
    background-color: #fee2e2; /* خلفية حمراء فاتحة للأيقونة */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.confirm-delete-modal h2 {
    font-size: 1.5rem; /* حجم الخط للعنوان */
    font-weight: 900;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.confirm-delete-modal p {
    font-size: 1rem;
    color: #fff;
    max-width: 350px;
    margin: 0 auto 1.5rem auto;
}

/* استخدام نفس تنسيق حقول الإدخال الاحترافية */
.confirm-delete-modal .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
 .confirm-delete-modal .input-field::placeholder {
    color: #9ca3af;
}

/* تصميم الأزرار داخل المودال */
.confirm-delete-modal .btn {
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.confirm-delete-modal .btn-danger {
    background-color: #dc3545;
}
.confirm-delete-modal .btn-danger:hover {
    background-color: #c82333;
}
.confirm-delete-modal .ttt {
    margin-top: 15px;
}
 .confirm-delete-modal .btn-secondary {
    background-color: #e5e7eb;
    color: #4b5563;
    border: none;
}
.confirm-delete-modal .btn-secondary:hover {
    background-color: #d1d5db;
}
/* ======== تنسيق لتوسيط المودال (النافذة المنبثقة) ======== */
/* ========================================================== */
/* == تنسيقات المودال (النافذة المنبثقة) - الحل النهائي == */
/* ========================================================== */

/* الطبقة التي تغطي الشاشة بالكامل وتقوم بالتوسيط */
.fixed.inset-0 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    /* أهم 3 أسطر للتوسيط وتعتيم الخلفية */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 13, 26, 0.7); /* لون الخلفية المعتمة */
    backdrop-filter: blur(4px); /* تأثير ضبابي جميل للخلفية */
    z-index: 50; /* للتأكد من أنها فوق كل شيء */
}

/* هذا يضمن أن صندوق المودال نفسه لا يتأثر بخصائص التوسيط */
.fixed.inset-0 > div {
    position: relative;
    z-index: 51;
}

/* تنسيق الطبقة الشفافة خلف المودال */
.fixed.inset-0 > .absolute.inset-0 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
/* ======== تصميم نقطة التنبيهات النابضة ======== */
.user-menu-container {
    position: relative; /* ضروري لتحديد مكان النقطة */
}

.notification-dot {
    position: absolute;
    top: 2px;
    right: 4px; /* اضبط المكان حسب تصميمك */
    width: 12px;
    height: 12px;
    background-color: #dc3545; /* لون أحمر */
    border-radius: 50%;
    border: 2px solid var(--surface-color); /* لإعطاء حدود حول النقطة */

    /* تفعيل الأنيميشن */
    animation: pulse 1.5s infinite;
}

/* تعريف حركة النبض */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}
/* ======== تصميم عداد التنبيهات النابض ======== */
.notification-count-badge {
    background-color: #dc3545; /* لون أحمر */
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    padding: 2px 8px;
    min-width: 22px;
    text-align: center;

    /* تفعيل الأنيميشن */
    animation: pulse-badge 2s infinite;
}

/* تعريف حركة النبض للعداد */
@keyframes pulse-badge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* كلاس مساعد لتوزيع العناصر في رابط التنبيهات */
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.gap-3 {
    gap: 12px;
}

/* ======== تصميم شريط البحث ======== */
.search-bar-container { position: relative; flex-grow: 1; max-width: 400px; }
.search-input-wrapper { position: relative; }
.search-input { width: 100%; background-color: var(--secondary-color); border: 1px solid var(--border-color); border-radius: 50px; padding: 10px 45px 10px 20px; color: var(--text-color); font-size: 14px; }
.search-input-wrapper i { position: absolute; top: 50%; right: 20px; transform: translateY(-50%); color: var(--text-color-muted); }
.search-results-dropdown { position: absolute; top: calc(100% + 10px); left: 0; right: 0; background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; max-height: 400px; overflow-y: auto; z-index: 1200; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.search-results-dropdown ul { list-style: none; }
.search-result-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem; transition: background-color 0.2s; }
.search-result-item:hover { background-color: var(--secondary-color); }
.search-result-item img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.result-name { font-weight: 700; color: var(--text-color); }
.result-price { font-size: 14px; color: var(--primary-color); }
.no-results { padding: 1rem; text-align: center; color: var(--text-color-muted); }
