/* Neon Dark Modern Dashboard Theme for SMM Panel */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #070b13;
    --bg-card: #0b111e;
    --bg-sidebar: #090e19;
    --text-main: #f8fafc;
    --text-muted: #64748b;
    --primary: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.15);
    --secondary: #0066cc;
    --accent: #ff007f;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(0, 210, 255, 0.3);
    --sidebar-width: 280px;
    --card-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --neon-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    --neon-shadow-strong: 0 0 25px rgba(0, 210, 255, 0.6);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Cairo', 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #0c182e 0%, var(--bg-main) 70%);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Page Layout */
.wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    left: 0;
    right: auto;
}

.sidebar-logo {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo img {
    max-width: 180px;
    max-height: 50px;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.3));
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.sidebar-profile {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    box-shadow: var(--neon-shadow);
    border: 2px solid rgba(255,255,255,0.1);
}

.profile-name {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.profile-balance {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 15px 10px;
    list-style: none;
    margin: 0;
}

.menu-section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 10px 15px 5px;
    font-weight: 700;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.sidebar-menu a i, .sidebar-menu a span.menu-icon {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

/* RTL Support for sidebar menu */
body.body-rtl .sidebar-menu a i, body.body-rtl .sidebar-menu a span.menu-icon,
[dir="rtl"] .sidebar-menu a i, [dir="rtl"] .sidebar-menu a span.menu-icon {
    margin-right: 0;
    margin-left: 12px;
}

.sidebar-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.sidebar-menu li.active a {
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.15), rgba(0, 102, 204, 0.05));
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 210, 255, 0.1);
}

.sidebar-menu li.active a i, .sidebar-menu li.active a span.menu-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

.badge-orange {
    background: #f59e0b;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: auto;
}
body.body-rtl .badge-orange, [dir="rtl"] .badge-orange {
    margin-left: 0;
    margin-right: auto;
}

/* Main Content Layout */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 30px;
    box-sizing: border-box;
}

/* Top Navbar */
.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-msg h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #fff;
}

.welcome-msg p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Neon buttons */
.btn-neon {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.3);
}

.btn-neon:hover {
    background: var(--primary);
    color: #000;
    box-shadow: var(--neon-shadow);
    text-shadow: none;
}

/* Cards & Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-glow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.3);
    color: var(--primary);
    box-shadow: var(--neon-shadow);
}

.stat-details h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-details .value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* Form Container Style */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--card-glow);
    position: relative;
}

.form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 24px 24px 0 0;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: var(--primary);
}

/* Social Filter Buttons */
.social-filters {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 10px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 20px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--primary);
    color: #fff;
    box-shadow: inset 0 0 10px rgba(0, 210, 255, 0.1);
}

