   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Vazirmatn', sans-serif;
        }

        body {
   
            color: #fff;
            overflow-x: hidden;
        }

        .header-h {
            background: linear-gradient(135deg, #340c6993 0%, #08041393 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            padding: 0 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-container-h {
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-h {
            border-radius: 14px !important;
            max-width: 45px !important;
            max-height: 45px !important;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo-h:hover {
            transform: scale(1.05);
        }

        .logo-icon-h {
            background: linear-gradient(135deg, #ff000d 0%, #fe5e5e 100%);
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 10px rgba(229, 9, 20, 0.3);
        }


            .logo-text-h {
                font-size: 24px;
                font-weight: 800;
                background: linear-gradient(90deg, #fff 0%, #e2e8f0 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                letter-spacing: -0.5px;
            }
         

        .nav-menu-h {
            margin-right: 100px;
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-item-h {
    
            position: relative;
        }

        .nav-link-h {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link-h:hover {
            color: #fff;
        }

        .nav-link-h::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #e50914 0%, #ff6b6b 100%);
            transition: width 0.3s ease;
        }

        .nav-link-h:hover::after {
            width: 100%;
        }

        .nav-link-h.active-h {
            color: #fff;
        }

        .nav-link-h.active-h::after {
            width: 100%;
        }

        .nav-icon-h {
            font-size: 18px;
            color: #94a3b8;
        }

        .header-actions-h {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-box-h {
            position: relative;
        }

        .search-input-h {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 10px 45px 10px 15px;
            color: #fff;
            width: 220px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .search-input-h:focus {
            outline: none;
            border-color: #e50914;
            background: rgba(30, 41, 59, 0.8);
            width: 280px;
        }

        .search-btn-h {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .search-btn-h:hover {
            color: #e50914;
        }

        .user-profile-h {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 8px 15px;
            border-radius: 30px;
            background: rgba(30, 41, 59, 0.3);
            transition: all 0.3s ease;
        }

        .user-profile-h:hover {
            background: rgba(30, 41, 59, 0.6);
        }

        .user-avatar-h {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #e50914;
        }

        .user-name-h {
            font-size: 14px;
            font-weight: 500;
        }

        /* دکمه منوی موبایل */
        .mobile-menu-btn-h {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .mobile-menu-btn-h:hover {
            transform: scale(1.1);
        }

        .mobile-menu-h {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #340c69ec 0%, #080413ec 100%);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
            z-index: 2000;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 20px;
            overflow-y: auto;
        }

        .mobile-menu-h.active-h {
            right: 0;
        }

        .mobile-menu-header-h {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-logo-h {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-logo-h .logo-icon-h {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .mobile-menu-logo-h .logo-text-h {
            font-size: 20px;
        }

        .close-menu-btn-h {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-menu-btn-h:hover {
            transform: rotate(90deg);
        }

        .mobile-nav-menu-h {
            list-style: none;
        }

        .mobile-nav-item-h {
            margin-bottom: 15px;
        }

        .mobile-nav-link-h {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #cbd5e1;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 15px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav-link-h:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            transform: translateX(5px);
        }

        .mobile-nav-link-h.active-h {
            background: rgba(229, 9, 20, 0.2);
            color: #fff;
        }

        .mobile-nav-icon-h {
            font-size: 20px;
            width: 25px;
            text-align: center;
        }

        .mobile-search-box-h {
            margin-top: 30px;
            position: relative;
        }

        .mobile-search-input-h {
            width: 100%;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 12px 50px 12px 20px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .mobile-search-input-h:focus {
            outline: none;
            border-color: #e50914;
            background: rgba(30, 41, 59, 0.8);
        }

        .mobile-search-btn-h {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .mobile-search-btn-h:hover {
            color: #e50914;
        }

        .mobile-user-profile-h {
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: rgba(30, 41, 59, 0.3);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-user-profile-h:hover {
            background: rgba(30, 41, 59, 0.6);
        }

        .mobile-user-avatar-h {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #e50914;
        }

        .mobile-user-info-h {
            flex: 1;
        }

        .mobile-user-name-h {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .mobile-user-status-h {
            font-size: 14px;
            color: #94a3b8;
        }

       
        @media (max-width: 992px) {
            .nav-menu-h {
                gap: 20px;
            }
            
            .search-input-h {
                width: 180px;
            }
            
            .search-input-h:focus {
                width: 220px;
            }
        }

        @media (max-width: 768px) {
            .header-container-h {
                padding: 12px 0;
            }
            
            .logo-text-h {
                display: none;
            }
            
            .nav-menu-h {
                display: none;
            }
            
            .search-box-h {
                display: none;
            }
            
            .user-name-h {
                display: none;
            }
            
            .mobile-menu-btn-h {
                display: block;
            }
            
            .user-profile-h {
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu-h {
                width: 100%;
                right: -100%;
            }
            
        
        }

