        :root {
            --primary:      #5f0999;
            --primary-dark: #841dd8;
            --accent:       #f59e0b;
            --dark:         #139b6d;
            --light:        #f8fafc;
            --glass:        rgba(182, 162, 162, 0.38);
            --glass-border: rgba(255, 255, 255, 0.15);
            --shadow-color: rgba(245, 231, 156, 0.5);
            --text-light:   #e2e8f0;
            --text-muted:   #94a3b8;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, sans-serif;
            background: var(--light);
            overflow-x: hidden;
        }

        /* ─── هدر ───────────────────────────────── */
        .site-header {
            position: fixed;
            top: 0; right: 0; left: 0;
            z-index: 1000;  /* این خط خالی بود - اصلاح شد */
            padding: 4px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background:rgba(8, 116, 44, 0.97);
            box-shadow: 0 4px 30px rgba(43, 216, 109, 0.7), 0 1px 0 var(--glass-border);
        }


        .site-header.scrolled {
            padding: 10px 0;
            background: rgb(22, 3, 22);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 1px 0 var(--glass-border);
        }

        .site-header::after {
            content: '';
            position: absolute;
            bottom: 0; right: 0; left: 0;
            height: 2px;
            background: linear-gradient(90deg,transparent, var(--primary), var(--accent), var(--primary), transparent);
                
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .site-header.scrolled::after { opacity: 1; }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px; /* این فاصله داخلی هدر را تنظیم می‌کند */
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        /* ─── برندینگ ────────────────────────────── */
        .site-branding {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
            padding: 0; /* حذف padding اضافی */
            margin: 0; /* حذف margin اضافی */
        }

        .site-branding img {
            height: 40px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(37,99,235,0.4));
            transition: transform 0.3s ease;
            border-radius: 10px;
            padding: 0 !important; /* حذف کامل padding */
            margin: 0 !important; /* حذف کامل margin */
            display: block; /* جلوگیری از فضای خالی زیر تصویر */
        }

        .site-branding:hover img { transform: scale(1.05); }

        .brand-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            box-shadow: 0 4px 15px var(--shadow-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;

        }

        .site-branding:hover .brand-icon {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 6px 20px var(--shadow-color);
        }

        .brand-name {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name span:first-child {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
        }

        .brand-name span:last-child {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ─── منوی دسکتاپ ───────────────────────── */
        .primary-nav {
            display: flex;
            align-items: center;
        }

        .primary-nav > ul {
            list-style: none;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 4px;
            margin: 0;
            padding: 0;
        }

        .primary-nav > ul > li { position: relative; }

        .primary-nav > ul > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 9px 16px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 500;
            border-radius: 10px;
            transition: all 0.25s ease;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .primary-nav > ul > li > a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.25s ease;
        }

        .primary-nav > ul > li > a:hover::before,
        .primary-nav > ul > li.current-menu-item > a::before,
        .primary-nav > ul > li.current_page_item > a::before {
            opacity: 1;
            transform: scale(1);
        }

        .primary-nav > ul > li > a:hover,
        .primary-nav > ul > li.current-menu-item > a,
        .primary-nav > ul > li.current_page_item > a { color: #fff; }

        .primary-nav > ul > li > a i:not(.arrow-icon) { font-size: 0.8rem; opacity: 0.7; }
        .primary-nav .arrow-icon { font-size: 0.7rem; transition: transform 0.3s ease; margin-right: 2px; }
        .primary-nav > ul > li.menu-item-has-children:hover > a .arrow-icon { transform: rotate(180deg); }

        /* ─── زیرمنو ──────────────────────── */
        .primary-nav .sub-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            min-width: 220px;
            background:  rgba(8, 116, 44, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px) scale(0.97);
            transform-origin: top right;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
        }

        .primary-nav .sub-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 20px;
            width: 12px;
            height: 12px;
            background:rgba(8, 116, 44, 0.97);
            border-right: 1px solid var(--glass-border);
            border-top: 1px solid var(--glass-border);
            transform: rotate(-45deg);
            border-radius: 2px;
        }

        .primary-nav > ul > li:hover > .sub-menu {
            opacity: 1; visibility: visible; transform: translateY(0) scale(1);
        }

        .primary-nav .sub-menu li { display: block; width: 100%; }

        .primary-nav .sub-menu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            width: 100%;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.88rem;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .primary-nav .sub-menu li a i { width: 18px; text-align: center; color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }
        .primary-nav .sub-menu li a:hover { background: var(--glass); color: #fff; padding-right: 18px; }
        .primary-nav .sub-menu li a:hover i { color: var(--accent); }

        /* ─── دکمه‌های هدر ───────────────────────── */
       .header-actions {  display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

        .btn-search {
            width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--glass-border); background: var(--glass);
            color: var(--text-light); display: flex; align-items: center; justify-content: center; cursor: pointer;
            transition: all 0.25s ease; font-size: 0.9rem; text-decoration: none;
        }

        .btn-search:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }

        .btn-cta, .mobile-cta {
            display: flex; align-items: center; gap: 2px; padding: 3px 5px;
           
            color: #fff; text-decoration: none; border-radius: 10px; font-size: 0.88rem; font-weight: 600;
            transition: all 0.3s ease; box-shadow: 0 4px 15px var(--shadow-color); white-space: nowrap; position: relative; overflow: hidden;
        }

        .btn-cta::before {
            content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%;
            background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
            transform: translateX(100%); transition: transform 0.6s ease;
        }

        .btn-cta:hover::before  { transform: translateX(-100%); }
        .btn-cta:hover, .mobile-cta:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); box-shadow: 0 6px 25px var(--shadow-color); transform: translateY(-2px); }

        /* === استایل پروفایل کاربر === */
        .user-profile-btn {
            padding: 5px 15px 5px 5px !important; /* پدینگ نامتقارن برای جا دادن آواتار در سمت چپ */
        }
        .user-profile-btn img.avatar {
            width: 40px; height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.4);
            margin-right: 5px; /* فاصله نام تا عکس */
        }
        .mobile-cta.user-profile-btn {
            padding: 3px 20px 3px 8px !important;
            justify-content: center;
        }
        .mobile-cta.user-profile-btn img.avatar {
            width: 45px; height: 45px;
        }

        /* ─── همبرگر ─────────────────────────────── */
        .hamburger { display: none; flex-direction: column; justify-content: space-between; width: 36px; height: 26px; cursor: pointer; background: transparent; border: none; z-index: 1001; }
        .hamburger span { display: block; height: 2.5px; background: #fff; border-radius: 3px; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); transform-origin: center; }
        .hamburger.is-active span:nth-child(1) { transform: translateY(11.75px) rotate(45deg); }
        .hamburger.is-active span:nth-child(2)  { opacity: 0; transform: scaleX(0); }
        .hamburger.is-active span:nth-child(3) { transform: translateY(-11.75px) rotate(-45deg); }

        /* ─── منوی موبایل ────────────────────────── */
        /* ─── منوی موبایل (Bottom Sheet) ────────────────────────── */
        .mobile-nav-overlay { 
            position: fixed; 
            inset: 0; 
            background: rgba(255, 252, 247, 0.49); 
            backdrop-filter: blur(4px); 
            z-index: 10001; 
            opacity: 0; 
            visibility: hidden; 
            transition: all 0.3s ease; 
        }

        .mobile-nav-overlay.is-open { 
            opacity: 1; 
            visibility: visible; 
        }

        .mobile-nav { 
            position: fixed; 
            bottom: -100%; /* شروع از پایین */
            left: 0;
            right: 0;
            width: 100%; /* تمام عرض */
            max-height: 70vh; /* حداکثر ارتفاع */
            background: #141a19;
            z-index: 10002; 
            padding: 10px;
            overflow-y: auto; 
            transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
            border-radius: 24px 24px 0 0; /* گوشه‌های بالا گرد */
            border-top: 3px solid var(--glass-border);
            box-shadow: 0 -10px 40px rgba(232, 238, 180, 0.986);

                /* مخفی کردن نوار اسکرول */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE و Edge */
        }
        /* مخفی کردن نوار اسکرول در Chrome, Safari و Opera */
        .mobile-nav::-webkit-scrollbar {
            display: none;
        }
        .mobile-nav.is-open { 
            bottom: 0; /* باز شدن به بالا */
        }

        /* هندل کشیدن (اختیاری) */
        .mobile-nav::before {
            content: '';
            position: sticky;
            top: 0;
            display: block;
            width: 40px;
            height: 4px;
            background: rgba(250, 135, 3, 0.94);
            border-radius: 2px;
            margin: 12px auto 0;
        }

        /* ─── هدر منوی موبایل (لوگو + پروفایل) ─── */
        .mobile-nav-header {
            position: sticky;
            top: 0;
            
            backdrop-filter: blur(10px);
            padding: 20px 20px 16px;
            border-bottom: 1px solid var(--glass-border);
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* لوگو در منوی موبایل */
        .mobile-nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            justify-content: center;
        }

        .mobile-nav-logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
            border-radius: 10px;
            filter: drop-shadow(0 2px 8px rgba(37,99,235,0.4));
        }

        .mobile-nav-logo .brand-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
        }

        .mobile-nav-logo .brand-name {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .mobile-nav-logo .brand-name span:first-child {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }

        .mobile-nav-logo .brand-name span:last-child {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* دکمه پروفایل در هدر منوی موبایل */
        .mobile-nav-header .mobile-cta {
            margin: 0;
            width: 100%;
        }

        /* ─── لیست منوها ─── */
        .mobile-nav-content {
            padding: 20px 20px 30px;
        }

        .mobile-nav-content > ul { 
            list-style: none; 
            display: flex; 
            flex-direction: column; 
            gap: 4px; 
            margin: 0; 
            padding: 0; 
            border: 1px solid transparent; 
        }

        .mobile-nav li { 
            display: block; 
            width: 100%;
             border: 1px solid transparent;  
        }

        .mobile-nav a { 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            padding: 13px 16px; 
            width: 100%; 
            color: var(--text-light); 
            text-decoration: none; 
            border-radius: 12px; 
            font-size: 0.95rem; 
            font-weight: 500; 
            transition: all 0.2s ease; 
            border-bottom: 1px solid rgb(255, 145, 0); 
        }

        .mobile-nav a:hover { 
            background: var(--glass); 
            border-color: var(--glass-border); 
            color: #fff; 
        }

        .mobile-nav a i:not(.mobile-arrow) { 
            width: 22px; 
            text-align: center; 
            color: yellow; 
            font-size: 0.9rem; 
        }

        .mobile-sub-toggle .mobile-arrow { 
            margin-right: auto; 
            margin-left: 0; 
            transition: transform 0.3s ease; 
            font-size: 0.75rem; 
            color: rgba(250, 135, 3, 0.94); 
        }

        .mobile-sub-toggle.open .mobile-arrow { 
            transform: rotate(180deg); 
        }

        .mobile-sub-menu { 
            list-style: none; 
            display: none; 
            flex-direction: column; 
            padding: 4px 0 4px 12px; 
            margin: 0; 
        }

        .mobile-sub-menu.open { 
            display: flex; 
        }

        .mobile-sub-menu li { 
            display: block; 
            width: 100%; 
        }

        .mobile-sub-menu a { 
            padding: 10px 16px; 
            font-size: 0.88rem; 
            color: var(--text-muted); 
        }

        .mobile-sub-menu a:hover { 
            color: #fff; 
        }

        /* ─── رفع تداخل Admin Bar ─────────────────────── */
        body.admin-bar .mobile-nav-overlay { 
            top: 32px; 
        }

        @media (max-width: 782px) {
            body.admin-bar .mobile-nav-overlay { 
                top: 46px; 
            }
        }


        /* ─── حالت پیش‌فرض: منو بسته است ─── */
        .mobile-nav-overlay {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;  /* جلوگیری از کلیک روی overlay */
        }

        .mobile-nav {
            bottom: -100%;  /* پنهان در پایین */
            visibility: hidden;
        }

        /* ─── حالت باز: منو نمایان است ─── */
        .mobile-nav-overlay.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;  /* فعال کردن کلیک */
        }

        .mobile-nav.is-open {
            bottom: 0;
            visibility: visible;
        }






        /* ─── ریسپانسیو ──────────────────────────── */
        @media (max-width: 1024px) { .primary-nav { display: none; } .header-actions .btn-cta { display: none; } .hamburger { display: flex; } }
       
        

        /* ─── رفع تداخل Admin Bar ─────────────────────── */
        body.admin-bar .site-header { top: 32px; }
        body.admin-bar .mobile-nav { top: 32px; height: calc(100dvh - 32px); }
        body.admin-bar .mobile-nav-overlay { top: 32px; }
        body.admin-bar .header-spacer { height: 112px; }
        @media (max-width: 782px) {
            body.admin-bar .site-header { top: 46px; }
            body.admin-bar .mobile-nav { top: 46px; height: calc(100dvh - 46px); }
            body.admin-bar .mobile-nav-overlay { top: 46px; }
            body.admin-bar .header-spacer { height: 126px; }
        }


                /* ===== اصلاح z-index برای رویت منوی موبایل روی هدر ===== */
        .site-header {
            z-index: 1000;  /* مقدار کمتر از منوی موبایل */
        }

        .mobile-nav-overlay {
            z-index: 10001;  /* همپوشانی روی همه چیز */
        }

        .mobile-nav {
            z-index: 10002;  /* بالاترین لایه - منو روی هدر قرار می‌گیرد */
        }


        /* بج اعلان دسکتاپ */
        .btn-notification {
            position: relative;
        }
        .notif-badge-desktop {
            position: absolute;
            top: -6px;
            right: -6px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            min-width: 18px;
            height: 18px;
            font-size: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
            font-family: sans-serif;
        }

        /* ─── دکمه درخواست کد شارژ ───────────────────────── */
        /* ─── دکمه درخواست کد شارژ ───────────────────────── */
        .btn-recharge-header {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            background: linear-gradient(135deg, #f59e0b, #f97316);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        /* ===== انیمیشن سایه متحرک ===== */
        .btn-recharge-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
            opacity: 0;
            animation: shadow-slide 3s ease-in-out infinite;
            border-radius: 50%;
            pointer-events: none;
        }

        @keyframes shadow-slide {
            0% {
                opacity: 0;
                transform: translateX(-100%) scale(0.8);
            }
            30% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
            70% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateX(100%) scale(0.8);
            }
        }

        /* ===== لایه سایه دوم برای حرکت مخالف ===== */
        .btn-recharge-header::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
            opacity: 0;
            animation: shadow-slide-reverse 3.5s ease-in-out infinite 0.5s;
            border-radius: 50%;
            pointer-events: none;
        }

        @keyframes shadow-slide-reverse {
            0% {
                opacity: 0;
                transform: translateX(100%) scale(0.8);
            }
            30% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
            70% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateX(-100%) scale(0.8);
            }
        }

        /* ===== هنگام هاور، انیمیشن متوقف شود ===== */
        .btn-recharge-header:hover::before,
        .btn-recharge-header:hover::after {
            animation-play-state: paused;
            opacity: 0;
        }

        .btn-recharge-header:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
            border-color: rgba(255,255,255,0.3);
        }

        .btn-recharge-header .recharge-label {
            display: none;
            font-size: 0.75rem;
            margin-right: 4px;
            position: relative;
            z-index: 1;
        }

        .btn-recharge-header i {
            position: relative;
            z-index: 1;
        }

        /* نمایش برچسب در دسکتاپ */
        @media (min-width: 1024px) {
            .btn-recharge-header {
                width: auto;
                padding: 0 16px;
                gap: 6px;
                border-radius: 10px;
            }
            
            .btn-recharge-header .recharge-label {
                display: inline;
            }
        }

        /* ============================================================
        خط زیر آیتم‌های منو (دسکتاپ و موبایل) - اضافه کنید
        ============================================================ */

        /* ─── دسکتاپ: خط زیر منوی اصلی ─── */
        .primary-nav > ul > li > a {
            position: relative;
        }

        .primary-nav > ul > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 2px;
            transition: all 0.3s ease;
            transform: translateX(50%);
        }

        .primary-nav > ul > li > a:hover::after,
        .primary-nav > ul > li.current-menu-item > a::after,
        .primary-nav > ul > li.current_page_item > a::after {
            width: 80%;
        }

        /* ─── دسکتاپ: خط زیر آیتم‌های زیرمنو ─── */
        .primary-nav .sub-menu li a {
            position: relative;
        }

        .primary-nav .sub-menu li a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 14px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .primary-nav .sub-menu li a:hover::after {
            width: calc(100% - 28px);
        }

        /* ─── موبایل: خط زیر آیتم‌های منو ─── */
        .mobile-nav a {
            position: relative;
        }

        .mobile-nav a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            right: 16px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover::after {
            width: calc(100% - 32px);
        }

        /* ─── موبایل: خط زیر آیتم‌های زیرمنو ─── */
        .mobile-sub-menu a {
            position: relative;
        }

        .mobile-sub-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 16px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-sub-menu a:hover::after {
            width: calc(100% - 32px);
        }        

        /* ─── دکمه شارژ در منوی موبایل ───────────────────────── */
        .mobile-nav-content .btn-recharge-mobile {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 16px;
            width: 100%;
            color: var(--text-light);
            text-decoration: none;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
            border-color: rgba(245, 158, 11, 0.3);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        /* انیمیشن سایه برای دکمه موبایل */
        .mobile-nav-content .btn-recharge-mobile::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
            opacity: 0;
            animation: shadow-slide 4s ease-in-out infinite;
            border-radius: 50%;
            pointer-events: none;
        }

        .mobile-nav-content .btn-recharge-mobile::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
            opacity: 0;
            animation: shadow-slide-reverse 4.5s ease-in-out infinite 0.5s;
            border-radius: 50%;
            pointer-events: none;
        }

        .mobile-nav-content .btn-recharge-mobile:hover::before,
        .mobile-nav-content .btn-recharge-mobile:hover::after {
            animation-play-state: paused;
            opacity: 0;
        }

        .mobile-nav-content .btn-recharge-mobile:hover {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(249, 115, 22, 0.3));
            border-color: var(--accent);
            color: #fff;
            transform: translateX(-4px);
        }

        .mobile-nav-content .btn-recharge-mobile i,
        .mobile-nav-content .btn-recharge-mobile span {
            position: relative;
            z-index: 1;
        }
           