.filter-btn.active i {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

/* Inputs & Form Fields */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.form-select, .form-input, .form-textarea {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
    background-color: rgba(15, 23, 42, 0.8);
}

.form-select option {
    background-color: var(--bg-card);
    color: #fff;
}

/* Details Panel */
.details-panel {
    background: rgba(11, 17, 30, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.details-header {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 14px;
}

.details-row:last-child {
    border-bottom: none;
}

.details-label {
    color: var(--text-muted);
}

.details-value {
    font-weight: 700;
    color: var(--primary);
}

.btn-primary-neon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #000;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    box-shadow: var(--neon-shadow);
}

.btn-primary-neon:hover {
    box-shadow: var(--neon-shadow-strong);
    transform: translateY(-2px);
}

/* Table Style */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.neon-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.neon-table th {
    padding: 16px 20px;
    background: rgba(0, 210, 255, 0.03);
    border-bottom: 2px solid rgba(0, 210, 255, 0.1);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.neon-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #cbd5e1;
    font-size: 14px;
}

.neon-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: #fff;
}

.badge-neon {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.badge-neon-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-neon-pending {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.badge-neon-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }
    body.body-rtl .sidebar, [dir="rtl"] .sidebar {
        transform: translateX(100%);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
        padding: 20px;
    }
    body.body-rtl .main-content, [dir="rtl"] .main-content {
        margin-right: 0;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
    .social-filters {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* RTL Global Support - دعم كامل للغة العربية والاتجاه من اليمين إلى اليسار */
body.body-rtl, [dir="rtl"] {
    text-align: right;
}

body.body-rtl .main-content, [dir="rtl"] .main-content {
    margin-left: 0 !important;
    margin-right: var(--sidebar-width) !important;
}

body.body-rtl .sidebar, [dir="rtl"] .sidebar {
    right: 0 !important;
    left: auto !important;
    border-right: none !important;
    border-left: 1px solid var(--border) !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5) !important;
}

body.body-rtl .neon-table, [dir="rtl"] .neon-table {
    text-align: right;
}
/* تنسيق قائمة اختيار الخدمات المنسدلة التفاعلية (Select2 / Dropdown) */
.select2-container--default .select2-selection--single,
.bootstrap-select .dropdown-toggle,
.form-select {
    background-color: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    color: #fff !important;
    height: 48px !important;
    padding: 10px 16px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

/* حالة التركيز والنيون */
.select2-container--default.select2-container--open .select2-selection--single,
.bootstrap-select .dropdown-toggle:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2) !important;
}

/* ستايل الخيارات داخل القائمة المنسدلة */
.select2-dropdown,
.bootstrap-select .dropdown-menu {
    background-color: #0b111e !important;
    border: 1px solid var(--primary-glow) !important;
    border-radius: 12px !important;
    box-shadow: var(--card-glow) !important;
    overflow: hidden !important;
}

.select2-results__option,
.bootstrap-select .dropdown-item {
    padding: 12px 16px !important;
    color: #cbd5e1 !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255,255,255,0.02) !important;
    transition: all 0.15s ease !important;
}

/* تنسيق الكبسولة الرمادية بجانب الخدمة في القائمة المنسدلة */
.select2-results__option .badge,
.bootstrap-select .dropdown-item .badge,
.select2-selection__rendered .badge {
    background-color: #1e293b !important;
    color: var(--primary) !important;
    border: 1px solid rgba(0, 210, 255, 0.1) !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    margin-left: 8px !important;
    float: right !important;
}

/* عند تمرير الماوس على الخيار */
.select2-results__option--highlighted[aria-selected],
.bootstrap-select .dropdown-item:hover {
    background-color: rgba(0, 210, 255, 0.1) !important;
    color: #fff !important;
}

/* إصلاح التوافقية للشاشات الصغيرة */
@media (max-width: 768px) {
    .main-content {
        padding: 15px !important;
    }
    .stats-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .stat-card {
        padding: 15px !important;
        gap: 10px !important;
    }
    .stat-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
    .stat-details .value {
        font-size: 16px !important;
    }
}
/* ==========================================================================
   تنسيقات صفحة تسجيل الدخول الفاخرة المقسمة لنصفين (Split Auth Screen)
   ========================================================================== */

.auth-nav {
    background: rgba(7, 11, 19, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
}

.auth-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo-neon-text {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-nav-links {
    display: flex;
    gap: 24px;
}

.nav-link-item {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-link-item:hover, .nav-link-item.active {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

.btn-signup-neon {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--neon-shadow);
}

.btn-signup-neon:hover {
    background: var(--primary);
    color: #000;
    box-shadow: var(--neon-shadow-strong);
}

/* تخطيط النصفين */
.auth-wrapper {
    margin-top: 100px;
    padding: 40px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - 170px);
    display: flex;
    align-items: center;
}

.auth-row {
    display: flex;
    width: 100%;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.auth-info-column {
    flex: 1.2;
    min-width: 320px;
    text-align: right;
}

.auth-form-column {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.badge-best-server {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.main-glow-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
}

.brand-highlight {
    display: block;
    font-size: 56px;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
    margin-top: 10px;
}

.brand-description {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.quick-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-stat-badge {
    background: rgba(11, 17, 30, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-badge-icon {
    font-size: 20px;
    color: var(--primary);
}

.stat-badge-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
}

/* نموذج تسجيل الدخول النيون */
.auth-neon-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: 24px;
    padding: 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 35px rgba(0, 210, 255, 0.1);
    position: relative;
}

.card-header-icon {
    text-align: center;
    margin-bottom: 25px;
}

.shield-neon-icon {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    box-shadow: var(--neon-shadow);
}

.auth-neon-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px;
}

.auth-neon-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.form-group-neon {
    margin-bottom: 20px;
}

.neon-input-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.neon-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.neon-input-wrapper .input-icon {
    position: absolute;
    right: 15px;
    color: var(--text-muted);
    font-size: 16px;
}

.neon-field-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 45px 12px 20px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.neon-field-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.2);
}

.toggle-pass-icon {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
}

.link-forgot-pass {
    color: var(--primary);
    font-size: 12px;
    text-decoration: none;
}

.form-options-row {
    margin-bottom: 20px;
}

.remember-checkbox-label {
    font-size: 13px;
    color: #cbd5e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-neon-lg {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 14px;
    width: 100%;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--neon-shadow);
}

.btn-primary-neon-lg:hover {
    box-shadow: var(--neon-shadow-strong);
    transform: translateY(-1px);
}

.social-or-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin: 20px 0;
    position: relative;
}

.social-or-divider::before, .social-or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

.social-or-divider::before { right: 0; }
.social-or-divider::after { left: 0; }

/* زر جوجل المطابق */
.btn-google-custom-style {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #1f2937;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.btn-google-custom-style:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.g-logo-svg {
    width: 18px;
    height: 18px;
}

.card-footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: var(--text-muted);
}

.card-footer-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* شريط الشبكات السفلي */
.social-scroller-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    overflow-x: auto;
    white-space: nowrap;
}

.social-capsule {
    background: rgba(11, 17, 30, 0.4);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
}

@media (max-width: 991px) {
    .auth-row {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .auth-info-column {
        text-align: center;
    }
    .brand-description {
        margin-left: auto;
        margin-right: auto;
    }
    .quick-stats-row {
        justify-content: center;
    }
.select2-container--default .select2-results__option,
.select2-container--default .select2-results__option > a,
.select2-container--default .select2-results__option *,
.select2-results__option,
.select2-results__option a,
.select2-results__option span,
.select2-results__option div {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
